Commit Graph

11185 Commits (b9f4fd0b6547e7a06a1db81d5272ad869f9bae5b)
 

Author SHA1 Message Date
Stephane Nicoll b9f4fd0b65 Fix exclude filter to not exclude MediaType
This commit removes MediaType from the list of exclude types as it looks
like an error: MediaType has a constructor taking a `String` and binding
works fine with it.

This has the effect of properly generating the metadata for the only key
that Spring Boot exposes with a MediaType type:
spring.data.rest.default-media-type.

Closes gh-11568
7 years ago
Stephane Nicoll 4568f14c71 Fix javadoc warnings 7 years ago
Brian Clozel 966d4251a4 Warn against custom request factories in RestTemplateBuilder
This commit adds a javadoc note about a usability issue described in
gh-11255. While `RestTemplateBuilder` is an immutable class, providing a
custom instance of request factory and deriving several
builders/templates from that point may have some unexpected behavior,
since that instance is shared amongst builders instances.

This issue is fixed in Spring Boot 2.0 with a replacement method that
leverages a `Supplier<ClientHttpRequestFactory>` instead.

See gh-11255
7 years ago
Andy Wilkinson a4134b8491 Start building against Spring Framework 4.3.14 snapshots
See gh-11520
7 years ago
Andy Wilkinson a9811e360a Add missing copyright headers to .java source files 7 years ago
Andy Wilkinson 5bbd31e7a3 Rename test classes so that their tests are run by Maven 7 years ago
Andy Wilkinson 9baa9772c2 Revert "Upgrade to Jackson 2.8.11"
This reverts commit f91f8f7eec.

See gh-11475
7 years ago
Stephane Nicoll d49b022ce3 Shade json in configuration processor
This commit shades the json API in the configuration processor so that
it doesn't bring `android-json` to the classpath anymore.

Closes gh-10307
7 years ago
Andy Wilkinson 1f14b11be4 Upgrade to Spring Security Jwt 1.0.9.RELEASE
Closes gh-11483
7 years ago
Andy Wilkinson fc3e4085cb Upgrade to Spring Retry 1.2.2.RELEASE
Closes gh-11482
7 years ago
Andy Wilkinson 2ac5f7b464 Upgrade to Spring Integration 4.3.13.RELEASE
Closes gh-11481
7 years ago
Andy Wilkinson 40c8edc52e Upgrade to Spring Amqp 1.7.5.RELEASE
Closes gh-11480
7 years ago
Andy Wilkinson cc61bc05e6 Upgrade to Tomcat 8.5.24
Closes gh-11479
7 years ago
Andy Wilkinson 5552434660 Upgrade to Httpclient 4.5.4
Closes gh-11478
7 years ago
Andy Wilkinson 38f94cc683 Upgrade to Mysql 5.1.45
Closes gh-11477
7 years ago
Andy Wilkinson e926c87e81 Upgrade to Appengine Sdk 1.9.60
Closes gh-11476
7 years ago
Andy Wilkinson f91f8f7eec Upgrade to Jackson 2.8.11
Closes gh-11475
7 years ago
Andy Wilkinson 451a4dfc7f Make management web security back off without spring-security-web
Closes gh-11474
7 years ago
Brian Clozel 366d1122f0 Upgrade to Animal Sniffer 1.16
This version is compatible with JDK9 libraries; this is now required
since Jetty introduced a dependency on ASM 6.0 in gh-11469.
7 years ago
Brian Clozel 88b15baf20 Upgrade to Jetty 9.4.8.v20171121
Closes gh-11469
7 years ago
Stephane Nicoll e187aac93d Mention that a custom starter must bring the core starter
Closes gh-11455
7 years ago
Stephane Nicoll 397d3e85e8 Fix Windows build
Closes gh-11459
7 years ago
Stephane Nicoll abfee97843 Merge pull request #11456 from rajadilipkolli:patch-1
* pr/11456:
  Update copyright header
7 years ago
Raja Kolli e6eca2b2c9 Update copyright header
Closes gh-11456
7 years ago
Stephane Nicoll 053982ae62 Merge pull request #11401 from douglascardoso:master
* pr/11401:
  Log inaccessible file in RandomAccessDataFile
7 years ago
Douglas Cardoso feecc27677 Log inaccessible file in RandomAccessDataFile
Closes gh-11401
7 years ago
Stephane Nicoll 970b16f8bc Merge pull request #11431 from izeye:mongo-client
* pr/11431:
  Use MongoClient consistently
7 years ago
Johnny Lim d2109ddf4d Use MongoClient consistently
Closes gh-11431
7 years ago
Stephane Nicoll 9c4e6f247c Fix table formatting issue
Closes gh-11434
7 years ago
Stephane Nicoll 07bb33d8ed Prevent the accidental use of Flyway's StringUtils
See gh-11396
7 years ago
Madhura Bhave 98f577e62c Remove duplicate ID values from howto doc 7 years ago
Stephane Nicoll 29565a7981 Polish 7 years ago
Stephane Nicoll 61ca4ab562 Polish 7 years ago
Stephane Nicoll dbae4fc1c3 Make it easier to use jOOQ with several data sources
Closes gh-11324
7 years ago
Phillip Webb 2aa3295675 Deprecate inapplicable RegistrationBean methods
Inherit and deprecate RegistrationBean methods that are not applicable
to a ServletListenerRegistrationBean.

Fixes gh-11342
7 years ago
Phillip Webb 2c429ba77d Restore static final formatting
Restore static final constants to upper case formatting.

See gh-10457
7 years ago
Phillip Webb 6a55623910 Polish 7 years ago
Andy Wilkinson e29ce3f70b Merge pull request #11321 from Christoph Dreis
* gh-11321:
  Precompile current dir pattern in Handler
7 years ago
dreis2211 d5370e6852 Precompile current dir pattern in Handler
Closes gh-11321
7 years ago
Andy Wilkinson 9b65dfe857 Upgrade to Dependency Management Plugin 1.0.4.RELEASE
Closes gh-11311
7 years ago
Stephane Nicoll 788fd777b0 Merge pull request #11320 from nklmish:gh-11241
* pr/11320:
  Polish "Handle null Principal in AuditEvent"
  Handle null Principal in AuditEvent
7 years ago
Stephane Nicoll 7fb0bd77cd Polish "Handle null Principal in AuditEvent"
Closes gh-11320
7 years ago
nklmish 6b6a01a7e7 Handle null Principal in AuditEvent
See gh-11320
7 years ago
dreis2211 37437a0fe2 Avoid allocations from lower-casing spec in JAR Handler
Closes gh-11314
7 years ago
Stephane Nicoll 846e642631 Properly handle class reference
Previously, a condition on a class targeting an inner class would
generate an invalid String representation of it. Unfortunately, the
`toString` representation misses the `$` sign between the outer class
and the inner class name.

This commit post-processes the values to generate the appropriate
representation.

Closes gh-11282
7 years ago
Andy Wilkinson 654fe9a31c Use Checkstyle to police accidental use of unwanted imports
Closes gh-11271
7 years ago
Stephane Nicoll b7baf6d381 Fix broken link
Closes gh-11244
7 years ago
Stephane Nicoll 7b8adfab41 Polish 7 years ago
Andy Wilkinson a491727b7c Avoid creating unnecessary garbage during URL normalization
Closes gh-11207
7 years ago
Stephane Nicoll 5fd529279d Merge pull request #11190 from slachiewicz:fix/maven-central-url
* pr/11190:
  Update Apache Maven Central repository url
7 years ago