Skip to content

Commit

Permalink
Merge pull request #2201 from alphagov/bau_tell_dependabot_to_ignore_…
Browse files Browse the repository at this point in the history
…guice_6_and_dropwizard_sentry_4

BAU — Tell Dependabot to ignore Guice 6 and Dropwizard Sentry 4
  • Loading branch information
alexbishop1 authored Oct 27, 2023
2 parents 5679693 + 6bd53f3 commit efb4c46
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,21 @@ updates:
time: "03:00"
ignore:
- dependency-name: "io.dropwizard:dropwizard-dependencies"
# Dropwizard 4.x only works with Jakarta EE and not Java EE
versions:
- ">= 4"
- dependency-name: "org.dhatim:dropwizard-sentry"
# We essentially forked Dropwizard Sentry because it did not support
# Dropwizard 3.x — there is now a Dropwizard Sentry 4.x, which supports
# Dropwizard 4.x (and maybe Dropwizard 3.x), but we’d need to do work
# to go back to using an unmodified version
versions:
- ">= 4"
- dependency-name: "com.google.inject:guice-bom"
# Guice 6.x requires compatibility work on our side
# Guice 7.x only works with Jakarta EE and not Java EE
versions:
- ">= 7"
- ">= 6"
open-pull-requests-limit: 10
labels:
- dependencies
Expand Down

0 comments on commit efb4c46

Please sign in to comment.