Andy Wilkinson
11c79ac650
Move Docker-based reactive Elasticsearch test into separate class
...
Closes gh-27907
3 years ago
Andy Wilkinson
7afaffb80e
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27905
3 years ago
Andy Wilkinson
1f2035ae64
Move Docker-based Elasticsearch test into separate class
...
Closes gh-27904
3 years ago
Andy Wilkinson
37240bda3f
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27900
3 years ago
Andy Wilkinson
47163af9b6
Fix handling of Zip64 jar files larger than 4,294,967,295 bytes
...
Previously, a Zip64 jar file was identified by the number of entries
in the central directory being 0xFFFF. This value indicates that
there the number of entries is too big for the 2-byte field. However,
a jar may be in Zip64 format due to it exceeding the Zip format's
maximum size rather than its maximum number of entries so this field
cannot be used as a reliable indicator. The Zip specification doesn't
require any of the fields of the end of central directory record to
have a value of 0xFFFF (2-byte fields) or 0xFFFFFFFF (4-byte fields)
when using Zip64 format so we need to take a different approach.
Additionally, a number of places in the code assumed that an entry's
offset would always be available from the central directory file
header directly. This assumption did not hold true when the jar was
a Zip64 archive due to its size as the offset's value would be
0xFFFFFFF indicating that it should be read from the Zip64 extended
information field within the header's extra field instead.
This commit updates the Zip64 detection to look for the Zip64 end of
central directory locator instead. If present, it begins 20 bytes
before the beginning of the end of central directory record. Its
first four bytes are always 0x07064b50. The code that reads the
local header offset has also been updated to refer to the Zip64
extended information field when the offset is too large to fit in
the 4-byte field in the central directory file header. To allow
greater-than-4-byte offsets to be handled, a number of fields,
method parameters, and local variables have had their type changed
from an int to a long.
Fixes gh-27822
3 years ago
Andy Wilkinson
ba19577646
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27885
3 years ago
Andy Wilkinson
93ac6455d3
Document that starter parent enables compilation with -parameters
...
Closes gh-27762
3 years ago
Andy Wilkinson
4c8cafe731
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27883
3 years ago
Andy Wilkinson
6e6a6c059c
Upgrade to Testcontainers 1.16
...
Closes gh-27882
3 years ago
Stephane Nicoll
d6cc1f6d7d
Polish "Use more precise variables to detect Azure App Service"
...
See gh-27819
3 years ago
Julien Dubois
69b23470c7
Use more precise variables to detect Azure App Service
...
See gh-27819
3 years ago
Stephane Nicoll
7cc8668540
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27876
3 years ago
Yanming Zhou
6bf92f06e9
Fix inconsistent devtools doc
...
See gh-27812
3 years ago
Stephane Nicoll
3dab5ff2c0
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27873
3 years ago
Henning Pöttker
831e28b001
Fix typo in javadoc
...
See gh-27856
3 years ago
Phillip Webb
1215bbc10b
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27859
3 years ago
Phillip Webb
61764389c2
Merge branch '2.3.x' into 2.4.x
...
Closes gh-27858
3 years ago
Phillip Webb
44eb8c39d2
Align ApplicationTemp with Files.createTempDirectory
...
Update `ApplicationTemp` to align the way that it creates temp folders
with the way that `Files.createTempDirectory` works.
Closes gh-27857
3 years ago
Phillip Webb
15d0078eca
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27830
3 years ago
Phillip Webb
87dbda2339
Ensure TypeConverterConverter is thread safe
...
Update `TypeConverterConverter` do that a new `SimpleTypeConverter` is
obtained for each `convert` operation. Prior to this commit the same
`SimpleTypeConverter` could be accessed concurrently from multiple
threads which is not allowed.
Fixes gh-27829
3 years ago
Andy Wilkinson
b508d77a4e
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27803
3 years ago
Andy Wilkinson
990b766847
Polish "Document how to parameterize REST Docs' output dir with WebTestClient"
...
See gh-27755
3 years ago
Berchris Requiao
c83f6ebaa2
Document how to parameterize REST Docs' output dir with WebTestClient
...
See gh-27755
3 years ago
Andy Wilkinson
24c88ab80b
Polish "Avoid NPE when routing DataSource has target with null key"
...
See gh-27698
3 years ago
Safeer A
efdc19647c
Avoid NPE when routing DataSource has target with null key
...
See gh-27698
3 years ago
Andy Wilkinson
e409489859
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27798
3 years ago
Andy Wilkinson
f8ef90813f
Allow @MockBean to be used with Framework's @Repeat
...
Fixes gh-27693
3 years ago
Andy Wilkinson
6d8ba3e8b1
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27757
3 years ago
Andy Wilkinson
ffbd28b60a
Polish "Polish access modifiers for test classes"
...
See gh-27736
3 years ago
izeye
8a425dedfd
Polish access modifiers for test classes
...
See gh-27736
3 years ago
Stephane Nicoll
0d44503980
Upgrade to Spring Session 2021.0.2
...
Closes gh-27605
3 years ago
Stephane Nicoll
2baee89971
Upgrade to Spring Session 2020.0.6
...
Closes gh-27599
3 years ago
Andy Wilkinson
0d904b8868
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27753
3 years ago
Andy Wilkinson
0b7994a679
Polish "Use 2012 for copyright beginning year"
...
See gh-27734
3 years ago
Stephane Nicoll
e0dc55e865
Upgrade to Netty 4.1.67.Final
...
Closes gh-27745
3 years ago
Stephane Nicoll
e0fdddc658
Upgrade to Hazelcast 4.1.5
...
Closes gh-27744
3 years ago
Stephane Nicoll
42422c40da
Upgrade to AppEngine SDK 1.9.91
...
Closes gh-27743
3 years ago
Stephane Nicoll
a97a566d01
Upgrade to ActiveMQ 5.16.3
...
Closes gh-27742
3 years ago
Stephane Nicoll
253e4b25b1
Upgrade to Netty 4.1.67.Final
...
Closes gh-27741
3 years ago
Stephane Nicoll
c9ec939127
Upgrade to AppEngine SDK 1.9.91
...
Closes gh-27740
3 years ago
Stephane Nicoll
a798288de1
Upgrade to ActiveMQ 5.16.3
...
Closes gh-27739
3 years ago
Stephane Nicoll
8f12295e9b
Upgrade to Spring Integration 5.5.3
...
Closes gh-27604
3 years ago
Stephane Nicoll
3e47b6e2b1
Upgrade to Spring Integration 5.4.10
...
Closes gh-27598
3 years ago
Andy Wilkinson
b4f0f29bff
Test our Gradle plugin against Gradle 7.2
...
Closes gh-27732
3 years ago
Andy Wilkinson
ea641d3aab
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27730
3 years ago
Andy Wilkinson
29f5570208
Stop s-b-configuration-metadata leaking enforced constraints
...
Fixes gh-27726
3 years ago
Stephane Nicoll
34c83d6016
Upgrade to Nimbus JOSE JWT 9.10.1
...
Closes gh-27701
3 years ago
Stephane Nicoll
37c9fb09e6
Upgrade to OAuth2 OIDC SDK 9.9.1
...
Closes gh-27700
3 years ago
Stephane Nicoll
d9cb1871fe
Upgrade to Spring Security 5.5.2
...
Closes gh-27603
3 years ago
Stephane Nicoll
afaf4421d0
Upgrade to Nimbus JOSE JWT 8.22.1
...
Closes gh-27699
3 years ago
Stephane Nicoll
0abedb2547
Upgrade to Spring Security 5.4.8
...
Closes gh-27597
3 years ago
Stephane Nicoll
fe64fef7b9
Upgrade to Undertow 2.2.10.Final
...
Closes gh-27686
3 years ago
Stephane Nicoll
3a83fafebb
Upgrade to SendGrid 4.7.4
...
Closes gh-27684
3 years ago
Stephane Nicoll
a61be95f79
Upgrade to MIMEPull 1.9.15
...
Closes gh-27683
3 years ago
Stephane Nicoll
44b8a94b01
Upgrade to Maven Enforcer Plugin 3.0.0
...
Closes gh-27682
3 years ago
Stephane Nicoll
c0f1adcf54
Upgrade to MariaDB 2.7.4
...
Closes gh-27681
3 years ago
Stephane Nicoll
f6914e5fd1
Upgrade to Logback 1.2.5
...
Closes gh-27680
3 years ago
Stephane Nicoll
4adc3230c7
Upgrade to Janino 3.1.6
...
Closes gh-27679
3 years ago
Stephane Nicoll
0b75acfc1c
Upgrade to Hazelcast Hibernate5 2.2.1
...
Closes gh-27678
3 years ago
Stephane Nicoll
fb17f6e085
Upgrade to Glassfish JAXB 2.3.5
...
Closes gh-27677
3 years ago
Stephane Nicoll
7fced191cf
Upgrade to Ehcache3 3.9.5
...
Closes gh-27676
3 years ago
Stephane Nicoll
6e4c35d463
Upgrade to Couchbase Client 3.1.7
...
Closes gh-27675
3 years ago
Stephane Nicoll
eda014e736
Upgrade to Cassandra Driver 4.11.3
...
Closes gh-27674
3 years ago
Stephane Nicoll
b44a7ae3f6
Upgrade to Undertow 2.2.10.Final
...
Closes gh-27673
3 years ago
Stephane Nicoll
de0d940451
Upgrade to MIMEPull 1.9.15
...
Closes gh-27671
3 years ago
Stephane Nicoll
df36225752
Upgrade to Maven Enforcer Plugin 3.0.0
...
Closes gh-27670
3 years ago
Stephane Nicoll
46ede9cd22
Upgrade to MariaDB 2.7.4
...
Closes gh-27669
3 years ago
Stephane Nicoll
9728511950
Upgrade to Logback 1.2.5
...
Closes gh-27668
3 years ago
Stephane Nicoll
b32dfaad15
Upgrade to Janino 3.1.6
...
Closes gh-27667
3 years ago
Stephane Nicoll
8c0aea7acb
Upgrade to Glassfish JAXB 2.3.5
...
Closes gh-27666
3 years ago
Stephane Nicoll
1fdeda0d15
Upgrade to Ehcache3 3.9.5
...
Closes gh-27665
3 years ago
Stephane Nicoll
9f505788f8
Upgrade to Spring Kafka 2.7.6
...
Closes gh-27602
3 years ago
Stephane Nicoll
454ea44c39
Upgrade to Spring Data 2021.0.4
...
Closes gh-27633
3 years ago
Stephane Nicoll
c0ed8136d8
Upgrade to Micrometer 1.7.3
...
Closes gh-27601
3 years ago
Stephane Nicoll
fa99ae774a
Upgrade to Spring Data 2020.0.12
...
Closes gh-27632
3 years ago
Stephane Nicoll
69f54c6b6d
Upgrade to Micrometer 1.6.10
...
Closes gh-27596
3 years ago
Andy Wilkinson
119fb6948d
Test our Gradle plugin against Gradle 7.2-rc-3
...
Closes gh-27640
3 years ago
Andy Wilkinson
aafa21686a
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27638
3 years ago
Andy Wilkinson
3bed23d9dc
Replace PropertyMapper.CachingSupplier with use of SingletonSupplier
...
Closes gh-27635
3 years ago
Andy Wilkinson
341e129a59
Use SingletonSupplier in MetricsRepositoryFactoryCustomizer
...
Closes gh-27634
3 years ago
Andy Wilkinson
35ea3b234d
Prevent repository metrics from causing a circular reference
...
Fixes gh-27591
3 years ago
Stephane Nicoll
79462fa2da
Start building against Spring Data 2021.0.4 snapshots
...
See gh-27633
3 years ago
Stephane Nicoll
d888eb64de
Start building against Spring Data 2020.0.12 snapshots
...
See gh-27632
3 years ago
Stephane Nicoll
2fd4ac67d1
Upgrade to Reactor 2020.0.10
...
Closes gh-27600
3 years ago
Stephane Nicoll
7d326bd0dc
Upgrade to Reactor 2020.0.10
...
Closes gh-27595
3 years ago
Andy Wilkinson
f19fff4c64
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27620
3 years ago
Andy Wilkinson
d4d1ca007e
Mention productionRuntimeClasspath in the docs
...
Closes gh-27558
3 years ago
Stephane Nicoll
1d29443e71
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27618
3 years ago
Henning Pöttker
5b15c2191b
Fix typo in javadoc
...
See gh-27614
3 years ago
Stephane Nicoll
a393c2982c
Merge branch '2.4.x' into 2.5.x
...
Closes gh-27616
3 years ago
Stephane Nicoll
cd0bb969db
Fix Potential NPE in TomcatMetricsBinder.findContext()
...
Closes gh-27576
3 years ago
Stephane Nicoll
585eb00af6
Start building against Spring Session 2021.0.2 snapshots
...
See gh-27605
3 years ago
Stephane Nicoll
a304494508
Start building against Spring Integration 5.5.3 snapshots
...
See gh-27604
3 years ago
Stephane Nicoll
53bdcc9586
Start building against Spring Security 5.5.2 snapshots
...
See gh-27603
3 years ago
Stephane Nicoll
93f9c60540
Start building against Spring Kafka 2.7.6 snapshots
...
See gh-27602
3 years ago
Stephane Nicoll
b09aea8ec1
Start building against Micrometer 1.7.3 snapshots
...
See gh-27601
3 years ago
Stephane Nicoll
d4b6fd2344
Start building against Reactor 2020.0.10 snapshots
...
See gh-27600
3 years ago
Stephane Nicoll
a4bf490582
Start building against Spring Session 2020.0.6 snapshots
...
See gh-27599
3 years ago
Stephane Nicoll
e377a59f51
Start building against Spring Integration 5.4.10 snapshots
...
See gh-27598
3 years ago
Stephane Nicoll
7e3ad42fd3
Start building against Spring Security 5.4.8 snapshots
...
See gh-27597
3 years ago