Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 52 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ updates:

- package-ecosystem: "gradle"
directory: "/"
target-branch: "main"
schedule:
interval: "weekly"
day: "tuesday"
Expand All @@ -37,7 +38,6 @@ updates:
mutiny:
patterns:
- "io.smallrye.reactive*"
# Testcontainers plus the JDBC driver we need for testing
testcontainers:
patterns:
- "org.testcontainers*"
Expand All @@ -48,12 +48,9 @@ updates:
- "com.fasterxml.jackson.core*"
- "com.mysql*"
- "org.mariadb.jdbc*"

ignore:
# For Hibernate Validator, we will need to update major version manually as needed (but we only use it in tests)
- dependency-name: "org.glassfish.expressly*"
update-types: ["version-update-:semver-major"]
# Only patches for Hibernate ORM and Vert.x
update-types: ["version-update:semver-major"]
- dependency-name: "org.hibernate*"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
- dependency-name: "io.vertx*"
Expand All @@ -62,6 +59,56 @@ updates:
# Dockerfiles in tooling/docker/, and database services we use for examples (MySQL and PostgreSQL)
- package-ecosystem: "docker"
directory: "/tooling/docker"
target-branch: "main"
schedule:
interval: "weekly"
allow:
- dependency-type: "all"

# Duplicate the previous package-ecosystems because we want to target branch 3.1
# and dependabot doesn't support YAML aliases and anchors at the moment
- package-ecosystem: "gradle"
directory: "/"
target-branch: "3.1"
schedule:
interval: "weekly"
day: "tuesday"
open-pull-requests-limit: 20
groups:
hibernate-validator:
patterns:
- "org.hibernate.validator*"
- "org.glassfish.expressly*"
hibernate:
patterns:
- "org.hibernate*"
vertx:
patterns:
- "io.vertx*"
mutiny:
patterns:
- "io.smallrye.reactive*"
testcontainers:
patterns:
- "org.testcontainers*"
- "com.ibm.db2*"
- "com.microsoft.sqlserver*"
- "org.postgresql*"
- "con.ongres.scram*"
- "com.fasterxml.jackson.core*"
- "com.mysql*"
- "org.mariadb.jdbc*"
ignore:
- dependency-name: "org.glassfish.expressly*"
update-types: ["version-update:semver-major"]
- dependency-name: "org.hibernate*"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
- dependency-name: "io.vertx*"
update-types: ["version-update:semver-major", "version-update:semver-minor"]

- package-ecosystem: "docker"
directory: "/tooling/docker"
target-branch: "3.1"
schedule:
interval: "weekly"
allow:
Expand Down
2 changes: 1 addition & 1 deletion tooling/docker/maria.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# MariaDB
# See https://hub.docker.com/_/mariadb
FROM docker.io/mariadb:11.8.2
FROM docker.io/mariadb:12.0.2
Loading