From 8aa044d95dcd09b55b01b16e1a95650778dccf7e Mon Sep 17 00:00:00 2001 From: Dotan Simha Date: Mon, 26 Jan 2026 19:26:00 +0200 Subject: [PATCH 1/8] enable dependabot Updated the dependabot configuration to include npm, docker, cargo, GitHub Actions, and rust-toolchain with daily update schedules. --- .github/dependabot.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..a8adb7084d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,27 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "docker" + directory: "/docker" + schedule: + interval: "daily" + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "rust-toolchain" + directory: "/" + schedule: + interval: "daily" From 50f64e60e0d0e492dc3cb6593bb080f3a4db85aa Mon Sep 17 00:00:00 2001 From: Dotan Simha Date: Mon, 26 Jan 2026 19:30:53 +0200 Subject: [PATCH 2/8] Enhance dependabot.yml with dependency groups Added groups for various dependencies in dependabot configuration. --- .github/dependabot.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a8adb7084d..7a6877c98a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,6 +9,45 @@ updates: directory: "/" schedule: interval: "daily" + groups: + graphiql: + patterns: + - "graphiql" + - "@graphiql/*" + yoga: + patterns: + - "envelop" + - "graphql-yoga" + - "@envelop/*" + - "@graphql-yoga/*" + graphql-armor: + patterns: + - "@escape.tech/graphql-armor-*" + radix: + patterns: + - "@radix-ui/*" + - "@radix/*" + stripe: + patterns: + - "@stripe/" + - "stripe" + urql: + patterns: + - "@urql/" + - "urql" + sentry: + patterns: + - "@sentry/" + - "sentry" + trpc: + patterns: + - "@trpc/" + - "trpc" + supertokens: + patterns: + - "supertokens" + - "@supertokens/*" + - "supertokens-*" - package-ecosystem: "docker" directory: "/docker" schedule: From 53874c6ba1954e7e771f65a9f97eefc3462c73ac Mon Sep 17 00:00:00 2001 From: Dotan Simha Date: Mon, 26 Jan 2026 19:31:14 +0200 Subject: [PATCH 3/8] Delete renovate.json --- renovate.json | 88 --------------------------------------------------- 1 file changed, 88 deletions(-) delete mode 100644 renovate.json diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 84cbde1bc5..0000000000 --- a/renovate.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["github>the-guild-org/shared-config:renovate", ":preserveSemverRanges"], - "prConcurrentLimit": 10, - "dependencyDashboardTitle": "Dependencies Dashboard", - "packageRules": [ - { - "matchPackageNames": ["slonik", "slonik-utilities"], - "enabled": false - }, - { - "groupName": "graphiql", - "matchPackageNames": ["@graphiql/react", "@graphiql/toolkit", "graphiql"] - }, - { - "groupName": "gh-actions/artifact", - "matchPackageNames": ["actions/download-artifact", "actions/upload-artifact"] - }, - { - "groupName": "graphql-armor", - "matchPackageNames": ["@escape.tech/graphql-armor-{/,}**"] - }, - { - "groupName": "Yoga/Envelop", - "matchPackageNames": ["@envelop/{/,}**", "graphql-yoga{/,}**", "@graphql-yoga/{/,}**"] - }, - { - "groupName": "radix", - "recreateWhen": "auto", - "matchPackageNames": ["@radix/{/,}**", "@radix-ui{/,}**"] - }, - { - "groupName": "stripe", - "matchPackageNames": ["@stripe/{/,}**", "stripe{/,}**"] - }, - { - "groupName": "urql", - "recreateWhen": "auto", - "matchPackageNames": ["@urql/{/,}**", "urql{/,}**"] - }, - { - "groupName": "sentry", - "matchPackageNames": ["@sentry/{/,}**", "sentry{/,}**"] - }, - { - "groupName": "trpc", - "matchPackageNames": ["@trpc/{/,}**", "trpc{/,}**"] - }, - { - "groupName": "supertokens", - "matchPackageNames": [ - "supertokens", - "supertokens-node", - "supertokens-react", - "supertokens-auth-react", - "registry.supertokens.io/supertokens/supertokens-postgresql" - ] - }, - { - "groupName": "apollo-router", - "matchSourceUrls": ["(^|/)Cargo\\.toml$"], - "packageFile": "Cargo.toml", - "rangeStrategy": "pin", - "prPriority": 7 - } - ], - "dockerfile": { - "enabled": true, - "fileMatch": [".*?\\.[dD]ockerfile"] - }, - "customManagers": [ - { - "customType": "regex", - "fileMatch": ["deployment/.*?\\.ts$"], - "matchStrings": ["image: (?:'|\")(?.*?):(?.*?)(?:'|\")"], - "datasourceTemplate": "docker", - "versioningTemplate": "docker" - }, - { - "customType": "regex", - "fileMatch": ["deployment/.*?\\.ts$"], - "matchStrings": [ - "helmChart\\((?:'|\")(?.*?)(?:'|\"), (?:'|\")(?.*?)(?:'|\"), (?:'|\")(?.*?)(?:'|\")\\)" - ], - "datasourceTemplate": "helm" - } - ] -} From bf4ca5b1298a7ad4b3edfa1525f350d1b17a4f2b Mon Sep 17 00:00:00 2001 From: Dotan Simha Date: Mon, 26 Jan 2026 19:35:21 +0200 Subject: [PATCH 4/8] fix fix --- .github/dependabot.yml | 77 +++++++++++++++++++++--------------------- 1 file changed, 39 insertions(+), 38 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7a6877c98a..8451ce2c36 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,62 +5,63 @@ version: 2 updates: - - package-ecosystem: "npm" - directory: "/" + - package-ecosystem: 'npm' + directory: '/' + open-pull-requests-limit: 10 schedule: - interval: "daily" + interval: 'daily' groups: - graphiql: + graphiql: patterns: - - "graphiql" - - "@graphiql/*" - yoga: + - 'graphiql' + - '@graphiql/*' + yoga: patterns: - - "envelop" - - "graphql-yoga" - - "@envelop/*" - - "@graphql-yoga/*" - graphql-armor: + - 'envelop' + - 'graphql-yoga' + - '@envelop/*' + - '@graphql-yoga/*' + graphql_armor: patterns: - - "@escape.tech/graphql-armor-*" + - '@escape.tech/graphql-armor-*' radix: patterns: - - "@radix-ui/*" - - "@radix/*" + - '@radix-ui/*' + - '@radix/*' stripe: patterns: - - "@stripe/" - - "stripe" + - '@stripe/' + - 'stripe' urql: patterns: - - "@urql/" - - "urql" + - '@urql/' + - 'urql' sentry: patterns: - - "@sentry/" - - "sentry" + - '@sentry/' + - 'sentry' trpc: patterns: - - "@trpc/" - - "trpc" + - '@trpc/' + - 'trpc' supertokens: patterns: - - "supertokens" - - "@supertokens/*" - - "supertokens-*" - - package-ecosystem: "docker" - directory: "/docker" + - 'supertokens' + - '@supertokens/*' + - 'supertokens-*' + - package-ecosystem: 'docker' + directory: '/docker' schedule: - interval: "daily" - - package-ecosystem: "cargo" - directory: "/" + interval: 'daily' + - package-ecosystem: 'cargo' + directory: '/' schedule: - interval: "daily" - - package-ecosystem: "github-actions" - directory: "/" + interval: 'daily' + - package-ecosystem: 'github-actions' + directory: '/' schedule: - interval: "daily" - - package-ecosystem: "rust-toolchain" - directory: "/" + interval: 'daily' + - package-ecosystem: 'rust-toolchain' + directory: '/' schedule: - interval: "daily" + interval: 'daily' From e9cc7e398ce90fec8cfdb7cbd397e232f135af84 Mon Sep 17 00:00:00 2001 From: Dotan Simha Date: Mon, 26 Jan 2026 19:37:33 +0200 Subject: [PATCH 5/8] limit daily prs to 1 --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8451ce2c36..0e22912f4a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,7 +7,7 @@ version: 2 updates: - package-ecosystem: 'npm' directory: '/' - open-pull-requests-limit: 10 + open-pull-requests-limit: 1 schedule: interval: 'daily' groups: From a58f0ae38915b32172b1c6b0ad592bc7987935bf Mon Sep 17 00:00:00 2001 From: Laurin Quast Date: Tue, 27 Jan 2026 08:20:32 +0100 Subject: [PATCH 6/8] Apply suggestion from @n1ru4l --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0e22912f4a..ede3167695 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -49,6 +49,18 @@ updates: - 'supertokens' - '@supertokens/*' - 'supertokens-*' + graphql-codegen: + patterns: + - "@graphql-codegen/*" + the-guild: + patterns: + - "@theguild/*" + changesets: + patterns: + - "@changesets/*" + graphql-inspector: + patterns: + - "@graphql-inspector/*" - package-ecosystem: 'docker' directory: '/docker' schedule: From 1a7756abd5518d945cc7a600167af761a97f5400 Mon Sep 17 00:00:00 2001 From: Laurin Quast Date: Tue, 27 Jan 2026 08:21:26 +0100 Subject: [PATCH 7/8] Apply suggestion from @n1ru4l --- .github/dependabot.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ede3167695..3b3d780686 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -49,18 +49,18 @@ updates: - 'supertokens' - '@supertokens/*' - 'supertokens-*' - graphql-codegen: - patterns: - - "@graphql-codegen/*" - the-guild: - patterns: - - "@theguild/*" - changesets: - patterns: - - "@changesets/*" - graphql-inspector: - patterns: - - "@graphql-inspector/*" + graphql-codegen: + patterns: + - "@graphql-codegen/*" + the-guild: + patterns: + - "@theguild/*" + changesets: + patterns: + - "@changesets/*" + graphql-inspector: + patterns: + - "@graphql-inspector/*" - package-ecosystem: 'docker' directory: '/docker' schedule: From c941d923df4a02cd0ff392c828b3d0375c04c525 Mon Sep 17 00:00:00 2001 From: Laurin Quast Date: Tue, 27 Jan 2026 08:22:48 +0100 Subject: [PATCH 8/8] lol --- .github/dependabot.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3b3d780686..31442bbfad 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -49,18 +49,18 @@ updates: - 'supertokens' - '@supertokens/*' - 'supertokens-*' - graphql-codegen: - patterns: - - "@graphql-codegen/*" - the-guild: - patterns: - - "@theguild/*" - changesets: - patterns: - - "@changesets/*" - graphql-inspector: - patterns: - - "@graphql-inspector/*" + graphql-codegen: + patterns: + - '@graphql-codegen/*' + the-guild: + patterns: + - '@theguild/*' + changesets: + patterns: + - '@changesets/*' + graphql-inspector: + patterns: + - '@graphql-inspector/*' - package-ecosystem: 'docker' directory: '/docker' schedule: