Skip to content
Draft
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
53 changes: 53 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,59 @@ updates:
allow:
- dependency-type: "all"

#################################################################################
# Duplicate the package-ecosystems for main because we want to target branch 4.2
# and dependabot doesn't support YAML aliases and anchors at the moment
#################################################################################
- package-ecosystem: "gradle"
directory: "/"
target-branch: "4.2"
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"]
- dependency-name: "io.smallrye.reactive*"
update-types: [ "version-update:semver-major" ]

- package-ecosystem: "docker"
directory: "/tooling/docker"
target-branch: "4.2"
schedule:
interval: "weekly"
allow:
- dependency-type: "all"

#################################################################################
# Duplicate the package-ecosystems for main because we want to target branch 4.1
# and dependabot doesn't support YAML aliases and anchors at the moment
Expand Down
2 changes: 1 addition & 1 deletion ci/release/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import org.hibernate.jenkins.pipeline.helpers.version.Version
// Global build configuration
env.PROJECT = "reactive"
env.JIRA_KEY = "HREACT"
def RELEASE_ON_SCHEDULE = false // Set to `true` *only* on branches where you want a scheduled release.
def RELEASE_ON_SCHEDULE = true // Set to `true` *only* on branches where you want a scheduled release.

print "INFO: env.PROJECT = ${env.PROJECT}"
print "INFO: env.JIRA_KEY = ${env.JIRA_KEY}"
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ org.gradle.java.installations.auto-download=false
#enableCentralSonatypeSnapshotsRep = true

# Enable the maven local repository (for local development when needed) when present (value ignored)
#enableMavenLocalRepo = true
enableMavenLocalRepo = true

### Settings the following properties will override the version defined in gradle/libs.versions.toml

# The default Hibernate ORM version (override using `-PhibernateOrmVersion=the.version.you.want`)
#hibernateOrmVersion = 7.1.1.Final
hibernateOrmVersion = 7.2.1-SNAPSHOT

# Override default Hibernate ORM Gradle plugin version
#hibernateOrmGradlePluginVersion = 7.1.1.Final
Expand Down
2 changes: 1 addition & 1 deletion gradle/version.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
projectVersion=4.2.1-SNAPSHOT
projectVersion=4.2.2-SNAPSHOT
Loading