Skip to content

Commit

Permalink
Merge branch 'develop' into sts_AN-225_batch_api_workspace_setting
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-schu authored Nov 18, 2024
2 parents 6493663 + 57df2ec commit 4c21a9d
Show file tree
Hide file tree
Showing 7 changed files with 260 additions and 157 deletions.
37 changes: 35 additions & 2 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,39 @@ pullRequests.frequency = "0 0 ? * MON" # every monday at midnight
# Defaults to no labels (no labels are added).
pullRequests.customLabels = [ "Scala_Steward" ]

# pullRequests.grouping allows you to specify how Scala Steward should group
# your updates in order to reduce the number of pull-requests.
#
# Updates will be placed in the first group with which they match, starting
# from the first in the array. Those that do not match any group will follow
# the default procedure (one PR per update).
#
# Each element in the array will have the following schema:
#
# - name (mandatory): the name of the group, will be used for things like naming the branch
# - title (optional): if provided it will be used as the title for the PR
# - filter (mandatory): a non-empty list containing the filters to use to know
# if an update falls into this group.
#
# `filter` properties would have this format:
#
# {
# version = "major" | "minor" | "patch" | "pre-release" | "build-metadata",
# group = "{group}",
# artifact = "{artifact}"
# }
#
# For more information on the values for the `version` filter visit https://semver.org/
#
# Every field in a `filter` is optional but at least one must be provided.
#
# For grouping every update together a filter like {group = "*"} can be # provided.
#
# To create a new PR for each unique combination of artifact-versions, include ${hash} in the name.
#
# Default: []
pullRequests.grouping = [ { name = "minor_patch", title = "CORE-69: Minor and patch updates - ${artifactVersions}", filter = [ { version = "minor" }, { version = "patch" } ] } ]

# Only these dependencies which match the given patterns are updated.
#
# Each pattern must have `groupId`, and may have `artifactId` and `version`.
Expand All @@ -53,7 +86,7 @@ pullRequests.customLabels = [ "Scala_Steward" ]
# If set, Scala Steward will only create or update `n` PRs each time it runs (see `pullRequests.frequency` above).
# Useful if running frequently and/or CI build are costly
# Default: None
updates.limit = 10
updates.limit = 5

# The extensions of files that should be updated.
# Default: [".scala", ".sbt", ".sbt.shared", ".sc", ".yml", "pom.xml"]
Expand All @@ -65,7 +98,7 @@ updates.limit = 10
# you don't change it yourself.
# If "never", Scala Steward will never update the PR
# Default: "on-conflicts"
updatePullRequests = "always"
updatePullRequests = "on-conflicts"

# If set, Scala Steward will use this message template for the commit messages and PR titles.
# Supported variables: ${artifactName}, ${currentVersion}, ${nextVersion} and ${default}
Expand Down
4 changes: 2 additions & 2 deletions automation/project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ object Dependencies {

val akkaV = "2.6.8"
val akkaHttpV = "10.2.0"
val jacksonV = "2.18.0"
val jacksonV = "2.18.1"

val workbenchLibsHash = "80e4b8d"
val serviceTestV = s"5.0-${workbenchLibsHash}"
Expand Down Expand Up @@ -39,7 +39,7 @@ object Dependencies {
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonV,
"com.fasterxml.jackson.core" % "jackson-core" % jacksonV,
"com.fasterxml.jackson.module" % ("jackson-module-scala_" + scalaV) % jacksonV,
"ch.qos.logback" % "logback-classic" % "1.5.10",
"ch.qos.logback" % "logback-classic" % "1.5.12",
"net.logstash.logback" % "logstash-logback-encoder" % "6.6",
"com.google.apis" % "google-api-services-oauth2" % "v1-rev112-1.22.0" excludeAll (
ExclusionRule("com.google.guava", "guava-jdk5"),
Expand Down
Loading

0 comments on commit 4c21a9d

Please sign in to comment.