- 20 Feb, 2017 5 commits
-
-
Stephane Nicoll authored
* pr/8195: Polish contribution Add schema validation options for embedded LDAP
-
Stephane Nicoll authored
Closes gh-8195
-
Mathieu Ouellet authored
See gh-8195
-
Stephane Nicoll authored
Closes gh-8333
-
Andy Wilkinson authored
Previously, the custom layout sample could only be built successfully if spring-boot-dependencies had be installed locally, making its effective pom available in the local Maven cache. This commit updates the sample's tests to look at its own pom to determine the version of Spring Boot that should be used in the Gradle tests. Closes gh-8330
-
- 19 Feb, 2017 2 commits
-
-
Stephane Nicoll authored
* pr/8273: Fix version of `gradle-git-properties` in doc
-
Raja Kolli authored
Closes gh-8273
-
- 17 Feb, 2017 3 commits
-
-
Stephane Nicoll authored
-
Stephane Nicoll authored
* pr/8319: Fix audit events related documentation
-
Vedran Pavic authored
Closes gh-8319
-
- 16 Feb, 2017 2 commits
-
-
Andy Wilkinson authored
Previously, bootRepackage's excludeDevtools property would be overridden by the springBoot extension's excludeDevtools property. This prevented devtools from being included by configuring it on the repackaging task. This commit corrects the logic so that the setting on the repackaging task takes priority. It also adds some tests to verify the behaviour. Closes gh-8308
-
Stephane Nicoll authored
Closes gh-8305
-
- 15 Feb, 2017 6 commits
-
-
Madhura Bhave authored
If `jwk.key-set-uri` is present. Closes gh-4437
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-8304
-
Stephane Nicoll authored
-
Stephane Nicoll authored
* pr/8300: Fix a broken AsciiDoc attribute declaration
-
Johnny Lim authored
Closes gh-8300
-
- 14 Feb, 2017 7 commits
-
-
Stephane Nicoll authored
Closes gh-8253
-
Stephane Nicoll authored
Closes gh-8192
-
Andy Wilkinson authored
-
Andy Wilkinson authored
* gh-8263: Tests that lists of lists are sanitized correctly Ensure that entries in a list of lists are not lost during sanitization
-
Andy Wilkinson authored
See gh-8263
-
Johnny Lim authored
Closes gh-8263 See gh-8197
-
Stephane Nicoll authored
Closes gh-8277
-
- 13 Feb, 2017 6 commits
-
-
Andy Wilkinson authored
-
Andy Wilkinson authored
This reverts commit 66194003. See gh-8248
-
Andy Wilkinson authored
The verifier's type checker is required to check that a type returned from a method (an areturn instruction) is assignable to the method's declared return type. When the return type is an interface, the JLS states that it should be treated as java.lang.Object. This means that no analysis of the type being returned is required and verification passes. When the return type is a class, the type being returned must be analyzed to ensure that it is compatible. This analysis causes the return type to be loaded during verification. Prior to this commit, BasicBatchConfigurer's createAppropriateTransactionManager method had a return type of AbstractPlatformTransactionManager and a branch that could return a JpaTransactionManager. This caused the verifier to attempt to load JpaTransactionManager so that it could check that it was assignable to AbstractPlatformTransactionManager. This would fail when spring-orm is not on the classpath as JpaTransactionManager could not be loaded. This commit updates BasicBatchConfigurer to change the return type of createAppropriateTransactionManager so that it returns a PlatformTransactionManager which is an interface. As described above, this relaxes the verification of any areturn instructions in the method and, in this particular case stops the verifier from trying to load JpaTransactionManager. Closes gh-8181
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Closes gh-8271
-
Stephane Nicoll authored
Closes gh-8272
-
- 12 Feb, 2017 4 commits
-
-
Stephane Nicoll authored
-
Stephane Nicoll authored
See gh-8248
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Closes gh-8259
-
- 10 Feb, 2017 1 commit
-
-
Madhura Bhave authored
Instead of validating the signature against all the public keys, we can validate it only against the public key with the kid that matches the one in the token header. Closes gh-8126
-
- 09 Feb, 2017 4 commits
-
-
Andy Wilkinson authored
-
Andy Wilkinson authored
393cfe50 expanded the scope of spring.profiles.include so that it could be used in any property source, and not just in a configuration file. However, it did so in such a way that it would only take effect when used outside of a configuration file if spring.profiles.active was also set. This commit updates ConfigFileApplicationListener so that included profiles are activated when spring.profiles.active has not be set. Closes gh-8244
-
Stephane Nicoll authored
* pr/8215: Allow property expansion for *.yaml
-
Davin Kevin authored
Closes gh-8215
-