Skip to content

Commit 14958e4

Browse files
authored
Merge pull request #190 from devondragon/main
Refreshing working branch from main
2 parents 12f6ba0 + b28c6b9 commit 14958e4

3 files changed

Lines changed: 27 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## [3.2.3] - 2025-06-23
2+
### Features
3+
- **[Gradle Release Plugin] New Version:** Updated `gradle.properties` to set the project version to `3.2.3-SNAPSHOT` from `3.2.2`. This change prepares the project for future development by marking the start of a new snapshot version.
4+
5+
### Other Changes
6+
- **Dependency Updates:**
7+
- **Spring Boot Update to 3.5.3:**
8+
- **Merged Changes and Details:**
9+
- Updated `springBootVersion` in `build.gradle` from `3.5.0` to `3.5.3`. This update includes improvements and bug fixes from Spring Boot's latest patch release.
10+
- Affected modules include `spring-boot-starter-web`, `spring-boot-configuration-processor`, and `spring-boot-starter-test`. Each of these was bumped from version `3.5.0` to `3.5.3`.
11+
- These updates ensure incorporation of resolved issues and performance improvements provided by the Spring Boot team. [Release notes and commits](https://github.com/spring-projects/spring-boot/releases).
12+
- **Maven Publish Plugin Update to 0.33.0:**
13+
- **Merged Changes and Details:**
14+
- Updated `com.vanniktech.maven.publish` plugin in `build.gradle` from `0.32.0` to `0.33.0`. This minor version update may include new features, enhancements, and potentially minor API changes that improve the publication process.
15+
- This update ensures the usage of the latest features and improvements, detailed in [release notes and changelog](https://github.com/vanniktech/gradle-maven-publish-plugin/releases).
16+
17+
- **Version Increment for Spring Boot to 3.5.0 from 3.4.5:**
18+
- Previous increment from `3.4.5` to `3.5.0` had merged code changes which similarly ensured improved stability and support by aligning with the latest minor release prior to patch updates.
19+
20+
These updates help make sure the project dependencies are current, which is important for taking advantage of recent bug fixes and performance improvements, as well as maintaining security standards within the project.
21+
22+
**Note:** All dependency updates above relate to enhancement and security, and do not introduce breaking changes as they are minor or patch updates to dependencies already in use.
23+
124
## [3.2.2] - 2025-05-07
225
### Changelog
326

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.4.5'
2+
id 'org.springframework.boot' version '3.5.3'
33
id 'io.spring.dependency-management' version '1.1.7'
44
id 'com.github.ben-manes.versions' version '0.52.0'
55
id 'java-library'
66
id 'maven-publish'
77
id 'signing'
8-
id 'com.vanniktech.maven.publish' version '0.31.0'
8+
id 'com.vanniktech.maven.publish' version '0.33.0'
99
id 'net.researchgate.release' version '3.1.0'
1010
}
1111

@@ -18,7 +18,7 @@ group = 'com.digitalsanctuary.springuser'
1818
description = 'Spring User Framework'
1919

2020
ext {
21-
springBootVersion = '3.4.5'
21+
springBootVersion = '3.5.3'
2222
lombokVersion = '1.18.38'
2323
}
2424

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=3.2.3-SNAPSHOT
1+
version=3.2.4-SNAPSHOT

0 commit comments

Comments
 (0)