Commit Graph

11529 Commits (e4dd7ac959224d7d324e02ea14ccb65e3abb2c00)
 

Author SHA1 Message Date
Andy Wilkinson 2fd177f923 Upgrade to Spring Security 4.2.5.RELEASE
Closes gh-12731
7 years ago
Andy Wilkinson 3b2ecd7884 Upgrade to Groovy 2.4.15
Closes gh-12730
7 years ago
Phillip Webb a20df82067 Polish 7 years ago
Phillip Webb ecfc8d73f1 Be defensive when clearing caches for restart
Update `Restarter` to be much more defensive when attempting to clear
caches. We now use `clearCache()` methods whenever possible, and only
fall back to field access when absolutely necessary. In addition field
access now ignore any exceptions.

Fixes gh-12719
7 years ago
Andy Wilkinson 4e0afaf4c2 Start building against Spring Data Ingalls SR11 snapshots
See gh-12695
7 years ago
Andy Wilkinson 87da2e70d9 Start building against Spring Integration 4.3.15 snapshots
See gh-12692
7 years ago
Andy Wilkinson cb44a219b2 Provide additional dependency management for Infinispan
Closes gh-12526
7 years ago
Stephane Nicoll 610ffed938 Merge pull request #12629 from oflebbe:1.5.x
* pr/12629:
  Polish "Use secure connection to repositories"
  Use secure connection to repositories
7 years ago
Stephane Nicoll ade6d86b65 Polish "Use secure connection to repositories"
Closes gh-12629
7 years ago
Olaf Flebbe 7a5ae32c46 Use secure connection to repositories
See gh-12629
7 years ago
Stephane Nicoll 4d4b91a51e Clarify use of persistence.xml in doc
Closes gh-12636
7 years ago
Stephane Nicoll 345b2c5def Merge pull request #12535 from dreis2211:intellij-modified-classpath-runner
* pr/12535:
  Fix ModifiedClassPathRunner tests if run via IDEA
7 years ago
dreis2211 efc9dcc22b Fix ModifiedClassPathRunner tests if run via IDEA
IntelliJ can shorten the classpath to a single classpath.jar in order to
circumvent errors originating from a too long classpath. This breaks the
filtering inside ModifiedClassPathRunner as the classpath contains only a
single jar to match against. This can be fixed by applying a similar
mechanism already provided for Surefire manifest-only booter JARs, which
extracts the real classpath from the JAR's Manifest file.

See gh-12535
7 years ago
Andy Wilkinson 625c4e61dc Upgrade to Jetty 9.4.9.v20180320
Closes gh-12614
7 years ago
Andy Wilkinson 6ed02761f1 Upgrade to H2 1.4.197
Closes gh-12613
7 years ago
Andy Wilkinson 0c0245014c Recommend using compileOnly rather than the propdeps plugin
Closes gh-12573
7 years ago
Andy Wilkinson 1145eec2b2 Merge pull request #12554 from Johnny Lim
* gh-12554:
  Polish "Use this.out in SummaryProgressReporter.finished()"
  Use this.out in SummaryProgressReporter.finished()
7 years ago
Andy Wilkinson 143ec20296 Polish "Use this.out in SummaryProgressReporter.finished()"
See gh-12554
7 years ago
Johnny Lim 5467005513 Use this.out in SummaryProgressReporter.finished()
Closes gh-12554
7 years ago
Phillip Webb a8f366a554 Fix copyright header for edited files 7 years ago
Phillip Webb 23892e33d6 Add text/plain error response support
Refine `BasicErrorController` mappings so that only JSON and XML get
structured responses. A simple string response is returned for all
other media types.

Fixes gh-12513
7 years ago
Phillip Webb e975dbe3f0 Only use jar shortcut for matching URLs
Update JAR `Handler` logic so that the existing `jarFile` is only used
if the requested URL starts with the same path. Prior to this commit it
was possible to construct a URL with another URL as context. This could
mean that the `handler` was shared and the already resolved `jarFile`
contained in the handler wasn't necessarily suitable.

