From 6b6fd9b3322db1a38ef5bb1333981ee0e12c61d2 Mon Sep 17 00:00:00 2001 From: Marcin Procyk Date: Thu, 12 Dec 2024 14:36:57 +0100 Subject: [PATCH 01/14] fix nx ignore --- .github/dependabot.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f94cc2cf59..043cf1d066 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -38,9 +38,11 @@ updates: update-types: ["version-update:semver-major"] # we use github:dasch-swiss/ckeditor_custom_build#v2.0.0 and v2.0.1 seems to be broken - dependency-name: "ckeditor5-custom-build" - # all nx and angular dependencies are for now handled manually, so for now are ignored + # all nx and angular dependencies are for now handled manually - dependency-name: "@angular/*" - dependency-name: "nx*" + - dependency-name: "@nx*" + - dependency-name: "@nrwl/*" - package-ecosystem: "docker" directory: "/" From ac22e0c3ad81f5ca13aacd86f32b9471554d9730 Mon Sep 17 00:00:00 2001 From: Marcin Procyk Date: Thu, 12 Dec 2024 15:19:00 +0100 Subject: [PATCH 02/14] add postcss group --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 043cf1d066..7ebc2203c4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -28,6 +28,13 @@ updates: update-types: - "minor" - "patch" + postcss-deps: + applies-to: version-updates + patterns: + - "postcss*" + update-types: + - "minor" + - "patch" # groups: # frontend-dependencies: # applies-to: version-updates From 849f2564e5b98156f7d1e77aeb05bcf85c784db5 Mon Sep 17 00:00:00 2001 From: Marcin Procyk Date: Thu, 12 Dec 2024 15:20:44 +0100 Subject: [PATCH 03/14] add types group --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7ebc2203c4..4c9867be05 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -35,6 +35,13 @@ updates: update-types: - "minor" - "patch" + types-deps: + applies-to: version-updates + patterns: + - "@types/*" + update-types: + - "minor" + - "patch" # groups: # frontend-dependencies: # applies-to: version-updates From 94a9744eed7d57516f94faab23ab649654e9c75e Mon Sep 17 00:00:00 2001 From: Marcin Procyk Date: Thu, 12 Dec 2024 15:21:49 +0100 Subject: [PATCH 04/14] remove wildcard group --- .github/dependabot.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4c9867be05..7dc974a823 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -42,11 +42,6 @@ updates: update-types: - "minor" - "patch" -# groups: -# frontend-dependencies: -# applies-to: version-updates -# patterns: -# - "*" ignore: - dependency-name: "*" update-types: ["version-update:semver-major"] From 5b6a6051c60c7213eeaf09ec37ebf0cdf9f704b9 Mon Sep 17 00:00:00 2001 From: Marcin Procyk Date: Thu, 12 Dec 2024 15:23:55 +0100 Subject: [PATCH 05/14] add karma group --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7dc974a823..922176b9f2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -19,6 +19,13 @@ updates: update-types: - "minor" - "patch" + karma-deps: + applies-to: version-updates + patterns: + - "karma*" + update-types: + - "minor" + - "patch" nx-deps: applies-to: version-updates patterns: From 589276710b474b8eefd54eb99dc8fd1bca3090ab Mon Sep 17 00:00:00 2001 From: Marcin Procyk Date: Thu, 12 Dec 2024 15:50:57 +0100 Subject: [PATCH 06/14] add jest group --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 922176b9f2..9830fe9b53 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -19,6 +19,15 @@ updates: update-types: - "minor" - "patch" + jest-deps: + applies-to: version-updates + patterns: + - "jest*" + - "ts-jest" + - "@types/jest" + update-types: + - "minor" + - "patch" karma-deps: applies-to: version-updates patterns: @@ -49,6 +58,8 @@ updates: update-types: - "minor" - "patch" + exclude-patterns: + - "@types/jest" ignore: - dependency-name: "*" update-types: ["version-update:semver-major"] From fd0d8aa407fd928661287eb6086dd702206d84ca Mon Sep 17 00:00:00 2001 From: Marcin Procyk Date: Thu, 12 Dec 2024 15:52:24 +0100 Subject: [PATCH 07/14] add sentry group --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9830fe9b53..095b0a496a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -51,6 +51,13 @@ updates: update-types: - "minor" - "patch" + sentry-deps: + applies-to: version-updates + patterns: + - "@sentry/*" + update-types: + - "minor" + - "patch" types-deps: applies-to: version-updates patterns: From 4ec2ed0777ac03798c1edda3a55887b535564234 Mon Sep 17 00:00:00 2001 From: Marcin Procyk Date: Thu, 12 Dec 2024 15:54:03 +0100 Subject: [PATCH 08/14] add grafana group --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 095b0a496a..fd4be0bc6b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -19,6 +19,13 @@ updates: update-types: - "minor" - "patch" + grafana-deps: + applies-to: version-updates + patterns: + - "@grafana/*" + update-types: + - "minor" + - "patch" jest-deps: applies-to: version-updates patterns: From 3e5c96ace24ec1f627a0c2f0db9820ad0798f479 Mon Sep 17 00:00:00 2001 From: Marcin Procyk Date: Thu, 12 Dec 2024 16:02:42 +0100 Subject: [PATCH 09/14] add ngxs group --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fd4be0bc6b..bc03db0087 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,6 +16,7 @@ updates: applies-to: version-updates patterns: - "@angular*" + - "@ngrx/component-store" update-types: - "minor" - "patch" @@ -42,6 +43,13 @@ updates: update-types: - "minor" - "patch" + ngxs-deps: + applies-to: version-updates + patterns: + - "@ngxs/*" + update-types: + - "minor" + - "patch" nx-deps: applies-to: version-updates patterns: @@ -81,6 +89,7 @@ updates: - dependency-name: "ckeditor5-custom-build" # all nx and angular dependencies are for now handled manually - dependency-name: "@angular/*" + - dependency-name: "@ngrx/component-store" - dependency-name: "nx*" - dependency-name: "@nx*" - dependency-name: "@nrwl/*" From 4134f8f5e0681a5a03a0ee2279a799bd53cf1645 Mon Sep 17 00:00:00 2001 From: Marcin Procyk Date: Thu, 12 Dec 2024 16:06:59 +0100 Subject: [PATCH 10/14] add jasmine to karma group --- .github/dependabot.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bc03db0087..7a93ab654a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -36,10 +36,12 @@ updates: update-types: - "minor" - "patch" - karma-deps: + jasmine-karma-deps: applies-to: version-updates patterns: - "karma*" + - "jasmine*" + - "@types/jasmine*" update-types: - "minor" - "patch" @@ -82,6 +84,7 @@ updates: - "patch" exclude-patterns: - "@types/jest" + - "@types/jasmine*" ignore: - dependency-name: "*" update-types: ["version-update:semver-major"] From bd2a088bd20cf627479cae8f02938f40e3d2f3ff Mon Sep 17 00:00:00 2001 From: Marcin Procyk Date: Thu, 12 Dec 2024 16:08:18 +0100 Subject: [PATCH 11/14] add eslint placeholder --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7a93ab654a..f9d82b7562 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -20,6 +20,7 @@ updates: update-types: - "minor" - "patch" + # eslint-deps: TODO: configure once the eslint issue is sorted out grafana-deps: applies-to: version-updates patterns: From 8ccfd496a4e52ee4d9e995519e3f0cc5a0484229 Mon Sep 17 00:00:00 2001 From: Marcin Procyk Date: Fri, 13 Dec 2024 08:29:24 +0100 Subject: [PATCH 12/14] add jwt-decode group --- .github/dependabot.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f9d82b7562..5d858bccf0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -28,6 +28,15 @@ updates: update-types: - "minor" - "patch" + jasmine-karma-deps: + applies-to: version-updates + patterns: + - "karma*" + - "jasmine*" + - "@types/jasmine*" + update-types: + - "minor" + - "patch" jest-deps: applies-to: version-updates patterns: @@ -37,12 +46,10 @@ updates: update-types: - "minor" - "patch" - jasmine-karma-deps: + jwt-decoder-deps: applies-to: version-updates patterns: - - "karma*" - - "jasmine*" - - "@types/jasmine*" + - "jwt-decode" update-types: - "minor" - "patch" @@ -86,6 +93,7 @@ updates: exclude-patterns: - "@types/jest" - "@types/jasmine*" + - "@types/jwt-decode" ignore: - dependency-name: "*" update-types: ["version-update:semver-major"] From f21563bb3c027a2f1677e05a5d934bc5ef75f97c Mon Sep 17 00:00:00 2001 From: Marcin Procyk Date: Fri, 13 Dec 2024 08:37:20 +0100 Subject: [PATCH 13/14] add typescript to ignored --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5d858bccf0..cf53902729 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -50,6 +50,7 @@ updates: applies-to: version-updates patterns: - "jwt-decode" + - "@types/jwt-decode" update-types: - "minor" - "patch" @@ -101,6 +102,7 @@ updates: - dependency-name: "ckeditor5-custom-build" # all nx and angular dependencies are for now handled manually - dependency-name: "@angular/*" + - dependency-name: "typescript" - dependency-name: "@ngrx/component-store" - dependency-name: "nx*" - dependency-name: "@nx*" From e8cdbdc66902c35edf343e10152e4d68d0dd2a99 Mon Sep 17 00:00:00 2001 From: Marcin Procyk Date: Fri, 13 Dec 2024 08:48:38 +0100 Subject: [PATCH 14/14] add angular-eslint to ignore --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cf53902729..e9a2c5d248 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -102,6 +102,7 @@ updates: - dependency-name: "ckeditor5-custom-build" # all nx and angular dependencies are for now handled manually - dependency-name: "@angular/*" + - dependency-name: "@angular*" # TODO: for eslint - to remove once eslint issue is sorted out - dependency-name: "typescript" - dependency-name: "@ngrx/component-store" - dependency-name: "nx*"