Skip to content

Commit

Permalink
Merge branch '1.0.x' into 1.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
sjohnr committed Nov 1, 2023
2 parents cd0ab78 + c7afe53 commit 3448b57
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 14 deletions.
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
plugins {
id "io.spring.convention.root"
id "io.spring.security.release" version "1.0.0-SNAPSHOT"
}

group = "org.springframework.security"
description = "Spring Authorization Server"

springRelease {
repositoryOwner = "spring-projects"
weekOfMonth = 2
dayOfWeek = 4
referenceDocUrl = "https://docs.spring.io/spring-authorization-server/docs/{version}/reference/html/"
apiDocUrl = "https://docs.spring.io/spring-authorization-server/docs/{version}/api/"
replaceSnapshotVersionInReferenceDocUrl = false
}

if (hasProperty("buildScan")) {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
Expand Down
37 changes: 24 additions & 13 deletions scripts/release/release-notes-sections.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
releasenotes:
changelog:
repository: spring-projects/spring-authorization-server
sections:
- title: "New Features"
emoji: ":star:"
labels: ["enhancement"]
- title: "Bug Fixes"
emoji: ":beetle:"
labels: ["bug", "regression"]
- title: "Dependency Upgrades"
emoji: ":hammer:"
labels: ["dependency-upgrade"]
- title: "Non-passive"
emoji: ":rewind:"
labels: ["breaks-passivity"]
- title: ":star: New Features"
labels: ["type: enhancement"]
sort: "title"
- title: ":beetle: Bug Fixes"
labels: ["type: bug", "type: regression"]
sort: "title"
- title: ":hammer: Dependency Upgrades"
labels: ["type: dependency-upgrade"]
sort: "title"
- title: ":rewind: Non-passive"
labels: ["type: breaks-passivity"]
sort: "title"
issues:
exclude:
labels: [ "status: duplicate" ]
ports:
- label: "status: forward-port"
bodyExpression: 'Forward port of issue #(\d+).*'
contributors:
title: ":heart: Contributors"
exclude:
names: ["jgrandja", "sjohnr"]
3 changes: 2 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
pluginManagement {
repositories {
gradlePluginPortal()
maven { url 'https://repo.spring.io/release' }
maven { url "https://repo.spring.io/release" }
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/snapshot" }
}
}

Expand Down

0 comments on commit 3448b57

Please sign in to comment.