Commit Graph

23193 Commits (f033016364691e50877651116e22b352d275b937)
 

Author SHA1 Message Date
Phillip Webb 3b28b1cade Don't use static final security matcher
Using static final matchers breaks the build because they have state
that's not reset across tests.

See gh-17525
5 years ago
Stephane Nicoll 752efd66e8 Upgrade to Spring Security Oauth 2.0.18.RELEASE
Closes gh-17671
5 years ago
Stephane Nicoll a37f571bbb Upgrade to Spring Security 4.2.13.RELEASE
Closes gh-17670
5 years ago
Stephane Nicoll 705551c485 Upgrade to Spring Cloud Connectors 1.2.9.RELEASE
Closes gh-17669
5 years ago
Stephane Nicoll 5537774a6c Upgrade to Jetty 9.4.19.v20190610
Closes gh-17668
5 years ago
Stephane Nicoll ddf720eacd Upgrade to Tomcat 8.5.43
Closes gh-17667
5 years ago
Stephane Nicoll ada1861be1 Upgrade to Httpclient 4.5.9
Closes gh-17666
5 years ago
Stephane Nicoll 55b0c0911d Upgrade to Appengine Sdk 1.9.76
Closes gh-17665
5 years ago
Phillip Webb 6675f49334 Switch to multi-line security configuration
Now that we have lambda style security configuration we can further
improve readability by switching to one statement per line.

See gh-17525
5 years ago
Stephane Nicoll 6756385049 Merge branch '2.1.x'
Closes gh-17664
5 years ago
Stephane Nicoll c99f201c46 Merge pull request #17635 from nosan
* pr/17635:
  Polish "Log health check failure with Reactive health indicators"
  Log health check failure with Reactive health indicators

Closes gh-17635
5 years ago
Stephane Nicoll 6356852e2f Polish "Log health check failure with Reactive health indicators"
See gh-17635
5 years ago
Dmytro Nosan fe1b9c9501 Log health check failure with Reactive health indicators
See gh-17635
5 years ago
Stephane Nicoll b7ceb6548f Merge pull request #17660 from dreis2211
* pr/17660:
  Fix deprecation warnings in spring-boot-actuator

Closes gh-17660
5 years ago
dreis2211 eb9527a170 Fix deprecation warnings in spring-boot-actuator
See gh-17660
5 years ago
Stephane Nicoll 858199a2fa Only configure Spring Data jdbc if a transaction manager is present
This commit adds an extra condition to JdbcRepositoriesAutoConfiguration
so that it doesn't scan for repositories if a transaction manager is not
available as this dependency is now mandatory.

Closes gh-17654
5 years ago
Stephane Nicoll 97907aac30 Polish 5 years ago
Stephane Nicoll 2c3d4501ed Merge pull request #17648 from izeye
* pr/17648:
  Add missing assertion in dispatcherServletCustomConfig()

Closes gh-17648
5 years ago
Johnny Lim a80749ed81 Add missing assertion in dispatcherServletCustomConfig()
See gh-17648
5 years ago
Madhura Bhave 3423dbf6ac Add transaction manager in Spring Data jdbc tests
See gh-17654
5 years ago
Madhura Bhave 39a7b9da38 Switch to lambda style security configuration
Closes gh-17525
5 years ago
Stephane Nicoll ed0f6e66ca Merge branch '2.1.x' 5 years ago
Stephane Nicoll b79de1e7e3 Fix broken build 5 years ago
Stephane Nicoll 4a394c74ac Merge branch '2.1.x' 5 years ago
Stephane Nicoll dd5d55a2d8 Start building against Spring Kafka 2.2.8 snapshots
See gh-17645
5 years ago
Stephane Nicoll 4b6b5fc160 Start building against Spring Integration 5.1.7 snapshots
See gh-17643
5 years ago
Stephane Nicoll aa5630b0e0 Start building against Spring AMQP 2.1.8 snapshots
See gh-17641
5 years ago
Stephane Nicoll 8745413bb1 Merge branch '2.0.x' into 2.1.x 5 years ago
Stephane Nicoll 5ae47d914f Merge branch '1.5.x' into 2.0.x 5 years ago
Stephane Nicoll b2188ae2a0 Start building against Spring Data Ingalls snapshots
See gh-17352
5 years ago
Stephane Nicoll c6be8d49ab Start building against Spring Integration 4.3.21 snapshots
See gh-17642
5 years ago
Stephane Nicoll 634de5e8e5 Start building against Spring AMQP 1.7.14 snapshots
See gh-17640
5 years ago
Stephane Nicoll fc2c98ffad Merge branch '2.1.x' 5 years ago
Stephane Nicoll ac4dcfbf9a Improve detection of NoSuchMethodError cause
Closes gh-17649
5 years ago
Stephane Nicoll 0f1b441b6f Merge branch '2.1.x' 5 years ago
Stephane Nicoll 9e8649ccca Start building against Reactor Californium snapshots
See gh-17639
5 years ago
Stephane Nicoll 2c0f1fb32c Start building against Reactor Dysprosium snapshots
See gh-17638
5 years ago
Stephane Nicoll d222575483 Merge branch '2.1.x'
Closes gh-17632
5 years ago
Stephane Nicoll 2db1db6bfb Upgrade Java 12 version in CI image
Closes gh-17625
5 years ago
Stephane Nicoll f7ce9346f4 Merge branch '2.1.x'
Closes gh-17631
5 years ago
Stephane Nicoll f6266d04fb Upgrade Java 11 version in CI image
Closes gh-17626
5 years ago
Stephane Nicoll 486aa48de5 Merge branch '2.1.x'
Closes gh-17630
5 years ago
Stephane Nicoll 9d12626e43 Upgrade Java 8 version in CI image
Closes gh-17627
5 years ago
Madhura Bhave 4a309ed491 Merge branch '2.1.x' 5 years ago
Madhura Bhave f13f96d705 Fix customizer for windows tests
JettyServerCustomizers beans do not get picked up automatically in 2.1.x

See gh-15553
5 years ago
Madhura Bhave 9bd1187f40 Merge branch '2.1.x'
Closes gh-17628
5 years ago
Madhura Bhave bb85612723 Add concourse pipeline for Windows
Closes gh-15553
5 years ago
Brian Clozel 5beb7edfbb Reinstate RSocket codecs configuration ordering
Since spring-projects/spring-framework#23314 and the following commit
spring-projects/spring-framework@be4facef1b, the RSocket codec selection
is relaxed and the order of configured commits matters again.

This commit ensures that the CBOR codec is configured ahead of the JSON
codec so that it can be chosen first if no data mime type is specified
when a connection is established with a client requester.
5 years ago
Brian Clozel 1996952e68 Update RSocket configuration after Framework changes
Since spring-projects/spring-framework#23314, the `RSocketStrategies`
provide more codecs by default, and there is no need to order them to
avoid conflicts during mime type selection.

This commit also ensures that the `PayloadDecoder.ZERO_COPY` is
configured on the RSocket server if the configured `DataBufferFactory`
is compatible with that strategy.
5 years ago
Phillip Webb 5a4ec081f6 Merge branch '2.1.x'
Closes gh-17624
5 years ago