Skip to content

Commit

Permalink
Branch for 2.1.x series
Browse files Browse the repository at this point in the history
  • Loading branch information
spikymonkey committed Oct 5, 2023
1 parent 4a10971 commit d10f9dc
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,33 @@ updates:
- package-ecosystem: gradle
directory: "/"
target-branch: "main"
schedule:
interval: daily
commit-message:
prefix: "(2.2.x)"
milestone: 30
labels:
- dependencies

- package-ecosystem: gradle
directory: "/"
target-branch: "2.1.x"
schedule:
interval: daily
commit-message:
prefix: "(2.1.x)"
milestone: 29
labels:
- dependencies
ignore:
- dependency-name: "org.springframework.boot:*"
update-types:
- "version-update:semver-major"
- "version-update:semver-minor"
- dependency-name: "spring-cloud-starter-open-service-broker"
update-types:
- "version-update:semver-major"
- "version-update:semver-minor"

- package-ecosystem: gradle
directory: "/"
Expand Down
9 changes: 9 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ Join us in our gitter channel: https://gitter.im/spring-cloud-app-broker/communi

=== Compatibility

==== 2.2.x

* https://projects.spring.io/spring-framework/[Spring Framework] 6.0.x
* https://projects.spring.io/spring-boot/[Spring Boot] 3.1.x
* https://github.com/cloudfoundry/cf-java-client/[Cloud Foundry Java Client] 5.x
* https://github.com/reactor/[Reactor] 2022.0.0
* https://spring.io/projects/spring-cloud-open-service-broker/[Spring Cloud Open Service Broker] 4.1.x
* https://github.com/openservicebrokerapi/servicebroker/tree/v2.16/[Open Service Broker API] 2.16

==== 2.1.x

* https://projects.spring.io/spring-framework/[Spring Framework] 6.0.x
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=2.1.0-SNAPSHOT
version=2.2.0-SNAPSHOT
group=org.springframework.cloud

onlyShowStandardStreamsOnTestFailure = false
Expand Down
2 changes: 1 addition & 1 deletion scripts/set-pipelines.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readonly PIPELINE_TYPE=${1:-""}

set_branch_pipeline() {
local -r pipeline_name="app-broker${PIPELINE_NAME_SUFFIX:+"-$PIPELINE_NAME_SUFFIX"}"
local -r branches=("main" "2.0.x" "1.6.x" "1.5.x")
local -r branches=("main" "2.1.x" "2.0.x" "1.6.x" "1.5.x")

for branch in "${branches[@]}"; do
echo "Setting $pipeline_name $branch pipeline..."
Expand Down

0 comments on commit d10f9dc

Please sign in to comment.