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 9e5c165c50b348f35190e526a02180fda4419fe5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 15:40:51 +0000 Subject: [PATCH 8/8] Bump simple-elf/allure-report-action from 1.9 to 1.13 Bumps [simple-elf/allure-report-action](https://github.com/simple-elf/allure-report-action) from 1.9 to 1.13. - [Release notes](https://github.com/simple-elf/allure-report-action/releases) - [Commits](https://github.com/simple-elf/allure-report-action/compare/58e6590adf6d8f196a0d771bf8a00e6921086a62...53ebb757a2097edc77c53ecef4d454fc2f2f774c) --- updated-dependencies: - dependency-name: simple-elf/allure-report-action dependency-version: '1.13' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/e2e-run.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e-run.yml b/.github/workflows/e2e-run.yml index 954ae62c3..df59983cc 100644 --- a/.github/workflows/e2e-run.yml +++ b/.github/workflows/e2e-run.yml @@ -147,7 +147,7 @@ jobs: path: ./e2e-tests/build/allure-results - name: Generate Allure report - uses: simple-elf/allure-report-action@58e6590adf6d8f196a0d771bf8a00e6921086a62 # infered from @v1.9 + uses: simple-elf/allure-report-action@53ebb757a2097edc77c53ecef4d454fc2f2f774c # infered from @v1.13 id: allure-report with: allure_results: ./e2e-tests/build/allure-results