-
Notifications
You must be signed in to change notification settings - Fork 4
Bump org.springframework.boot from 3.5.7 to 4.0.2 #325
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,5 @@ | ||
| rootProject.name = "batch-rest-repository" | ||
| rootProject.name = "batch-rest-repository" | ||
|
|
||
| dependencies { | ||
| runtimeOnly("com.fasterxml.jackson.core:jackson-annotations:2.21") | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,5 @@ | ||
| rootProject.name = "batch-skip-step" | ||
| rootProject.name = "batch-skip-step" | ||
|
|
||
| dependencies { | ||
| runtimeOnly("com.fasterxml.jackson.core:jackson-annotations:2.21") | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,5 @@ | ||
| rootProject.name = "cloud-jdbc-env-repo" | ||
| rootProject.name = "cloud-jdbc-env-repo" | ||
|
|
||
| dependencies { | ||
| runtimeOnly("org.springframework:spring-context:7.0.3") | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,9 @@ | ||
| app: | ||
| greet: | ||
| name: Default | ||
| app.greet.name: Default | ||
| spring: | ||
| application.name: demo | ||
| cloud.config.server: | ||
| bootstrap: true | ||
| jdbc: | ||
| sql: SELECT `KEY`, `VALUE` from PROPERTIES where APPLICATION=? and PROFILE=? and LABEL=? | ||
| sql-without-profile: SELECT `KEY`, `VALUE` from PROPERTIES where APPLICATION=? and PROFILE='default' and LABEL=? | ||
| profiles.active: jdbc | ||
|
Comment on lines
+1
to
+9
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The migration of configuration from |
||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,5 @@ | ||
| rootProject.name = "data-domain-events" | ||
| rootProject.name = "data-domain-events" | ||
|
|
||
| dependencies { | ||
| runtimeOnly("org.springframework:spring-context:7.0.3") | ||
| } |
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.
Changing the lambda parameter from
_toiis a good practice for clarity, even if the parameter is not directly used within the lambda body. It improves readability by explicitly naming the parameter, which can be helpful for future maintainers understanding the lambda's signature.