Skip to content

Commit 7bc16fa

Browse files
authored
Merge branch 'main' into fix/RDFA-355-single-transaction
2 parents fb24ae1 + d1cbfa7 commit 7bc16fa

16 files changed

Lines changed: 2342 additions & 2845 deletions

File tree

.github/workflows/backend-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,18 +69,18 @@ jobs:
6969
git diff --exit-code -- LICENSES-THIRD-PARTY.md
7070
- name: Set up Docker Buildx
7171
if: github.event_name == 'push' && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
72-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
72+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
7373
- name: Log in to GHCR
7474
if: github.event_name == 'push' && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
75-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
75+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
7676
with:
7777
registry: ghcr.io
7878
username: ${{ github.actor }}
7979
password: ${{ secrets.GITHUB_TOKEN }}
8080
- name: Extract Docker metadata
8181
if: github.event_name == 'push' && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
8282
id: meta
83-
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
83+
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0
8484
with:
8585
images: ghcr.io/${{ github.repository }}-backend
8686
tags: |
@@ -94,7 +94,7 @@ jobs:
9494
type=raw,value=main,enable=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
9595
- name: Build and push image
9696
if: github.event_name == 'push' && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
97-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
97+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
9898
with:
9999
context: backend
100100
file: backend/Dockerfile

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3737

3838
- name: Setup Node.js
39-
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
39+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
4040
with:
4141
node-version: '24'
4242
cache: npm

.github/workflows/frontend-ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
fetch-depth: 0
2828
- name: Setup Node.js
29-
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
29+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
3030
with:
3131
node-version: "24"
3232
cache: "npm"
@@ -69,18 +69,18 @@ jobs:
6969
run: npm run build
7070
- name: Set up Docker Buildx
7171
if: github.event_name == 'push' && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
72-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
72+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
7373
- name: Log in to GHCR
7474
if: github.event_name == 'push' && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
75-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
75+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
7676
with:
7777
registry: ghcr.io
7878
username: ${{ github.actor }}
7979
password: ${{ secrets.GITHUB_TOKEN }}
8080
- name: Extract Docker metadata
8181
if: github.event_name == 'push' && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
8282
id: meta
83-
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
83+
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0
8484
with:
8585
images: ghcr.io/${{ github.repository }}-frontend
8686
tags: |
@@ -94,7 +94,7 @@ jobs:
9494
type=raw,value=main,enable=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
9595
- name: Build and push image
9696
if: github.event_name == 'push' && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
97-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
97+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
9898
with:
9999
context: frontend
100100
file: frontend/Dockerfile

