Scott Frederick
289f3f9e51
Polish "Add How-To documentation for ManagedClassNameFilter"
...
See gh-40617
2024-05-03 10:46:38 -05:00
Stéphane Nicoll
d945443f1f
Add How-To documentation for ManagedClassNameFilter
...
This commit documents the support of ManagedClassNameFilter that was
added in gh-39813.
See gh-40617
2024-05-03 10:44:26 -05:00
Brian Clozel
5ac1801726
Upgrade to GraphQL Java 22.0
...
Closes gh-40618
2024-05-03 15:03:59 +02:00
Phillip Webb
208efae975
Merge branch '3.2.x'
...
Closes gh-40616
2024-05-02 15:53:38 -07:00
Phillip Webb
d0ce4daec1
Use URI encoded values when creating NestedPath URIs
...
Update `NestedPath.toUri()` so that the URI is constructed using encoded
strings.
Fixes gh-40615
2024-05-02 15:53:01 -07:00
Moritz Halbritter
d3e49747b0
Merge branch '3.2.x'
2024-05-02 14:48:37 +02:00
Moritz Halbritter
75dac1435f
Merge branch '3.1.x' into 3.2.x
2024-05-02 14:48:04 +02:00
Moritz Halbritter
68a63a7797
Polish
2024-05-02 14:47:53 +02:00
Moritz Halbritter
f6b431eb4f
Merge branch '3.2.x'
2024-05-02 14:07:55 +02:00
Moritz Halbritter
516d3b1294
Test ANSI disabled in logging tests instead of integration tests
...
See gh-40172
2024-05-02 13:59:48 +02:00
Moritz Halbritter
6697db257c
Merge branch '3.2.x'
...
Closes gh-40614
2024-05-02 11:56:21 +02:00
Moritz Halbritter
2183b47e62
Merge branch '3.1.x' into 3.2.x
...
Closes gh-40612
2024-05-02 11:53:21 +02:00
Andy Wilkinson
c44e477a77
Merge branch '3.2.x'
...
Closes gh-40613
2024-05-02 10:49:55 +01:00
Andy Wilkinson
94c9a5c686
Polish
2024-05-02 10:49:31 +01:00
Moritz Halbritter
1534bc8ad2
Polish "Avoid using OkHttp3ClientHttpRequestFactory in test"
...
See gh-40611
2024-05-02 11:45:23 +02:00
Stéphane Nicoll
20042576e9
Avoid using OkHttp3ClientHttpRequestFactory in test
...
See gh-40611
2024-05-02 11:45:20 +02:00
Andy Wilkinson
c7ec6080ce
Publish a runtime variant that supports Java 22
...
In order to support Java 22, we must use spring-core 6.1.x.
spring-core 6.1.x is a multi-release jar so, in order to support Java
22, a version of Gradle that supports multi-release jars must be
used.
This commit adds a new variant to spring-boot-gradle-plugin for
modern versions of Gradle. When Gradle's plugin API version is 8.7 or
later, we use spring-core 6.1.x. spring-core 6.0.x is used at all
other times.
Closes gh-40074
2024-05-02 10:45:18 +01:00
Moritz Halbritter
16291b0fcf
Merge branch '3.2.x'
...
Closes gh-40609
2024-05-02 11:30:09 +02:00
Moritz Halbritter
713f4f2292
Polish "Fix broken AnsiOutput.detectIfAnsiCapable on JDK22"
...
See gh-40172
2024-05-02 11:27:55 +02:00
facewise
1f9b62b122
Fix broken AnsiOutput.detectIfAnsiCapable on JDK22
...
See gh-40172
2024-05-02 11:03:06 +02:00
Moritz Halbritter
59dd34f7fc
Merge branch '3.2.x'
...
Closes gh-40608
2024-05-02 11:01:11 +02:00
Moritz Halbritter
46ab60cc43
Merge branch '3.1.x' into 3.2.x
...
Closes gh-40607
2024-05-02 10:59:43 +02:00
Dave Syer
421b8e23c4
Clarify devtools restart class loader documentation
...
See gh-40604
2024-05-02 10:58:30 +02:00
Moritz Halbritter
51b8b992aa
Merge branch '3.2.x'
...
Closes gh-40606
2024-05-02 10:51:24 +02:00
Moritz Halbritter
888ae040e4
Merge branch '3.1.x' into 3.2.x
...
Closes gh-40605
2024-05-02 10:51:10 +02:00
Moritz Halbritter
64b302032c
Polish "Change Spring Boot CLI init command docs default build system to gradle"
...
See gh-40603
2024-05-02 10:49:51 +02:00
coursar
1a786fc788
Change Spring Boot CLI init command docs default build system to gradle
...
See gh-40603
2024-05-02 10:44:33 +02:00
Johnny Lim
9eeddbe89e
Add metadata for default value of management.zipkin.tracing.encoding
...
See gh-40588
2024-05-02 09:46:53 +02:00
Phillip Webb
ad7ab41742
Merge branch '3.2.x'
...
Closes gh-40601
2024-05-01 22:57:08 -07:00
Phillip Webb
93728cdfb1
Merge branch '3.1.x' into 3.2.x
...
Closes gh-40600
2024-05-01 22:55:30 -07:00
Johnny Lim
f0fcc92b49
Remove reassignments for builders in GraphQL auto-configurations
...
See gh-40590
2024-05-01 22:51:19 -07:00
Phillip Webb
63dedaafe0
Merge branch '3.2.x'
...
Closes gh-40599
2024-05-01 22:46:53 -07:00
yokotaso
5b4bd61720
Fix possible NullPointerException from getPermission()
...
Fix regression in `JarUrlConnection` where a NullPointerException could
be thrown internally causing performance issues.
When the SecurityManager is present, the following stack trace is
thrown:
java.lang.NullPointerException: Cannot invoke "java.net.URLConnection.getPermission()" because "this.jarFileConnection" is null
at org.springframework.boot.loader.net.protocol.jar.JarUrlConnection.getPermission(JarUrlConnection.java:175)
at java.base/jdk.internal.loader.URLClassPath.check(URLClassPath.java:553)
at java.base/jdk.internal.loader.URLClassPath$Loader.findResource(URLClassPath.java:612)
at java.base/jdk.internal.loader.URLClassPath.findResource(URLClassPath.java:296)
at java.base/java.net.URLClassLoader$2.run(URLClassLoader.java:629)
at java.base/java.net.URLClassLoader$2.run(URLClassLoader.java:627)
at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
at java.base/java.net.URLClassLoader.findResource(URLClassLoader.java:626)
at org.springframework.boot.loader.net.protocol.jar.JarUrlClassLoader.findResource(JarUrlClassLoader.java:70)
at java.base/java.lang.ClassLoader.getResource(ClassLoader.java:1403)
at java.base/java.net.URLClassLoader.getResourceAsStream(URLClassLoader.java:290)
at java.base/java.lang.Class.getResourceAsStream(Class.java:2850)
See gh-39856
2024-05-01 22:42:52 -07:00
Phillip Webb
ff5c2a2351
Improve javadoc cleanup to remove duplicate spaces
...
Improve `TypeUtils` so that repeated space chars are removed.
Fixes gh-40593
2024-05-01 22:37:10 -07:00
Moritz Halbritter
d0421fa2d6
Merge branch '3.2.x'
...
Closes gh-40584
2024-04-30 15:11:48 +02:00
Moritz Halbritter
a6dd8b71bd
Add exception and failure analyzer for missing AOT initializer
...
The diagnostics text include the name of the AOT initializer class and
the main class name. It also tells the user how to switch of the AOT
mode.
Closes gh-38645
2024-04-30 15:11:32 +02:00
Scott Frederick
c6c02906ef
Merge branch '3.2.x'
...
Closes gh-40577
2024-04-29 16:43:20 -05:00
Scott Frederick
21a0bc7fee
Merge branch '3.1.x' into 3.2.x
...
Closes gh-40576
2024-04-29 16:42:53 -05:00
Johnny Lim
e2973a90a8
Use ConcurrentHashMap.newKeySet where feasible
...
See gh-40567
2024-04-29 15:41:37 -05:00
Moritz Halbritter
6c154789f5
Merge branch '3.2.x'
...
Closes gh-40565
2024-04-29 12:00:42 +02:00
Moritz Halbritter
7ac0d0cde6
Merge branch '3.1.x' into 3.2.x
...
Closes gh-40564
2024-04-29 11:56:32 +02:00
Moritz Halbritter
d716d99d1b
Note that Docker Compose is excluded by default from packaged jars
...
Closes gh-40556
2024-04-29 11:54:17 +02:00
Moritz Halbritter
1f80f72a73
Merge branch '3.2.x'
...
Closes gh-40561
2024-04-29 10:14:17 +02:00
Moritz Halbritter
be5039041c
Defer creation of maps in MapBinder
...
Closes gh-39375
2024-04-29 10:07:40 +02:00
Moritz Halbritter
12cfb1fd2f
Merge branch '3.2.x'
...
Closes gh-40560
2024-04-29 10:04:32 +02:00
Moritz Halbritter
8a3b0cd221
Throw dedicated exception if bundle content is not watchable
...
This also adds a FailureAnalyzer which prints a helpful message how to
fix that problem.
Closes gh-38903
2024-04-29 09:46:19 +02:00
Scott Frederick
3c00bf367d
Adapt to changes in Logback include processing
...
Fixes gh-40491
2024-04-26 13:33:51 -05:00
Andy Wilkinson
76380ddbeb
Merge branch '3.2.x'
...
Closes gh-40535
2024-04-26 14:04:26 +01:00
Andy Wilkinson
960f020a18
Merge branch '3.1.x' into 3.2.x
...
Closes gh-40534
2024-04-26 14:02:52 +01:00
Andy Wilkinson
95eb9bd7dc
Allow s-b-dependencies to be used when ojdbc-bom is banned
...
Closes gh-39945
2024-04-26 14:02:00 +01:00