Skip to content

Commit f78903b

Browse files
authored
Merge pull request #399 from kit-data-manager/development
PR for v1.2.5
2 parents 5250891 + f18785b commit f78903b

File tree

7 files changed

+646
-600
lines changed

7 files changed

+646
-600
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616

1717
### Removed
1818

19+
20+
## [1.2.5] - 2025-01-24
21+
22+
### Added
23+
* ACL information is now visible not only for administrators. This change was required to allow frontends to distinguish between users with READ and WRITE permissions, which was not possible before.
24+
* Resources in state GONE are now visible to administrators. This change was introduced for convenience to identify resources that can be cleaned up from the database.
25+
26+
### Security
27+
* Update plugin io.freefair.lombok to v8.12 by @renovate in https://github.com/kit-data-manager/repo-core/pull/397
28+
* Update plugin io.freefair.maven-publish-java to v8.12 by @renovate in https://github.com/kit-data-manager/repo-core/pull/398
29+
* Update plugin org.owasp.dependencycheck to v12.0.1 by @renovate in https://github.com/kit-data-manager/repo-core/pull/394
30+
* Update dependency org.springframework.data:spring-data-elasticsearch to v5.4.2 by @renovate in https://github.com/kit-data-manager/repo-core/pull/393
31+
* Update dependency org.springframework.boot:spring-boot-dependencies to v3.4.2 by @renovate in https://github.com/kit-data-manager/repo-core/pull/400
32+
* Update dependency gradle to v8.12.1 by @renovate in https://github.com/kit-data-manager/repo-core/pull/401
33+
1934
## [1.2.4] - 2025-01-16
2035

2136
### Security
@@ -346,7 +361,8 @@ Extracted from the 'base-repo' project.
346361
### Removed
347362
- none
348363

349-
[Unreleased]: https://github.com/kit-data-manager/repo-core/compare/v1.2.4...HEAD
364+
[Unreleased]: https://github.com/kit-data-manager/repo-core/compare/v1.2.5...HEAD
365+
[1.2.5]: https://github.com/kit-data-manager/repo-core/compare/v1.2.4...1.2.5
350366
[1.2.4]: https://github.com/kit-data-manager/repo-core/compare/v1.2.3...1.2.4
351367
[1.2.3]: https://github.com/kit-data-manager/repo-core/compare/v1.2.2...v1.2.3
352368
[1.2.2]: https://github.com/kit-data-manager/repo-core/compare/v1.2.1...v1.2.2

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
* limitations under the License.
1515
*/
1616
plugins {
17-
id "io.freefair.lombok" version "8.11"
18-
id "io.freefair.maven-publish-java" version "8.11"
17+
id "io.freefair.lombok" version "8.12"
18+
id "io.freefair.maven-publish-java" version "8.12"
1919
id "io.spring.dependency-management" version "1.1.7"
2020
//id "com.github.kt3k.coveralls" version "2.8.1"
21-
id "org.owasp.dependencycheck" version "12.0.0"
21+
id "org.owasp.dependencycheck" version "12.0.1"
2222
id "org.asciidoctor.jvm.convert" version "4.0.4"
2323
//id "org.ajoberstar.grgit" version "2.0.1"
2424
id "java"
@@ -32,7 +32,7 @@ plugins {
3232

3333
ext {
3434
// versions of dependencies
35-
springBootVersion = '3.4.1'
35+
springBootVersion = '3.4.2'
3636
springDocVersion = '2.8.3'
3737
javersVersion = '7.7.0'
3838
}
@@ -77,7 +77,7 @@ dependencies {
7777
implementation "org.springframework.boot:spring-boot-starter-security"
7878
implementation "org.springframework.boot:spring-boot-starter-actuator"
7979
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
80-
implementation 'org.springframework.data:spring-data-elasticsearch:5.4.1'
80+
implementation 'org.springframework.data:spring-data-elasticsearch:5.4.2'
8181

8282

8383
// springdoc

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)