From 51a65021e3958a33e7bdb35ae1b03032f553432e Mon Sep 17 00:00:00 2001 From: Yeikel Santana Date: Wed, 16 Jul 2025 09:32:57 -0400 Subject: [PATCH 1/8] Update dependabot.yml --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c11f1d976..0de94a267 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -20,6 +20,20 @@ updates: update-types: - "patch" - "minor" + confluent-minor-patch-dependencies: + patterns: + - "io.confluent:*" + - "org.apache.kafka:*" + # We will handle major upgrades manually + update-types: + - "patch" + - "minor" + confluent-major-dependencies: + patterns: + - "io.confluent:*" + - "org.apache.kafka:*" + update-types: + - "major" other-dependencies: patterns: - "*" From c530f5f516b84eefe53c4e8d2189cb59b4ce0b19 Mon Sep 17 00:00:00 2001 From: Yeikel Santana Date: Wed, 16 Jul 2025 09:34:38 -0400 Subject: [PATCH 2/8] Update dependabot.yml --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0de94a267..23b1c3bbb 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -33,7 +33,7 @@ updates: - "io.confluent:*" - "org.apache.kafka:*" update-types: - - "major" + - "major" other-dependencies: patterns: - "*" From dd8f44c8145b9ec70a503b94df01b144eee75c84 Mon Sep 17 00:00:00 2001 From: Yeikel Santana Date: Wed, 16 Jul 2025 09:35:03 -0400 Subject: [PATCH 3/8] Update dependabot.yml --- .github/dependabot.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 23b1c3bbb..954474dd4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -28,12 +28,6 @@ updates: update-types: - "patch" - "minor" - confluent-major-dependencies: - patterns: - - "io.confluent:*" - - "org.apache.kafka:*" - update-types: - - "major" other-dependencies: patterns: - "*" From b3f7c21e01dc78f374bfc2aeb95cd9322daf8fab Mon Sep 17 00:00:00 2001 From: Yeikel Santana Date: Wed, 16 Jul 2025 09:36:49 -0400 Subject: [PATCH 4/8] Update dependabot.yml --- .github/dependabot.yml | 153 +++++++++++++++++++++-------------------- 1 file changed, 79 insertions(+), 74 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 954474dd4..fa0caaf94 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,80 +1,85 @@ version: 2 updates: -- package-ecosystem: gradle - directory: "/" - schedule: - interval: weekly - time: "10:00" - timezone: Europe/London - open-pull-requests-limit: 10 - labels: - - "type/dependencies" - - "scope/backend" - groups: - spring-boot-dependencies: - patterns: - - "org.springframework.boot:*" - - "io.spring.dependency-management" - # We will handle major upgrades manually - update-types: - - "patch" - - "minor" - confluent-minor-patch-dependencies: - patterns: - - "io.confluent:*" - - "org.apache.kafka:*" - # We will handle major upgrades manually - update-types: - - "patch" - - "minor" - other-dependencies: - patterns: - - "*" - update-types: - - "patch" - - "minor" + - package-ecosystem: gradle + directory: "/" + schedule: + interval: weekly + time: "10:00" + timezone: Europe/London + open-pull-requests-limit: 10 + labels: + - "type/dependencies" + - "scope/backend" + groups: + spring-boot-dependencies: + patterns: + - "org.springframework.boot:*" + - "io.spring.dependency-management" + # We will handle major upgrades manually + update-types: + - "patch" + - "minor" + confluent-minor-patch-dependencies: + patterns: + - "io.confluent:*" + - "org.apache.kafka:*" + update-types: + - "patch" + - "minor" + confluent-major-upgrades: + patterns: + - "io.confluent:*" + - "org.apache.kafka:*" + update-types: + - "major" + other-dependencies: + patterns: + - "*" + update-types: + - "patch" + - "minor" -- package-ecosystem: docker - directory: "/api" - schedule: - interval: weekly - time: "10:00" - timezone: Europe/London - open-pull-requests-limit: 10 - ignore: - - dependency-name: "azul/zulu-openjdk-alpine" - update-types: ["version-update:semver-major"] - labels: - - "type/dependencies" - - "scope/backend" + - package-ecosystem: docker + directory: "/api" + schedule: + interval: weekly + time: "10:00" + timezone: Europe/London + open-pull-requests-limit: 10 + ignore: + - dependency-name: "azul/zulu-openjdk-alpine" + update-types: ["version-update:semver-major"] + labels: + - "type/dependencies" + - "scope/backend" -- package-ecosystem: npm - directory: "/frontend" - schedule: - interval: weekly - time: "10:00" - timezone: Europe/London - open-pull-requests-limit: 10 - versioning-strategy: increase-if-necessary - labels: - - "type/dependencies" - - "scope/frontend" - groups: - pnpm-dependencies: - patterns: - - "*" - update-types: - - "patch" - - "minor" + - package-ecosystem: npm + directory: "/frontend" + schedule: + interval: weekly + time: "10:00" + timezone: Europe/London + open-pull-requests-limit: 10 + versioning-strategy: increase-if-necessary + labels: + - "type/dependencies" + - "scope/frontend" + groups: + pnpm-dependencies: + patterns: + - "*" + update-types: + - "patch" + - "minor" -- package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: weekly - time: "10:00" - timezone: Europe/London - open-pull-requests-limit: 10 - labels: - - "type/dependencies" - - "scope/infra" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: weekly + time: "10:00" + timezone: Europe/London + open-pull-requests-limit: 10 + labels: + - "type/dependencies" + - "scope/infra" From 37fe93760448737bf970955d2b6a27462023a892 Mon Sep 17 00:00:00 2001 From: Yeikel Santana Date: Wed, 16 Jul 2025 19:53:00 -0400 Subject: [PATCH 5/8] Update dependabot.yml --- .github/dependabot.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fa0caaf94..c66aaccd6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -27,12 +27,6 @@ updates: update-types: - "patch" - "minor" - confluent-major-upgrades: - patterns: - - "io.confluent:*" - - "org.apache.kafka:*" - update-types: - - "major" other-dependencies: patterns: - "*" From bbd6b051013edf0e30cace5a6eb1e5e3c5f42411 Mon Sep 17 00:00:00 2001 From: Yeikel Santana Date: Mon, 21 Jul 2025 08:42:41 -0400 Subject: [PATCH 6/8] Update dependabot.yml --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c66aaccd6..cbe2f6c83 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -27,6 +27,12 @@ updates: update-types: - "patch" - "minor" + confluent-major-upgrade: + patterns: + - "io.confluent:*" + - "org.apache.kafka:*" + update-types: + - "major" other-dependencies: patterns: - "*" From 184e4da8dd6facf9a3ae6e5b19cc2caf8a30ae0b Mon Sep 17 00:00:00 2001 From: Yeikel Santana Date: Mon, 21 Jul 2025 08:44:25 -0400 Subject: [PATCH 7/8] Update dependabot.yml --- .github/dependabot.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cbe2f6c83..6c651bfb5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,5 @@ version: 2 updates: - - package-ecosystem: gradle directory: "/" schedule: @@ -27,19 +26,18 @@ updates: update-types: - "patch" - "minor" - confluent-major-upgrade: + confluent-major-upgrade: patterns: - "io.confluent:*" - "org.apache.kafka:*" update-types: - - "major" + - "major" other-dependencies: patterns: - "*" update-types: - "patch" - "minor" - - package-ecosystem: docker directory: "/api" schedule: From b29208020b9c4aba62e080b7f63b727d2f3e40e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 15:20:36 +0000 Subject: [PATCH 8/8] Bump react-router-dom from 6.23.0 to 7.8.1 in /frontend Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.23.0 to 7.8.1. - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.8.1/packages/react-router-dom) --- updated-dependencies: - dependency-name: react-router-dom dependency-version: 7.8.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- frontend/package.json | 2 +- frontend/pnpm-lock.yaml | 55 ++++++++++++++++++++++++----------------- 2 files changed, 34 insertions(+), 23 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index b150467db..2a18c888e 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -29,7 +29,7 @@ "react-hot-toast": "2.4.1", "react-is": "18.2.0", "react-multi-select-component": "4.3.4", - "react-router-dom": "6.23.0", + "react-router-dom": "7.8.1", "sass": "1.66.1", "styled-components": "6.1.8", "use-debounce": "10.0.0", diff --git a/frontend/pnpm-lock.yaml b/frontend/pnpm-lock.yaml index c9f16ad2a..5526976cb 100644 --- a/frontend/pnpm-lock.yaml +++ b/frontend/pnpm-lock.yaml @@ -97,8 +97,8 @@ importers: specifier: 4.3.4 version: 4.3.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react-router-dom: - specifier: 6.23.0 - version: 6.23.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 7.8.1 + version: 7.8.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) sass: specifier: 1.66.1 version: 1.66.1 @@ -925,10 +925,6 @@ packages: resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - '@remix-run/router@1.16.0': - resolution: {integrity: sha512-Quz1KOffeEf/zwkCBM3kBtH4ZoZ+pT3xIXBG4PPW/XFtDP7EGhtTiC2+gpL9GnR7+Qdet5Oa6cYSvwKYg6kN9Q==} - engines: {node: '>=14.0.0'} - '@rollup/rollup-android-arm-eabi@4.37.0': resolution: {integrity: sha512-l7StVw6WAa8l3vA1ov80jyetOAEo1FtHvZDbzXDO/02Sq/QVvqlHkYoFwDJPIMj0GKiistsBudfx5tGFnwYWDQ==} cpu: [arm] @@ -1813,6 +1809,10 @@ packages: convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + cookie@1.0.2: + resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==} + engines: {node: '>=18'} + copy-anything@3.0.5: resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==} engines: {node: '>=12.13'} @@ -3519,18 +3519,22 @@ packages: react: ^16 || ^17 || ^18 react-dom: ^16 || ^17 || ^18 - react-router-dom@6.23.0: - resolution: {integrity: sha512-Q9YaSYvubwgbal2c9DJKfx6hTNoBp3iJDsl+Duva/DwxoJH+OTXkxGpql4iUK2sla/8z4RpjAm6EWx1qUDuopQ==} - engines: {node: '>=14.0.0'} + react-router-dom@7.8.1: + resolution: {integrity: sha512-NkgBCF3sVgCiAWIlSt89GR2PLaksMpoo3HDCorpRfnCEfdtRPLiuTf+CNXvqZMI5SJLZCLpVCvcZrTdtGW64xQ==} + engines: {node: '>=20.0.0'} peerDependencies: - react: '>=16.8' - react-dom: '>=16.8' + react: '>=18' + react-dom: '>=18' - react-router@6.23.0: - resolution: {integrity: sha512-wPMZ8S2TuPadH0sF5irFGjkNLIcRvOSaEe7v+JER8508dyJumm6XZB1u5kztlX0RVq6AzRVndzqcUh6sFIauzA==} - engines: {node: '>=14.0.0'} + react-router@7.8.1: + resolution: {integrity: sha512-5cy/M8DHcG51/KUIka1nfZ2QeylS4PJRs6TT8I4PF5axVsI5JUxp0hC0NZ/AEEj8Vw7xsEoD7L/6FY+zoYaOGA==} + engines: {node: '>=20.0.0'} peerDependencies: - react: '>=16.8' + react: '>=18' + react-dom: '>=18' + peerDependenciesMeta: + react-dom: + optional: true react-transition-state@1.1.5: resolution: {integrity: sha512-ITY2mZqc2dWG2eitJkYNdcSFW8aKeOlkL2A/vowRrLL8GH3J6Re/SpD/BLvQzrVOTqjsP0b5S9N10vgNNzwMUQ==} @@ -3704,6 +3708,9 @@ packages: engines: {node: '>=10'} hasBin: true + set-cookie-parser@2.7.1: + resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==} + set-function-length@1.2.2: resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} engines: {node: '>= 0.4'} @@ -5122,8 +5129,6 @@ snapshots: '@pkgr/core@0.1.1': {} - '@remix-run/router@1.16.0': {} - '@rollup/rollup-android-arm-eabi@4.37.0': optional: true @@ -6053,6 +6058,8 @@ snapshots: convert-source-map@2.0.0: {} + cookie@1.0.2: {} + copy-anything@3.0.5: dependencies: is-what: 4.1.16 @@ -8195,17 +8202,19 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-router-dom@6.23.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-router-dom@7.8.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@remix-run/router': 1.16.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-router: 6.23.0(react@18.2.0) + react-router: 7.8.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react-router@6.23.0(react@18.2.0): + react-router@7.8.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@remix-run/router': 1.16.0 + cookie: 1.0.2 react: 18.2.0 + set-cookie-parser: 2.7.1 + optionalDependencies: + react-dom: 18.2.0(react@18.2.0) react-transition-state@1.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -8401,6 +8410,8 @@ snapshots: semver@7.7.1: {} + set-cookie-parser@2.7.1: {} + set-function-length@1.2.2: dependencies: define-data-property: 1.1.4