- 26 May, 2018 12 commits
-
-
Phillip Webb authored
-
Phillip Webb authored
The `HelpMojo` class is always generated and it should not be checked for formatting. See gh-13255
-
Stephane Nicoll authored
* pr/13266: Add missing semicolon in example
-
Arnaud Heritier authored
Closes gh-13266
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
Use `spring-javaformat` to format and check code. Code formatting can now be applied using the `spring-javaformat-maven-plugin` from the command line. Existing checkstyle rules have also been replaced and the CONTRIBUTING.adoc file has been updated. Closes gh-13255
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
-
- 25 May, 2018 3 commits
-
-
Stephane Nicoll authored
* pr/13260: Fix documentation error
-
Andrea Vacondio authored
Closes gh-13260
-
Madhura Bhave authored
-
- 24 May, 2018 3 commits
-
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Closes gh-13245
-
Stephane Nicoll authored
-
- 22 May, 2018 8 commits
-
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Closes gh-13231
-
Stephane Nicoll authored
Closes gh-13231
-
Phillip Webb authored
-
Phillip Webb authored
Update CI pipeline so that the `sync-to-maven-central` job has access to the artifactory build info. Closes gh-13223
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
Update contributing documentation and the issue template with instructions on how to report security vulnerabilities. Closes gh-12509
-
- 21 May, 2018 1 commit
-
-
Phillip Webb authored
-
- 18 May, 2018 5 commits
-
-
Stephane Nicoll authored
* pr/13208: Polish contribution Support custom UriTemplateHandler in LocalHostUriTemplateHandler
-
Stephane Nicoll authored
Closes gh-13208
-
Mihhail Lapushkin authored
See gh-13208
-
Stephane Nicoll authored
-
Stephane Nicoll authored
The ConnectionFactory can be used early in user configuration to configure an `Exchange`. Such connection may not hold the proper MetricCollector and can be cached, leading to missed metrics information. This commit moves the configuration of RabbitMQ metrics to a BeanPostProcessor so that the proper MetricCollector is configured before any connection is created. Closes gh-12855
-
- 17 May, 2018 8 commits
-
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Closes gh-13127
-
Stephane Nicoll authored
* pr/13192: Polish
-
Johnny Lim authored
Closes gh-13192
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Prior to 3db5c70b, RelaxedDataBinder would use a ConversionService to convert a String into a File via its ObjectToObjectConverter. 3db5c70b changed the configuration of the data binder such that a FileEditor was registered. Property editors take precedence over any conversion service so the FileEditor was used instead. This caused a regression as the FileEditor uses slightly unusual logic for a String to File conversion. Specifically, when given a value of ".", it will locate a ClassPathResource for the root of the classpath and use the result of calling getFile() on that resource. This fails when the root of the classpath is in a jar file and also provides a different result when the root of the classpath is not the current directory. This commit updates RelaxedDataBinder to suppress the registration of an editor for File. This restores the behaviour prior to 3db5c70b by allowing the ConversionService to be used instead. Closes gh-12786
-
Stephane Nicoll authored
Closes gh-13195
-
Andy Wilkinson authored
-