.github/workflows/publish-test-images.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
fetch-depth: 0
2121
- name: Setup Node.js
22-
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
22+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
2323
with:
2424
node-version: "24"
2525
cache: "npm"
@@ -37,22 +37,22 @@ jobs:
3737
PUBLIC_REPOSITORY_URL: ${{ env.PUBLIC_REPOSITORY_URL }}
3838
run: npm run build
3939
- name: Set up Docker Buildx
40-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
40+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
4141
- name: Log in to GHCR
42-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
42+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
4343
with:
4444
registry: ghcr.io
4545
username: ${{ github.actor }}
4646
password: ${{ secrets.GITHUB_TOKEN }}
4747
- name: Extract Docker metadata
4848
id: meta
49-
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
49+
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0
5050
with:
5151
images: ghcr.io/${{ github.repository }}-frontend
5252
tags: |
5353
type=raw,value=test
5454
- name: Build and push image
55-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
55+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
5656
with:
5757
context: frontend
5858
file: frontend/Dockerfile
@@ -86,22 +86,22 @@ jobs:
8686
- name: Package
8787
run: mvn -B -DskipTests package
8888
- name: Set up Docker Buildx
89-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
89+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
9090
- name: Log in to GHCR
91-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
91+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
9292
with:
9393
registry: ghcr.io
9494
username: ${{ github.actor }}
9595
password: ${{ secrets.GITHUB_TOKEN }}
9696
- name: Extract Docker metadata
9797
id: meta
98-
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
98+
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0
9999
with:
100100
images: ghcr.io/${{ github.repository }}-backend
101101
tags: |
102102
type=raw,value=test
103103
- name: Build and push image
104-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
104+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
105105
with:
106106
context: backend
107107
file: backend/Dockerfile

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.1.0] - 2026-06-02
11+
12+
### Added
13+
14+
- RDFA-513: Added User Settings Dialog and Settings ([7a914713](https://github.com/SOPTIM/RDFArchitect/commit/7a914713), [#118](https://github.com/SOPTIM/RDFArchitect/pull/118))
15+
- RDFA-381: Copy paste of classes ([c00558c9](https://github.com/SOPTIM/RDFArchitect/commit/c00558c9), [#93](https://github.com/SOPTIM/RDFArchitect/pull/93))
16+
- Fixes for run with docker compose ([dcf0bc47](https://github.com/SOPTIM/RDFArchitect/commit/dcf0bc47), [#116](https://github.com/SOPTIM/RDFArchitect/pull/116))
17+
- RDFA-243: Add toast notifications for user feedback across app ([0c3fb043](https://github.com/SOPTIM/RDFArchitect/commit/0c3fb043), [#124](https://github.com/SOPTIM/RDFArchitect/pull/124))
18+
- RDFA-113: Automatic extension of classes ([4a2676fb](https://github.com/SOPTIM/RDFArchitect/commit/4a2676fb), [#122](https://github.com/SOPTIM/RDFArchitect/pull/122))
19+
- RDFA-364: Add custom diagrams ([70641ec3](https://github.com/SOPTIM/RDFArchitect/commit/70641ec3), [#71](https://github.com/SOPTIM/RDFArchitect/pull/71))
20+
- Make Enter key reliably trigger primary action in all dialogs ([ef3a9e83](https://github.com/SOPTIM/RDFArchitect/commit/ef3a9e83), [#121](https://github.com/SOPTIM/RDFArchitect/pull/121))
21+
- RDFA-437: Use ENTSO-E application-profiles-library as submodule ([9f1eb336](https://github.com/SOPTIM/RDFArchitect/commit/9f1eb336), [#109](https://github.com/SOPTIM/RDFArchitect/pull/109))
22+
- RDFA-419: Add workflow to automate changelog updates ([5bfdb56b](https://github.com/SOPTIM/RDFArchitect/commit/5bfdb56b), [#112](https://github.com/SOPTIM/RDFArchitect/pull/112))
23+
- RDFA-504: Added config to set default stereotypes and namspaces ([78305671](https://github.com/SOPTIM/RDFArchitect/commit/78305671), [#106](https://github.com/SOPTIM/RDFArchitect/pull/106))
24+
- RDFA-321: Support RDF blank nodes in attribute editor for fixed and default values ([839bd5e1](https://github.com/SOPTIM/RDFArchitect/commit/839bd5e1), [#22](https://github.com/SOPTIM/RDFArchitect/pull/22))
25+
- RDFA-136: Show references on delete and allow selective deleting ([ef1d6ada](https://github.com/SOPTIM/RDFArchitect/commit/ef1d6ada), [#82](https://github.com/SOPTIM/RDFArchitect/pull/82))
26+
- RDFA-434: Z-index for svelteflow Diagram ([b4bf26d4](https://github.com/SOPTIM/RDFArchitect/commit/b4bf26d4), [#83](https://github.com/SOPTIM/RDFArchitect/pull/83))
27+
28+
### Changed
29+
30+
- RDFA-410: Add Developer Certificate of Origin ([8ddfd6f2](https://github.com/SOPTIM/RDFArchitect/commit/8ddfd6f2), [#108](https://github.com/SOPTIM/RDFArchitect/pull/108))
31+
- RDFA-501: Enhance documentation ([ef7203ff](https://github.com/SOPTIM/RDFArchitect/commit/ef7203ff), [#101](https://github.com/SOPTIM/RDFArchitect/pull/101))
32+
- RDFA-439: Remove uuids from frontend ([770d11a6](https://github.com/SOPTIM/RDFArchitect/commit/770d11a6), [#84](https://github.com/SOPTIM/RDFArchitect/pull/84))
33+
- Add bachelors thesis to repo ([6dd16b23](https://github.com/SOPTIM/RDFArchitect/commit/6dd16b23), [#94](https://github.com/SOPTIM/RDFArchitect/pull/94))
34+
- Fix deploy workflow ([e15569aa](https://github.com/SOPTIM/RDFArchitect/commit/e15569aa), [#96](https://github.com/SOPTIM/RDFArchitect/pull/96))
35+
- RDFA-497: Add documentation website ([c23ee085](https://github.com/SOPTIM/RDFArchitect/commit/c23ee085), [#95](https://github.com/SOPTIM/RDFArchitect/pull/95))
36+
- Add GitHub PR validation workflows ([0d900d61](https://github.com/SOPTIM/RDFArchitect/commit/0d900d61), [#86](https://github.com/SOPTIM/RDFArchitect/pull/86))
37+
38+
### Fixed
39+
40+
- RDFA-576: Corrected the multiplicity rendering order ([218dea2c](https://github.com/SOPTIM/RDFArchitect/commit/218dea2c), [#131](https://github.com/SOPTIM/RDFArchitect/pull/131))
41+
- RDFA-496: Fixed SearchableSelect valid input behaviour and state handling ([64d0ea94](https://github.com/SOPTIM/RDFArchitect/commit/64d0ea94), [#117](https://github.com/SOPTIM/RDFArchitect/pull/117))
42+
- Remove ref specification in checkout step ([b729f06b](https://github.com/SOPTIM/RDFArchitect/commit/b729f06b), [#127](https://github.com/SOPTIM/RDFArchitect/pull/127))
43+
- RDFA-529: Class context menu actions ([6cbdd1ef](https://github.com/SOPTIM/RDFArchitect/commit/6cbdd1ef), [#114](https://github.com/SOPTIM/RDFArchitect/pull/114))
44+
- RDFA-507: Fixed that self associations double on class change save ([d6d1c07d](https://github.com/SOPTIM/RDFArchitect/commit/d6d1c07d), [#115](https://github.com/SOPTIM/RDFArchitect/pull/115))
45+
- Update empty state text for schema import prompt ([873bda7e](https://github.com/SOPTIM/RDFArchitect/commit/873bda7e), [#110](https://github.com/SOPTIM/RDFArchitect/pull/110))
46+
- RDFA-450: Render associations on the same class ([2e5b1719](https://github.com/SOPTIM/RDFArchitect/commit/2e5b1719), [#104](https://github.com/SOPTIM/RDFArchitect/pull/104))
47+
- RDFA-502: Add custom shacl to graph context ([54c29adb](https://github.com/SOPTIM/RDFArchitect/commit/54c29adb), [#105](https://github.com/SOPTIM/RDFArchitect/pull/105))
48+
- RDFA-481: Support packages without Package_ prefix ([e3740973](https://github.com/SOPTIM/RDFArchitect/commit/e3740973), [#78](https://github.com/SOPTIM/RDFArchitect/pull/78))
49+
- RDFA-449: Association IRI violation checks ([353d8e42](https://github.com/SOPTIM/RDFArchitect/commit/353d8e42), [#75](https://github.com/SOPTIM/RDFArchitect/pull/75))
50+
- Diagram reload UX and removed deprecated file database backend ([87852733](https://github.com/SOPTIM/RDFArchitect/commit/87852733), [#102](https://github.com/SOPTIM/RDFArchitect/pull/102))
51+
- RDFA-96: Classes are now opened in the class editor on creation ([ad5e4450](https://github.com/SOPTIM/RDFArchitect/commit/ad5e4450), [#92](https://github.com/SOPTIM/RDFArchitect/pull/92))
52+
1053
## [1.0.0] - 2026-04-24
1154

1255
### Added
@@ -81,7 +124,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
81124
- RDFA-192: Navigation entries are now sorted alphabetically ([1f90af0f](https://github.com/SOPTIM/RDFArchitect/commit/1f90af0f), [#12](https://github.com/SOPTIM/RDFArchitect/pull/12))
82125
- RDFA-267: Updated GitHub Links in Help menu bar ([e301d52f](https://github.com/SOPTIM/RDFArchitect/commit/e301d52f), [#25](https://github.com/SOPTIM/RDFArchitect/pull/25))
83126

84-
85127
### Fixed
86128

87129
- RDFA-393: Enhance concurrency handling in `GraphRewindableTest` ([15172067](https://github.com/SOPTIM/RDFArchitect/commit/15172067), [#4](https://github.com/SOPTIM/RDFArchitect/pull/4))

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ COPY src ./src
1010
RUN mvn clean package -DskipTests
1111

1212
# ---------- Runtime stage ----------
13-
FROM eclipse-temurin:25.0.2_10-jre
13+
FROM eclipse-temurin:25.0.3_9-jre
1414

1515
ARG APP_VERSION=""
1616

backend/LICENSES-THIRD-PARTY.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414

1515
### Apache Jena - Extras - Query Builder
1616
- **Package:** org.apache.jena
17-
- **Version:** 6.0.0
17+
- **Version:** 6.1.0
1818
- **License:** Apache License 2.0
1919
- **URL:** [https://jena.apache.org/jena-querybuilder/](https://jena.apache.org/jena-querybuilder/)
2020

2121
### Apache Jena - Libraries POM
2222
- **Package:** org.apache.jena
23-
- **Version:** 6.0.0
23+
- **Version:** 6.1.0
2424
- **License:** Apache License 2.0
2525
- **URL:** [https://jena.apache.org/apache-jena-libs/](https://jena.apache.org/apache-jena-libs/)
2626

@@ -50,43 +50,43 @@
5050

5151
### spring-boot-starter
5252
- **Package:** org.springframework.boot
53-
- **Version:** 4.0.5
53+
- **Version:** 4.0.6
5454
- **License:** Apache License 2.0
5555
- **URL:** [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot)
5656

5757
### spring-boot-starter-log4j2
5858
- **Package:** org.springframework.boot
59-
- **Version:** 4.0.5
59+
- **Version:** 4.0.6
6060
- **License:** Apache License 2.0
6161
- **URL:** [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot)
6262

6363
### spring-boot-starter-test
6464
- **Package:** org.springframework.boot
65-
- **Version:** 4.0.5
65+
- **Version:** 4.0.6
6666
- **License:** Apache License 2.0
6767
- **URL:** [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot)
6868

6969
### spring-boot-starter-thymeleaf
7070
- **Package:** org.springframework.boot
71-
- **Version:** 4.0.5
71+
- **Version:** 4.0.6
7272
- **License:** Apache License 2.0
7373
- **URL:** [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot)
7474

7575
### spring-boot-starter-webflux
7676
- **Package:** org.springframework.boot
77-
- **Version:** 4.0.5
77+
- **Version:** 4.0.6
7878
- **License:** Apache License 2.0
7979
- **URL:** [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot)
8080

8181
### spring-boot-starter-webmvc
8282
- **Package:** org.springframework.boot
83-
- **Version:** 4.0.5
83+
- **Version:** 4.0.6
8484
- **License:** Apache License 2.0
8585
- **URL:** [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot)
8686

8787
### spring-session-core
8888
- **Package:** org.springframework.session
89-
- **Version:** 4.0.2
89+
- **Version:** 4.0.3
9090
- **License:** Apache License 2.0
9191
- **URL:** [https://spring.io/projects/spring-session](https://spring.io/projects/spring-session)
9292

@@ -104,7 +104,7 @@
104104

105105
### Project Lombok
106106
- **Package:** org.projectlombok
107-
- **Version:** 1.18.44
107+
- **Version:** 1.18.46
108108
- **License:** MIT License
109109
- **URL:** [https://projectlombok.org](https://projectlombok.org)
110110

backend/pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@
2828
<maven.compiler.release>25</maven.compiler.release>
2929
<maven-compiler-plugin.version>3.15.0</maven-compiler-plugin.version>
3030
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
31-
<surefire-plugin.version>3.5.5</surefire-plugin.version> <!-- 3.3.0 -->
31+
<surefire-plugin.version>3.5.6</surefire-plugin.version> <!-- 3.3.0 -->
3232
<jacoco.version>0.8.14</jacoco.version> <!-- 0.8.12 -->
3333
<git-commit-id-maven-plugin.version>10.0.0</git-commit-id-maven-plugin.version>
3434
<mycila-license-plugin.version>5.0.0</mycila-license-plugin.version>
35-
<spotless-maven-plugin.version>3.4.0</spotless-maven-plugin.version>
35+
<spotless-maven-plugin.version>3.5.1</spotless-maven-plugin.version>
3636
<google-java-format.version>1.35.0</google-java-format.version>
3737
<maven-checkstyle-plugin.version>3.6.0</maven-checkstyle-plugin.version>
38-
<checkstyle.version>13.4.0</checkstyle.version>
38+
<checkstyle.version>13.4.2</checkstyle.version>
3939
<spotbugs-maven-plugin.version>4.9.8.3</spotbugs-maven-plugin.version>
4040
<org.mapstruct.version>1.6.3</org.mapstruct.version>
4141
<lombok-mapstruct-binding.version>0.2.0</lombok-mapstruct-binding.version>
42-
<lombok.version>1.18.44</lombok.version>
42+
<lombok.version>1.18.46</lombok.version>
4343
</properties>
4444
<build>
4545
<plugins>
@@ -318,19 +318,19 @@
318318
<parent>
319319
<groupId>org.springframework.boot</groupId>
320320
<artifactId>spring-boot-starter-parent</artifactId>
321-
<version>4.0.5</version>
321+
<version>4.0.6</version>
322322
</parent>
323323
<dependencies>
324324
<dependency>
325325
<groupId>org.apache.jena</groupId>
326326
<artifactId>apache-jena-libs</artifactId>
327327
<type>pom</type>
328-
<version>6.0.0</version>
328+
<version>6.1.0</version>
329329
</dependency>
330330
<dependency>
331331
<groupId>org.apache.jena</groupId>
332332
<artifactId>jena-querybuilder</artifactId>
333-
<version>6.0.0</version>
333+
<version>6.1.0</version>
334334
</dependency>
335335
<dependency>
336336
<groupId>org.apache.commons</groupId>
@@ -352,7 +352,7 @@
352352
<dependency>
353353
<groupId>org.springframework.boot</groupId>
354354
<artifactId>spring-boot-starter-webflux</artifactId>
355-
<version>4.0.5</version>
355+
<version>4.0.6</version>
356356
</dependency>
357357
<dependency>
358358
<groupId>org.springframework.boot</groupId>
@@ -371,7 +371,7 @@
371371
<dependency>
372372
<groupId>org.springframework.boot</groupId>
373373
<artifactId>spring-boot-starter-test</artifactId>
374-
<version>4.0.5</version>
374+
<version>4.0.6</version>
375375
</dependency>
376376

377377
<dependency>
@@ -401,7 +401,7 @@
401401
<dependency>
402402
<groupId>org.projectlombok</groupId>
403403
<artifactId>lombok</artifactId>
404-
<version>1.18.44</version>
404+
<version>1.18.46</version>
405405
<scope>provided</scope>
406406
</dependency>
407407

0 commit comments

Comments
 (0)