Skip to content

Commit c9660e3

Browse files
ybezsonovYuriy Bezsonov
andauthored
Chore/remaining dependency updates (#920)
* fix(cdk): Pin jackson-databind to 2.21.4 to avoid GHSA-5jmj-h7xm-6q6v jackson-databind 2.22.0 is affected by GHSA-5jmj-h7xm-6q6v (case- insensitive deserialization bypasses per-property @JsonIgnoreProperties) and no patched 2.22.x release exists yet. Downgrade to 2.21.4, the highest release outside the vulnerable range. * chore(dependabot): Exclude vendored META-INF pom from scans The authorization server ships a vendored artifact pom under META-INF/ that is dependency metadata, not a buildable module. Exclude it from Maven scans so Dependabot stops opening noise PRs against it. --------- Co-authored-by: Yuriy Bezsonov <bezsonov@amazon.de>
1 parent 4ed1d1b commit c9660e3

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ updates:
1212
- package-ecosystem: maven
1313
directories:
1414
- "**/*"
15+
# Exclude the vendored artifact pom shipped inside the authorization
16+
# server's META-INF/ (it is dependency metadata, not a buildable
17+
# module) so Dependabot stops opening noise PRs against it.
18+
- "!/samples/security/oauth/authorization-server/META-INF/**"
1519
schedule:
1620
interval: "monthly"
1721
open-pull-requests-limit: 15

infra/cdk/pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,10 @@
104104
<dependency>
105105
<groupId>com.fasterxml.jackson.core</groupId>
106106
<artifactId>jackson-databind</artifactId>
107-
<version>2.22.0</version>
107+
<!-- Pinned to 2.21.4: 2.22.0 is affected by GHSA-5jmj-h7xm-6q6v
108+
(case-insensitive deserialization bypasses per-property
109+
@JsonIgnoreProperties) with no patched 2.22.x release yet. -->
110+
<version>2.21.4</version>
108111
</dependency>
109112

110113
<!-- JSON library for policy parsing -->

0 commit comments

Comments
 (0)