Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge 6.1.x into 7.0.x #1044

Merged
merged 15 commits into from
Dec 10, 2024
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ on:
release:
types: [published]
env:
GIT_USER_NAME: puneetbehl
GIT_USER_EMAIL: behlp@unityfoundation.io
GIT_USER_NAME: 'grails-build'
GIT_USER_EMAIL: 'grails-build@users.noreply.github.com'
jobs:
release:
runs-on: ubuntu-latest
env:
GIT_USER_NAME: puneetbehl
GIT_USER_EMAIL: behlp@unityfoundation.io
GIT_USER_NAME: 'grails-build'
GIT_USER_EMAIL: 'grails-build@users.noreply.github.com'
steps:
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v2
Expand Down
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ if (isReleaseVersion) {
String nexusUser = findProperty('sonatypeUsername')
String nexusPass = findProperty('sonatypePassword')
String nexusStagingProfileId = findProperty('sonatypeStagingProfileId')
String nexusUrl = findProperty('sonatypeNexusUrl') ?: 'https://s01.oss.sonatype.org/service/local/'
repositories {
sonatype {
nexusUrl = uri(nexusUrl)
nexusUrl = uri('https://s01.oss.sonatype.org/service/local/')
username = nexusUser
password = nexusPass
stagingProfileId = nexusStagingProfileId
Expand Down
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[versions]
asset-pipeline = '5.0.1'
bytebuddy = '1.15.10'
commons-text = '1.12.0'
ehcache = '3.10.8'
geb = '7.0'
Expand Down Expand Up @@ -27,6 +28,7 @@ tomcat = '10.1.29'
[libraries]
commons-text = { module = 'org.apache.commons:commons-text', version.ref = 'commons-text' }
ehcache = { module = 'org.ehcache:ehcache', version.ref = 'ehcache' }
bytebuddy = { module = 'net.bytebuddy:byte-buddy', version.ref = 'bytebuddy' }
geb-core = { module = 'org.gebish:geb-core', version.ref = 'geb' }
geb-spock = { module = 'org.gebish:geb-spock', version.ref = 'geb' }
gorm-hibernate5 = { module = 'org.grails.plugins:hibernate5', version.ref = 'gorm-hibernate5' }
Expand Down
1 change: 1 addition & 0 deletions plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ dependencies {
testImplementation libs.spring.test
testImplementation libs.spring.security.config

testRuntimeOnly libs.bytebuddy
testRuntimeOnly libs.slf4j.nop // Prevents warnings about missing slf4j implementation during tests
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright 2006-2016 the original author or authors.
/* Copyright 2006-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -16,13 +16,13 @@

/**
* Stores the default order numbers of all Spring Security filters for use in configuration.
*
* <p>
* Equivalent to <code>org.springframework.security.config.http.SecurityFilters</code> which
* unfortunately is package-default.
*
* @author Burt Beckwith
*/
enum SecurityFilterPosition {
public enum SecurityFilterPosition {

FIRST(Integer.MIN_VALUE),

Expand Down
Loading