Skip to content

Commit 6ed7a36

Browse files
committed
chore: additional and supporting updates
1 parent 0c723ce commit 6ed7a36

62 files changed

Lines changed: 27 additions & 3746 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.asf.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ github:
2929
discussions: true
3030
enabled_merge_buttons:
3131
squash: true
32-
merge: true
33-
rebase: false
32+
merge: false
33+
rebase: true
3434
rulesets:
3535
- name: "Branch Protection"
3636
type: branch
@@ -47,7 +47,7 @@ github:
4747
required_linear_history: true
4848
required_conversation_resolution: false
4949
required_pull_request_reviews:
50-
dismiss_stale_reviews: true
50+
dismiss_stale_reviews: false
5151
require_last_push_approval: false
5252
require_code_owner_reviews: false
5353
required_approving_review_count: 0

.github/dependabot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ updates:
6969
- dependency-name: "org.aspectj:*"
7070
update-types: [ "version-update:semver-patch" ]
7171

72+
- dependency-name: "com.puppycrawl.tools:checkstyle"
73+
update-types: [ "version-update:semver-major" ]
74+
7275
- dependency-name: "org.springframework*:*"
7376
update-types: [ "version-update:semver-major" ]
7477
- dependency-name: "com.flowlogix:flowlogix-jee"

.jenkins.groovy

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919

20-
def deployableBranch = env.BRANCH_NAME ==~ /(1.13.x|2.x|3.x|4.x|main)/
20+
def deployableBranch = env.BRANCH_NAME ==~ /(main|4.x)/
2121
def latestSupportedJDK = 'jdk_25_latest'
2222
def builtinVersion = '999-SNAPSHOT'
2323
def nextVersion
@@ -107,10 +107,9 @@ pipeline {
107107
def parts = latestRelease.tokenize('.')
108108
def nextPatch = parts[2].toInteger() + 1
109109
nextVersion = "${parts[0]}.${parts[1]}.${nextPatch}-SNAPSHOT"
110-
if (env.BRANCH_NAME == '2.x') {
111-
nextVersion = '2.0.0-SNAPSHOT'
112-
}
113-
if (env.BRANCH_NAME == '3.x') {
110+
if (env.BRANCH_NAME == '4.x') {
111+
nextVersion = '4.0.0-SNAPSHOT'
112+
} else if (parts[0].toInteger() < 3) {
114113
nextVersion = '3.0.0-SNAPSHOT'
115114
}
116115

3.X-NOTES

Lines changed: 0 additions & 27 deletions
This file was deleted.

core/src/main/java/org/apache/shiro/session/mgt/eis/RandomSessionIdGenerator.java

Lines changed: 0 additions & 72 deletions
This file was deleted.

core/src/main/java/org/apache/shiro/util/JavaEnvironment.java

Lines changed: 0 additions & 181 deletions
This file was deleted.

integration-tests/guice/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
<version>999-SNAPSHOT</version>
2828
</parent>
2929

30-
<artifactId>shiro-its-guice</artifactId>
31-
<name>Apache Shiro :: ITs :: Guice</name>
32-
<packaging>war</packaging>
30+
<artifactId>shiro-its-guice</artifactId>
31+
<name>Apache Shiro :: ITs :: Guice</name>
32+
<packaging>war</packaging>
3333

3434
<properties>
3535
<groups>none()</groups>

0 commit comments

Comments
 (0)