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

Springboot 3.3.3 migration #41

Closed
wants to merge 52 commits into from
Closed
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
2f5e41d
Refactor duplication endpoint
anistouri Apr 17, 2024
4e225e5
Fix TU
anistouri Apr 18, 2024
5a13fc9
Code refactoring
anistouri Apr 24, 2024
3075cda
remove whitespace
anistouri Apr 24, 2024
7f458a3
Merge pull request #28 from powsybl/refactor-duplication-elements
anistouri May 2, 2024
35106ac
Parent 19: update liquibase maven plugin
anistouri May 3, 2024
7ba466c
Merge pull request #32 from powsybl/upgrade-to-parent-19
anistouri May 3, 2024
c200713
Update to powsybl dependencies 2024.1.0 (#31)
etiennehomer May 17, 2024
933e75d
Enable Prometheus in every microservice (#33)
antoinebhs May 29, 2024
93b531c
Fix case names when exported
achour94 Jun 10, 2024
700852a
Fix case names when exported
achour94 Jun 10, 2024
92d5796
Fix case names when exported
achour94 Jun 14, 2024
40e669e
Fix case names when exported #34
achour94 Jun 14, 2024
ca90c16
update to powsybl-ws-dependencies v2.11.0 (#35)
AbdelHedhili Jun 14, 2024
d3b815d
replace OffsetDateTime with Instant
anistouri Jun 20, 2024
17b5b1f
add comment
anistouri Jun 20, 2024
7438f1d
Merge pull request #36 from powsybl/replace-LocalDateTime-by-Instant
anistouri Jun 20, 2024
6b5761c
refactor
souissimai Jul 17, 2024
abd04b8
upgrade to powsybl-dependencies 2024.2.0
FranckLecuyer Jul 22, 2024
3b1f5b2
Merge pull request #37 from powsybl/rename_file_when_converting_case
souissimai Jul 22, 2024
bbe78ca
Merge pull request #38 from powsybl/upgrade_to_powsybl_dependencies_2…
FranckLecuyer Jul 29, 2024
49f5a76
add indexed attribute
jamal-khey Jul 29, 2024
eb50035
index only elements marked for indexation
jamal-khey Jul 29, 2024
3faccb1
fix syles
jamal-khey Jul 30, 2024
397d9c4
add delete index
jamal-khey Jul 31, 2024
4fb0ead
renaming endpoints
jamal-khey Jul 31, 2024
dff6051
add tests
jamal-khey Aug 1, 2024
f8761fa
fix old tests
jamal-khey Aug 5, 2024
82643ee
add tests for supervision controller
jamal-khey Aug 5, 2024
eab35af
Merge branch 'refs/heads/main' into jamalkhey/disable-auto-case-index…
jamal-khey Aug 5, 2024
66fafa8
clean conde
jamal-khey Aug 5, 2024
571a851
check styles
jamal-khey Aug 5, 2024
4abc90c
split test
jamal-khey Aug 5, 2024
d787751
split test
jamal-khey Aug 5, 2024
51bbe76
split test
jamal-khey Aug 5, 2024
11f42d1
assert queues are empty after each test
jamal-khey Aug 6, 2024
809b620
clean code
jamal-khey Aug 6, 2024
cb26803
impove test and coverage
jamal-khey Aug 6, 2024
5524154
fix review comments
jamal-khey Aug 14, 2024
9f80c67
fix review comments
jamal-khey Aug 16, 2024
d4f5b02
remove any ref to elements
jamal-khey Aug 19, 2024
08a7a2d
throw NOT_Found
jamal-khey Aug 19, 2024
e821fe6
extract getCaseMetaDataEntity into a function
jamal-khey Aug 20, 2024
0f911ae
Review
jamal-khey Aug 16, 2024
b9d7b67
Merge pull request #39 from powsybl/jamalkhey/disable-auto-case-index…
jamal-khey Aug 21, 2024
256056c
fix a bug affecting duplication of non indexed cases
jamal-khey Aug 21, 2024
7b716f1
fix review comments
jamal-khey Aug 22, 2024
80f06cb
Merge pull request #40 from powsybl/jamal-khey/fix-duplication-on-non…
jamal-khey Aug 22, 2024
2c2741e
Springboot 3.3.2 migration
Sep 2, 2024
c7be03f
change ws dependencies version
Sep 6, 2024
e1e9f74
Merge branch 'main' into springboot_3.3.2_migration
Sep 18, 2024
da27831
fix merge
Sep 18, 2024
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
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>com.powsybl</groupId>
<artifactId>powsybl-parent-ws</artifactId>
<version>19</version>
<version>20</version>
<relativePath/>
</parent>

Expand Down Expand Up @@ -48,7 +48,7 @@

<mockito-inline.version>3.11.1</mockito-inline.version>
<log4j2-mock-version>0.0.2</log4j2-mock-version>
<powsybl-ws-dependencies.version>2.12.0</powsybl-ws-dependencies.version>
<powsybl-ws-dependencies.version>2.14.0</powsybl-ws-dependencies.version>
<testcontainers.version>1.18.3</testcontainers.version>
</properties>

Expand Down
Loading