Commit Graph

40958 Commits

Author SHA1 Message Date
Andy Wilkinson
433364601d Merge branch '2.7.x' 2023-01-11 17:04:33 +00:00
Andy Wilkinson
3b2e5e5292 Remove references to https://repo.spring.io/release 2023-01-11 17:03:45 +00:00
Andy Wilkinson
4c62de1710 Merge branch '2.7.x'
Closes gh-33764
2023-01-11 17:03:17 +00:00
Andy Wilkinson
a8da4e1004 Upgrade to Asciidoctor Backends 0.0.4
Closes gh-33761
2023-01-11 17:02:39 +00:00
Moritz Halbritter
b9ae61fc10 Disable devtools when running in a native image
See gh-32853
2023-01-11 14:30:37 +01:00
Moritz Halbritter
5789bc9797 Merge pull request #33749 from qyqcswill
* pr/33749:
  Fix docs with repeated words

Closes gh-33749
2023-01-11 13:56:41 +01:00
Andy Wilkinson
9661774e63 Merge branch '2.7.x' 2023-01-11 12:52:09 +00:00
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
2023-01-11 12:51:55 +00:00
qyqcswill
7afc42392a Fix docs with repeated words
See gh-33749
2023-01-11 13:47:22 +01:00
Andy Wilkinson
dfc8642253 Merge branch '2.7.x'
Closes gh-33757
2023-01-11 12:45:32 +00:00
Andy Wilkinson
985094d33d Upgrade to Spring Asciidoctor Extensions 0.6.1
Closes gh-33744
2023-01-11 12:45:08 +00:00
Moritz Halbritter
52760f6b78 Merge branch '2.7.x'
Closes gh-33756
2023-01-11 13:42:11 +01:00
Moritz Halbritter
0237351fd0 Merge pull request #33736 from yyjstudy
* pr/33736:
  Fix duplicate 'the' typo

Closes gh-33736
2023-01-11 13:41:04 +01:00
Yongjo Lee
0440e5d1ac Fix duplicate 'the' typo
See gh-33736
2023-01-11 13:39:47 +01:00
Moritz Halbritter
ff3b0de02f Merge branch '2.7.x'
Closes gh-33755
2023-01-11 13:28:44 +01:00
Moritz Halbritter
71a6e564be Merge pull request #33751 from sdeleuze
* pr/33751:
  Fix typo in class name MultipleConnectionPoolConfigurationsFailureAnalzyer

Closes gh-33751
2023-01-11 13:25:20 +01:00
Sébastien Deleuze
4466bffe52 Fix typo in class name MultipleConnectionPoolConfigurationsFailureAnalzyer
See gh-33751
2023-01-11 13:24:01 +01:00
Moritz Halbritter
e45b47565c Use Threadlocal.remove instead of .set(null)
See https://github.com/spring-cloud/spring-cloud-sleuth/issues/27 for
reference.
2023-01-11 11:38:48 +01:00
Moritz Halbritter
887c00e9fc Polish OutputCapture 2023-01-11 11:37:00 +01:00
Moritz Halbritter
46f09be1c0 Merge branch '2.7.x'
Closes gh-33753
2023-01-11 11:30:37 +01:00
Moritz Halbritter
0c65c41adf Polish 2023-01-11 11:29:58 +01:00
Moritz Halbritter
7a148747a0 Fix NPE in RabbitProperties if user is given but password is not
Closes gh-33752
2023-01-11 11:13:51 +01:00
Moritz Halbritter
fe1c1edcd4 Change transient to volatile in CompositeHandlerExceptionResolver 2023-01-11 10:52:48 +01:00
Moritz Halbritter
90a6d514a3 Fix assertions in ValidationAutoConfigurationTests 2023-01-11 10:51:29 +01:00
Moritz Halbritter
c5b5449a07 Fix assertions in ThreadDumpEndpointTests 2023-01-11 10:48:57 +01:00
Moritz Halbritter
17d4fb1e60 Fix HTTP/2 documentation
Closes gh-33734
2023-01-10 16:01:13 +01:00
Phillip Webb
29b7c121fb Merge branch '2.7.x'
Closes gh-33739
2023-01-09 19:01:57 -08:00
Phillip Webb
a369f936c9 Replace references to Pivotal
Closes gh-33737
2023-01-09 18:09:20 -08:00
Phillip Webb
99a90906ab Merge branch '2.7.x' 2023-01-09 18:07:49 -08:00
Phillip Webb
eab4873d7d Remove unused email CI parameters 2023-01-09 18:02:41 -08:00
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
2023-01-09 16:57:56 -08:00
Phillip Webb
a2ac38e203 Update copyright year of changed files 2023-01-09 15:46:07 -08:00
Phillip Webb
1621cfd578 Merge branch '2.7.x' 2023-01-09 15:44:44 -08:00
Phillip Webb
80cfcb71ec Update copyright year of changed files 2023-01-09 15:18:10 -08:00
Phillip Webb
232807d388 Increase block timeout 2023-01-09 15:17:47 -08:00
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
2023-01-09 14:41:41 -08:00
Moritz Halbritter
5a70422d1d Add reference to Spring Authorization Server project 2023-01-09 15:26:40 +01:00
Moritz Halbritter
56b51d01a7 Clarify that AOT uses code generation 2023-01-09 15:26:20 +01:00
Moritz Halbritter
3c45a805f5 Polish documentation 2023-01-09 15:25:51 +01:00
Moritz Halbritter
648db6d1ea Remove reference to spring-cli run command from documentation 2023-01-09 15:25:27 +01:00
Moritz Halbritter
9e414fa263 Update minimum required maven version to 3.5 in documentation 2023-01-09 15:24:53 +01:00
Moritz Halbritter
c0728e1288 Polish documentation 2023-01-09 15:24:26 +01:00
Moritz Halbritter
5a97c1493e Update Java 11 to Java 17 in documentation 2023-01-09 15:24:16 +01:00
Moritz Halbritter
7922ac63bc Polish documentation 2023-01-09 15:23:27 +01:00
Moritz Halbritter
1e70822adb Fix javax with jakarta references in documentation 2023-01-09 12:46:02 +01:00
Moritz Halbritter
3b6b795c9f Merge branch '2.7.x'
Closes gh-33729
2023-01-09 12:39:42 +01:00
Moritz Halbritter
29b7e518a5 Merge pull request #33690 from devrishal
* pr/33690:
  Add toString method for EndpointRequestMatcher

Closes gh-33690
2023-01-09 12:39:32 +01:00
rishal
c84399e705 Add toString method for EndpointRequestMatcher
See gh-33690
2023-01-09 12:34:43 +01:00
Moritz Halbritter
46c799d857 Merge pull request #33519 from sannanansari
* pr/33519:
  Remove run example from documentation

Closes gh-33519
2023-01-09 12:21:13 +01:00
Sanan
f291695bda Remove run example from documentation
See gh-33519
2023-01-09 12:20:46 +01:00