Skip to content

Commit 091859e

Browse files
authored
Merge pull request #1044 from grails/merge-6.1.x-into-7.0.x-12-6-2024
Merge 6.1.x into 7.0.x
2 parents e3accd9 + 7d6cfc5 commit 091859e

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ on:
33
release:
44
types: [published]
55
env:
6-
GIT_USER_NAME: puneetbehl
7-
GIT_USER_EMAIL: behlp@unityfoundation.io
6+
GIT_USER_NAME: 'grails-build'
7+
GIT_USER_EMAIL: 'grails-build@users.noreply.github.com'
88
jobs:
99
release:
1010
runs-on: ubuntu-latest
1111
env:
12-
GIT_USER_NAME: puneetbehl
13-
GIT_USER_EMAIL: behlp@unityfoundation.io
12+
GIT_USER_NAME: 'grails-build'
13+
GIT_USER_EMAIL: 'grails-build@users.noreply.github.com'
1414
steps:
1515
- uses: actions/checkout@v4
1616
- uses: gradle/wrapper-validation-action@v2

build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ if (isReleaseVersion) {
1414
String nexusUser = findProperty('sonatypeUsername')
1515
String nexusPass = findProperty('sonatypePassword')
1616
String nexusStagingProfileId = findProperty('sonatypeStagingProfileId')
17-
String nexusUrl = findProperty('sonatypeNexusUrl') ?: 'https://s01.oss.sonatype.org/service/local/'
1817
repositories {
1918
sonatype {
20-
nexusUrl = uri(nexusUrl)
19+
nexusUrl = uri('https://s01.oss.sonatype.org/service/local/')
2120
username = nexusUser
2221
password = nexusPass
2322
stagingProfileId = nexusStagingProfileId

gradle/libs.versions.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[versions]
22
asset-pipeline = '5.0.1'
3+
bytebuddy = '1.15.10'
34
commons-text = '1.12.0'
45
ehcache = '3.10.8'
56
geb = '7.0'
@@ -27,6 +28,7 @@ tomcat = '10.1.29'
2728
[libraries]
2829
commons-text = { module = 'org.apache.commons:commons-text', version.ref = 'commons-text' }
2930
ehcache = { module = 'org.ehcache:ehcache', version.ref = 'ehcache' }
31+
bytebuddy = { module = 'net.bytebuddy:byte-buddy', version.ref = 'bytebuddy' }
3032
geb-core = { module = 'org.gebish:geb-core', version.ref = 'geb' }
3133
geb-spock = { module = 'org.gebish:geb-spock', version.ref = 'geb' }
3234
gorm-hibernate5 = { module = 'org.grails.plugins:hibernate5', version.ref = 'gorm-hibernate5' }

plugin/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ dependencies {
4747
testImplementation libs.spring.test
4848
testImplementation libs.spring.security.config
4949

50+
testRuntimeOnly libs.bytebuddy
5051
testRuntimeOnly libs.slf4j.nop // Prevents warnings about missing slf4j implementation during tests
5152
}
5253

plugin/src/main/groovy/grails/plugin/springsecurity/SecurityFilterPosition.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright 2006-2016 the original author or authors.
1+
/* Copyright 2006-2024 the original author or authors.
22
*
33
* Licensed under the Apache License, Version 2.0 (the "License");
44
* you may not use this file except in compliance with the License.
@@ -16,13 +16,13 @@
1616

1717
/**
1818
* Stores the default order numbers of all Spring Security filters for use in configuration.
19-
*
19+
* <p>
2020
* Equivalent to <code>org.springframework.security.config.http.SecurityFilters</code> which
2121
* unfortunately is package-default.
2222
*
2323
* @author Burt Beckwith
2424
*/
25-
enum SecurityFilterPosition {
25+
public enum SecurityFilterPosition {
2626

2727
FIRST(Integer.MIN_VALUE),
2828

0 commit comments

Comments
 (0)