Moritz Halbritter
d6f682da7e
Polish JavaBeanBinder
...
Closes gh-33762
2 years ago
Scott Frederick
2ddb490290
Polish Paketo builder integration test native app
2 years ago
Andy Wilkinson
433364601d
Merge branch '2.7.x'
2 years ago
Andy Wilkinson
3b2e5e5292
Remove references to https://repo.spring.io/release
2 years ago
Andy Wilkinson
4c62de1710
Merge branch '2.7.x'
...
Closes gh-33764
2 years ago
Andy Wilkinson
a8da4e1004
Upgrade to Asciidoctor Backends 0.0.4
...
Closes gh-33761
2 years ago
Moritz Halbritter
b9ae61fc10
Disable devtools when running in a native image
...
See gh-32853
2 years ago
Moritz Halbritter
5789bc9797
Merge pull request #33749 from qyqcswill
...
* pr/33749:
Fix docs with repeated words
Closes gh-33749
2 years ago
Andy Wilkinson
9661774e63
Merge branch '2.7.x'
2 years ago
Andy Wilkinson
809c220849
Fix releasescripts tests
...
Update the tests to align them with the changes made to move from
https://repo.spring.io/release to Maven Central in b0e07314
.
See gh-33708
2 years ago
qyqcswill
7afc42392a
Fix docs with repeated words
...
See gh-33749
2 years ago
Andy Wilkinson
dfc8642253
Merge branch '2.7.x'
...
Closes gh-33757
2 years ago
Andy Wilkinson
985094d33d
Upgrade to Spring Asciidoctor Extensions 0.6.1
...
Closes gh-33744
2 years ago
Moritz Halbritter
52760f6b78
Merge branch '2.7.x'
...
Closes gh-33756
2 years ago
Moritz Halbritter
0237351fd0
Merge pull request #33736 from yyjstudy
...
* pr/33736:
Fix duplicate 'the' typo
Closes gh-33736
2 years ago
Yongjo Lee
0440e5d1ac
Fix duplicate 'the' typo
...
See gh-33736
2 years ago
Moritz Halbritter
ff3b0de02f
Merge branch '2.7.x'
...
Closes gh-33755
2 years ago
Moritz Halbritter
71a6e564be
Merge pull request #33751 from sdeleuze
...
* pr/33751:
Fix typo in class name MultipleConnectionPoolConfigurationsFailureAnalzyer
Closes gh-33751
2 years ago
Sébastien Deleuze
4466bffe52
Fix typo in class name MultipleConnectionPoolConfigurationsFailureAnalzyer
...
See gh-33751
2 years ago
Moritz Halbritter
e45b47565c
Use Threadlocal.remove instead of .set(null)
...
See https://github.com/spring-cloud/spring-cloud-sleuth/issues/27 for
reference.
2 years ago
Moritz Halbritter
887c00e9fc
Polish OutputCapture
2 years ago
Moritz Halbritter
46f09be1c0
Merge branch '2.7.x'
...
Closes gh-33753
2 years ago
Moritz Halbritter
0c65c41adf
Polish
2 years ago
Moritz Halbritter
7a148747a0
Fix NPE in RabbitProperties if user is given but password is not
...
Closes gh-33752
2 years ago
Moritz Halbritter
fe1c1edcd4
Change transient to volatile in CompositeHandlerExceptionResolver
2 years ago
Moritz Halbritter
90a6d514a3
Fix assertions in ValidationAutoConfigurationTests
2 years ago
Moritz Halbritter
c5b5449a07
Fix assertions in ThreadDumpEndpointTests
2 years ago
Moritz Halbritter
17d4fb1e60
Fix HTTP/2 documentation
...
Closes gh-33734
2 years ago
Phillip Webb
29b7c121fb
Merge branch '2.7.x'
...
Closes gh-33739
2 years ago
Phillip Webb
a369f936c9
Replace references to Pivotal
...
Closes gh-33737
2 years ago
Phillip Webb
99a90906ab
Merge branch '2.7.x'
2 years ago
Phillip Webb
eab4873d7d
Remove unused email CI parameters
2 years ago
Phillip Webb
84b13f0748
Refine constructor detection logic when binding to existing values
...
Update `DefaultBindConstructorProvider` so that deduced constructors
are not used if there is an existing value.
Prior to this commit, constructor detection logic was not compatible
with earlier versions of Spring Boot. With Spring Boot 3.0.1, given
a class of the following form:
@ConfigurationProperties(prefix = "example")
public class ExampleProperties {
@NestedConfigurationProperty
private final NestedProperty nested = new NestedProperty(
"Default", "default");
public NestedProperty getNested() {
return nested;
}
}
If `NestedProperty` has a single constructor with arguments, constructor
binding would be used. In Spring Boot 2.x, setter injection would have
been used.
The updated code now only uses constructor injection if an explicit
`@ConstructorBinding` annotation is present, or if there is no existing
value.
Fixes gh-33409
See gh-33710
2 years ago
Phillip Webb
a2ac38e203
Update copyright year of changed files
2 years ago
Phillip Webb
1621cfd578
Merge branch '2.7.x'
2 years ago
Phillip Webb
80cfcb71ec
Update copyright year of changed files
2 years ago
Phillip Webb
232807d388
Increase block timeout
2 years ago
Phillip Webb
6a0a61f1ce
Refine EndpointRequest matcher `toString` and apply to reactive variant
...
Refine the recently introduced `EndpointRequest` matcher `toString()`
to use lower-case item names. Also applied the same logic to the
reactive variant.
See gh-33690
2 years ago
Moritz Halbritter
5a70422d1d
Add reference to Spring Authorization Server project
2 years ago
Moritz Halbritter
56b51d01a7
Clarify that AOT uses code generation
2 years ago
Moritz Halbritter
3c45a805f5
Polish documentation
2 years ago
Moritz Halbritter
648db6d1ea
Remove reference to spring-cli run command from documentation
2 years ago
Moritz Halbritter
9e414fa263
Update minimum required maven version to 3.5 in documentation
2 years ago
Moritz Halbritter
c0728e1288
Polish documentation
2 years ago
Moritz Halbritter
5a97c1493e
Update Java 11 to Java 17 in documentation
2 years ago
Moritz Halbritter
7922ac63bc
Polish documentation
2 years ago
Moritz Halbritter
1e70822adb
Fix javax with jakarta references in documentation
2 years ago
Moritz Halbritter
3b6b795c9f
Merge branch '2.7.x'
...
Closes gh-33729
2 years ago
Moritz Halbritter
29b7e518a5
Merge pull request #33690 from devrishal
...
* pr/33690:
Add toString method for EndpointRequestMatcher
Closes gh-33690
2 years ago
rishal
c84399e705
Add toString method for EndpointRequestMatcher
...
See gh-33690
2 years ago