Fixes gh-12483
7 years ago
Phillip Webb e40acf2447 Polish 7 years ago
Andy Wilkinson cfcc387593 Add dependency management for Spring AMQP's testing modules
Closes gh-12393
7 years ago
Andy Wilkinson f553de4486 Upgrade to Infinispan 8.2.10.Final
Closes gh-12498
7 years ago
Andy Wilkinson 394054c7b7 Upgrade to Tomcat 8.5.29
Closes gh-12497
7 years ago
Andy Wilkinson 85096824be Upgrade to Mysql 5.1.46
Closes gh-12496
7 years ago
Stephane Nicoll 81f3f6784b Merge pull request #12422 from igor-suhorukov
* pr/12422:
  Polish
7 years ago
igor-suhorukov 6bdfce5874 Polish
Closes gh-12422
7 years ago
Stephane Nicoll ff1dd9e3d8 Fix command reference in doc
Closes gh-12434
7 years ago
Andy Wilkinson 44346b0771 Upgrade to Spring Batch 3.0.9.RELEASE
Closes gh-12409
7 years ago
Andy Wilkinson 4fa66da359 Revert "Start building against Dependency Management Plugin 1.0.5 snapshots"
Uses snapshots of the Dependency Management Plugin causes problems as
they are only published to our plugins-snapshot repository which may
not be configured in someone's build.

See gh-12406
7 years ago
Andy Wilkinson 3395d05c21 Start building against Dependency Management Plugin 1.0.5 snapshots
See gh-12406
7 years ago
Stephane Nicoll f711c96d39 Upgrade maven wrapper to Maven 3.5.3
Closes gh-12402
7 years ago
Andy Wilkinson 51301dfc91 Upgrade to Spring Social 1.1.6.RELEASE
Closes gh-12386
7 years ago
Andy Wilkinson 08fe332a3f Upgrade to Groovy 2.4.14
Closes gh-12385
7 years ago
Andy Wilkinson 8849dbe5df Upgrade to Undertow 1.4.23.Final
Closes gh-12384
7 years ago
Andy Wilkinson 5b48f16494 Upgrade to Appengine Sdk 1.9.63
Closes gh-12383
7 years ago
Andy Wilkinson 101ed76559 Upgrade to Jackson 2.8.11.20180217
Closes gh-11475
7 years ago
Stephane Nicoll f8c1821c2c Polish
See gh-12365
7 years ago
Stephane Nicoll 66d1f5cd0b Fix expansion of static-locations array
This commit fixes a NPE when the static-locations array of
`ResourceProperties` has to be expanded as the setter is cleaning the
values of the array and is affected by a non-intuitive behaviour of the
binder.

When the binder needs to set an element of an array and the size of the
array isn't large enough, the binder proceeds as follows:

* An array of the required size is created
* The content of the original array is copied over
* The setter of the property is invoked with the new array
* The setter of the property is invoked and the returned array is
mutated to set the requested value

While one would expect the array to contain the requested value when the
setter is invoked, this is not the case. Also, the array might contain
null values if a value at index 8 should be set and the array has a size
of 3.

All in all, `ResourceProperties#appendSlashIfNecessary` has to account
for `null` and an additional round of cleaning has to happen once
binding has completed.

Closes gh-12360
7 years ago
Madhura Bhave 758dca57f1 Clarify documentation for setting the LoggingSystem
Closes gh-12299
7 years ago
Andy Wilkinson 84387046b9 Start building against Spring Framework 4.3.15 snapshots
See gh-12344
7 years ago
Andy Wilkinson eee891dbc8 Decode file: URLs passed into PropertiesLauncher via loader.path
Closes gh-12325
7 years ago
Stephane Nicoll 4e3d0f5b33 Fix parsing of value with comma
Closes gh-12297
7 years ago
Madhura Bhave c2f7dd86dc Revert default for CRSF enabled to false
Fixes gh-12267
7 years ago
Andy Wilkinson 452492183d Polish
Closes gh-11991
7 years ago
Andy Wilkinson 3cc0055d3b Merge pull request #11991 from Rupert Madden-Abbott
* gh-11991:
  Polish "Fix handling of static resource jars with spaces in their paths"
  Fix handling of static resource jars with spaces in their paths
7 years ago
Andy Wilkinson 88423c504b Polish "Fix handling of static resource jars with spaces in their paths"
Closes gh-11991
7 years ago
Rupert Madden-Abbott 9cd1a4b07a Fix handling of static resource jars with spaces in their paths
See gh-11991
7 years ago