-
Notifications
You must be signed in to change notification settings - Fork 8
refactor: spring boot 버전 업에 관한 레거시 변경 및 제거 #710
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
Merged
Merged
Changes from 9 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
09ec53f
refactor: Java, SpringBoot 버전 업 & JJWT 버전 업 (#702)
sukangpunch d0f9ccb
refactor: ANT_PATH_MATCHER 삭제
whqtker d711528
refactor: min-spare 잘못된 prefix 변경
whqtker 9579e54
refactor: spring.jpa.database 설정 삭제
whqtker 50be751
refactor: spring.datasource.driverClassName 삭제
whqtker 43e5633
refactor: JJWT 버전 업에 따른 패키지 임포트 변경
whqtker 37d4e44
refactor: cloud.aws.stack.auto 제거
whqtker cb3df94
refactor: parameter store 의존성 버전 제거
whqtker 9f2521c
refactor: redis deprecated 생성자 교체
whqtker 6b2f85d
test: 테스트 환경에서 파라미터 스토어 구성 비활성화
whqtker e31f41b
docs: 스프링부트 버전 수정
whqtker File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,8 +2,3 @@ spring: | |
| config: | ||
| activate: | ||
| on-profile: local, dev, prod, loadtest | ||
|
|
||
| cloud: | ||
| aws: | ||
| stack: | ||
| auto: false | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
What is the latest stable version of Spring Boot 3.5.x as of April 2026?💡 Result:
The latest stable version of Spring Boot 3.5.x as of April 2, 2026, is 3.5.13.
Citations:
🌐 Web query:
Flyway 10.15.0 release notes breaking changes from 9.x to 10.x💡 Result:
Flyway 10.15.0 has no breaking changes listed in its release notes. The breaking changes from Flyway 9.x to 10.x occurred primarily in Flyway 10.0.0 and subsequent minor releases within the 10.x series. Key breaking changes for the 9.x to 10.x upgrade: - Removed deprecated flyway.check.reportFilename; use flyway.reportFilename instead. Report generation is now off by default (enable with reportEnabled). - 'SQL' folder removed as a default location for migration scripts (bad practice; specify locations explicitly). - flyway.plugins parameter namespace retired (backwards compatible but deprecate usage; e.g., flyway.plugins.clean -> sqlserver.clean.mode). - Database modules separated from flyway-core into individual modules (update dependencies for affected databases). - For Redgate distribution: licenseKey, undoSqlMigrationPrefix, and cherryPick configurations moved. - cherryPick now requires a configuration extension object via plugin registry (API users). - License key logic moved to 'flyway-key-licensing' module. Flyway 10.15.0 (2024-06-11) notes only bug fixes and minor changes, no breaking changes. Sources: Official Redgate Flyway release notes, upgrade guide, and V10 announcement.
Citations:
🌐 Web query:
Spring dependency-management plugin 1.1.7 latest version💡 Result:
The latest version of the Spring Dependency Management Plugin (io.spring.dependency-management) is 1.1.7, released on December 17, 2024. This is confirmed by the official Gradle Plugin Portal, Maven Central repositories, the plugin's documentation, and the GitHub releases page. As of 2026-04-02, no newer version is indicated in these authoritative sources.
Citations:
🏁 Script executed:
Repository: solid-connection/solid-connect-server
Length of output: 1414
🌐 Web query:
Testcontainers 2.0.2 release latest version💡 Result:
The latest version of Testcontainers for Java is 2.0.4, released on 2026-03-19. Testcontainers 2.0.2 was released on 2025-11-13. As of 2026-04-02, 2.0.4 is the most recent release, confirmed by the official documentation, GitHub releases, and Maven repositories.
Citations:
플러그인 버전 확인 및 업데이트 제안
확인 결과, 명시된 모든 버전이 실제로 존재하며 안정적입니다. 다만 다음과 같은 점들을 고려해 주세요:
Spring Boot 3.5.11 → 3.5.13 업데이트 권장
Spring Dependency Management 1.1.7
Flyway 10.15.0 마이그레이션 주의
Testcontainers 2.0.2 → 2.0.4 업데이트 권장
🤖 Prompt for AI Agents