sha
stringlengths
1
40
author
stringlengths
1
63
committer
stringlengths
1
41
message
stringlengths
1
65.5k
subject
stringlengths
1
5.64k
subject_length
float64
1
5.64k
is_chore
bool
2 classes
is_bot
bool
2 classes
subject_word_count
float64
1
806
verb_object_spacy
bool
2 classes
verb_object_stanza
bool
2 classes
fits_requirements
bool
2 classes
owner
stringlengths
2
15
repo
stringlengths
2
21
__index_level_0__
int64
0
85.4k
c8fcdadbae37ca9daa7e44d51116d084272a0781
Stephane Nicoll
Stephane Nicoll
Polish Review bd093eb to provide a generic type on `JmsResponse` Issue: SPR-13133
polish
6
false
false
1
false
false
false
spring-projects
spring-framework
15,457
75c88ffbeba845c49c4869400d7206ff240339cd
Stephane Nicoll
Stephane Nicoll
Remove deprecated warnings
remove deprecated warnings
26
false
false
3
true
true
true
spring-projects
spring-framework
15,458
bd093eb6bfead14b978e4709fff69d0199bada23
Stephane Nicoll
Stephane Nicoll
Runtime resolution of JMS reply destination Add JmsResponse that can be used as return type of any JMS listener method to indicate not only the response but also the actual destination to which the reply should be sent. Issue: SPR-13133
runtime resolution of jms reply destination
43
false
false
6
false
false
false
spring-projects
spring-framework
15,459
210e10c6576ac87906d1a1f8ae037df72dfd2a9c
Rossen Stoyanchev
Rossen Stoyanchev
Add AsyncHandlerMethodReturnValueHandler Before this change HandlerMethodReturnValueHandler's were invoked in a specific order (type-based, annotation-based, custom). However handlers that deal with asynchronous return value handling need to always be considered first. This affects custom handlers in particular since ...
add asynchandlermethodreturnvaluehandler
40
false
false
2
true
true
false
spring-projects
spring-framework
15,460
818783350278f363d0b5246e36ade298a84d33f8
Sebastien Deleuze
Sebastien Deleuze
Change default JSON prefix from "{} && " to ")]}', " Issue: SPR-13078
change default json prefix from "{} && " to ")]}', "
52
false
false
11
false
true
false
spring-projects
spring-framework
15,461
a08c9f3137d114bbdd0cdb2800024d45a6a21e3a
Sebastien Deleuze
Sebastien Deleuze
Polish serialization/deserialization exception logging This commit introduces the following changes in AbstractHandlerExceptionResolver: - warnLogger used to log exception is enabled by default - the exception message is now logged instead of the whole exception stacktrace - warn logging is only performed if doReso...
polish serialization/deserialization exception logging
54
false
false
4
false
false
false
spring-projects
spring-framework
15,462
ce7cc79e9f74bd830a64a6eefec81def0d308395
Juergen Hoeller
Juergen Hoeller
Polishing
polishing
9
false
false
1
false
false
false
spring-projects
spring-framework
15,463
b7d3a2a25b7ecb434c2cc96d6edc59e98ed47ad1
Juergen Hoeller
Juergen Hoeller
ResourceHttpRequestHandlerTests avoids millisecond-level comparisons
resourcehttprequesthandlertests avoids millisecond-level comparisons
68
false
false
4
false
false
false
spring-projects
spring-framework
15,464
371ea79b5f42d87ac6892bd2596a0be85eb20dfe
Juergen Hoeller
Juergen Hoeller
Latest dependency updates (OkHttp 2.4, H2 1.4.187, Joda-Time 2.8.1)
latest dependency updates (okhttp 2.4, h2 1.4.187, joda-time 2.8.1)
67
false
false
9
false
false
false
spring-projects
spring-framework
15,465
2bed89340b7cac7cb9d8d0e0398a2811e2fc6505
Juergen Hoeller
Juergen Hoeller
Supply body for POST/PUT/PATCH tests (for OkHttp 2.4 compatibility)
supply body for post/put/patch tests (for okhttp 2.4 compatibility)
67
false
false
9
false
false
false
spring-projects
spring-framework
15,466
4b05bda0bf1507af578f042a5a29901e307bccf2
Rossen Stoyanchev
Rossen Stoyanchev
Missing path variable is now a 500 error Before this change a missing path variable value resulted in a 400 error where in fact the error is due to a mismatch between the declared @PathVariable and the URI template, i.e. a 500 error. This change introduced a MissingPathVariableException as a sub-class of ServletReque...
missing path variable is now a 500 error
40
false
false
8
false
false
false
spring-projects
spring-framework
15,467
7b365583e39f6195a7b2d3b149b9a5290f3ab01f
Rossen Stoyanchev
Rossen Stoyanchev
Merge pull request from jking-roar/SPR-13111
merge pull request from jking-roar/spr-13111
44
true
false
5
true
false
false
spring-projects
spring-framework
15,468
1153969ea28d441156dcd4486c13397b2b374219
Rossen Stoyanchev
Rossen Stoyanchev
Polish
polish
6
false
false
1
false
false
false
spring-projects
spring-framework
15,469
bccd59e6c8845c6521d3b325bea89bcbcbe4d833
Sam Brannen
Sam Brannen
Use findAnnotationAttributes() where appropriate This commit updates code that previously used getAnnotationAttributes() in AnnotatedElementUtils to use findAnnotationAttributes(), where appropriate. Issue: SPR-12738
use findannotationattributes() where appropriate
48
false
false
4
true
true
true
spring-projects
spring-framework
15,470
ebed52cc223c2e66d7103e34ab4a4b37b866859c
Sam Brannen
Sam Brannen
Favor local, composed annotations in AnnotatedElementUtils This commit updates the "get semantics" search algorithm used in `AnnotatedElementUtils` so that locally declared 'composed annotations' are favored over inherited annotations. Specifically, the internal `searchWithGetSemantics()` method now searches locally ...
favor local, composed annotations in annotatedelementutils
58
false
false
6
true
true
false
spring-projects
spring-framework
15,471
03ade48d68f0f3fc2ad7c3cbfbb44f147da0cc42
Sam Brannen
Sam Brannen
Expound on inheritance semantics for @Conditional Issue: SPR-11598
expound on inheritance semantics for @conditional
49
false
false
6
false
false
false
spring-projects
spring-framework
15,472
dc39e3565c312e9c77b24e437834ada8b99b0828
Juergen Hoeller
Juergen Hoeller
Doc example for custom Formatter as alternative to PropertyEditor in @InitBinder method Issue: SPR-7773
doc example for custom formatter as alternative to propertyeditor in @initbinder method
87
false
false
12
false
false
false
spring-projects
spring-framework
15,473
9799df397a2166c5eceab2358476b352abb757d8
Juergen Hoeller
Juergen Hoeller
PropertyOrFieldReference avoids NPE through defensive copy of volatile accessor reference Issue: SPR-13023
propertyorfieldreference avoids npe through defensive copy of volatile accessor reference
89
false
false
10
false
false
false
spring-projects
spring-framework
15,474
0711d6d0df08ca762b4a29641dc496da99163546
Juergen Hoeller
Juergen Hoeller
Polishing
polishing
9
false
false
1
false
false
false
spring-projects
spring-framework
15,475
ef7cf2c6506ce860d54eb7abf71cdffbfa6437d7
Juergen Hoeller
Juergen Hoeller
Revised description of event source parameter Issue: SPR-13021
revised description of event source parameter
45
false
false
6
false
false
false
spring-projects
spring-framework
15,476
02d28ae9eef79afef18659b6a140b55720b452da
Juergen Hoeller
Juergen Hoeller
Actual hasText assertion in SockJsFrame Issue: SPR-13019
actual hastext assertion in sockjsframe
39
false
false
5
false
false
false
spring-projects
spring-framework
15,477
71c3e4e4ee2d0cf206fd733a424b6afb83254f13
Brian Clozel
Brian Clozel
Fix empty URLs handling in ResourceUrlEncodingFilter Prior to this commit, the ResourceUrlEncodingFilter would fail with a StringIndexOutOfBoundsException when: * the current request has a servlet context * the URL to encode is relative and is shorter than the context value This change defensively checks for those l...
fix empty urls handling in resourceurlencodingfilter
52
false
false
6
true
true
false
spring-projects
spring-framework
15,478
02da2e85ee0e58202b90d11c126e6050abe184b4
Juergen Hoeller
Juergen Hoeller
DataBinder allows for adding custom Formatters as alternative to PropertyEditors (including per-field formatters) Includes a generic FormatterPropertyEditorAdapter plus Number conversion support in TypeConverterDelegate. Issue: SPR-7773 Issue: SPR-6069
databinder allows for adding custom formatters as alternative to propertyeditors (including per-field formatters)
113
false
false
13
false
false
false
spring-projects
spring-framework
15,479
49c600b23494e203c91e47b126ce3eb46103b9d8
Juergen Hoeller
Juergen Hoeller
Resolved cyclic dependency between handler.invocation and handler.annotation Issue: SPR-12696
resolved cyclic dependency between handler.invocation and handler.annotation
76
false
false
7
false
false
false
spring-projects
spring-framework
15,480
e83d495cbba0796b1f2269b9ad7a02ffac1ca5a8
Juergen Hoeller
Juergen Hoeller
SimpleAliasRegistry prevents NPE for alias resolved to null Issue: SPR-13016
simplealiasregistry prevents npe for alias resolved to null
59
false
false
8
false
false
false
spring-projects
spring-framework
15,481
281588d7bb9b4c15e72d743f5d88cc5ff39ff2de
Rossen Stoyanchev
Rossen Stoyanchev
Add SimpUserRegistry with multi-server support This change introduces SimpUserRegistry exposing an API to access information about connected users, their sessions, and subscriptions with STOMP/WebSocket messaging. Provides are methods to access users as well as a method to find subscriptions given a Matcher strategy. ...
add simpuserregistry with multi-server support
46
false
false
5
true
true
true
spring-projects
spring-framework
15,482
52153bd4541f374d433463ef11be0b6298595ae2
Sam Brannen
Sam Brannen
Document search scope in Ann*[Element]Utils This commit improves the documentation for AnnotationUtils and AnnotatedElementUtils by explaining that the scope of most annotation searches is limited to finding the first such annotation, resulting in additional such annotations being silently ignored. Issue: SPR-13015
document search scope in ann*[element]utils
43
false
false
5
false
false
false
spring-projects
spring-framework
15,483
00147379f94660b552b961f0969664acaedb3e5c
Juergen Hoeller
Juergen Hoeller
Polishing (cherry picked from commit 9e925aa)
polishing
9
false
false
1
false
false
false
spring-projects
spring-framework
15,484
0d2859c99b9100605d83e47e7de706da149ac10b
Juergen Hoeller
Juergen Hoeller
Javadoc fixes (cherry picked from commit a8f7539)
javadoc fixes
13
false
false
2
false
false
false
spring-projects
spring-framework
15,485
58d8a81b16540cfd7a716373f55ac00e8e9fa39b
Brian Clozel
Brian Clozel
Fix maven dependency scope conflicts in MergePlugin Spring Framework's build is using a custom MergePlugin in order to merge a project into another one and share/override configuration and dependencies. Prior to this commit, two projects merged into a third one could trigger dependency conflicts when exporting the pr...
fix maven dependency scope conflicts in mergeplugin
51
false
false
7
false
false
false
spring-projects
spring-framework
15,486
6422f7a0a1cf209301c581db0ad8a483db1efda7
Sam Brannen
Sam Brannen
Add TODO re: FailOnTimeout.builder() & JUnit 4.12
failontimeout.builder() & junit 4.12
36
false
false
4
false
false
false
spring-projects
spring-framework
15,487
64a01d64c5a6fa963d93d8430b318fe1dd6eb4f4
Juergen Hoeller
Juergen Hoeller
Polishing
polishing
9
false
false
1
false
false
false
spring-projects
spring-framework
15,488
549e888cd7dddd2aad922cac7952fa49e7c20691
Juergen Hoeller
Juergen Hoeller
CustomBooleanEditor avoids potential NPE in case of allowEmpty=false Issue: SPR-13010
custombooleaneditor avoids potential npe in case of allowempty=false
68
false
false
8
false
false
false
spring-projects
spring-framework
15,489
d14e29a5c0379e3519305fe61112454d0d1bc9ce
Sam Brannen
Sam Brannen
Polish SpringJUnit4ClassRunner and related support classes
polish springjunit4classrunner and related support classes
58
false
false
6
false
false
false
spring-projects
spring-framework
15,490
7ea50238a65442e6a9a8856142243bdec49e8806
Brian Clozel
Brian Clozel
Upgrade Netty to 4.0.28.Final
upgrade netty to 4.0.28.final
29
false
false
4
true
true
true
spring-projects
spring-framework
15,491
fcf75c90b12f9344d70a7d8f89ce8c3ae9ee46c9
Sam Brannen
Sam Brannen
Fix broken AnnotationAttributesTests Issue: SPR-13007
fix broken annotationattributestests
36
false
false
3
true
true
true
spring-projects
spring-framework
15,492
92c1751d356456cadc7703d1efc1767b80ebd82a
Sam Brannen
Sam Brannen
Merge pull request #797 from marschall/SPR-13007 * SPR-13007: Avoid eager formatting in pre-condition checks
merge pull request #797 from marschall/spr-13007
48
true
false
6
false
false
false
spring-projects
spring-framework
15,493
994d86992caf468402697b4bcf3685c24f28fed5
Philippe Marschall
Sam Brannen
Avoid eager formatting in pre-condition checks In general, the Spring Framework aims to construct error message strings only if an actual error has occurred. This seems to be the common pattern in the codebase and saves both CPU and memory. However, there are some places where eager error message formatting occurs unn...
avoid eager formatting in pre-condition checks
46
false
false
6
false
true
false
spring-projects
spring-framework
15,494
cf51f0c0aa84d48de5b4ac2ea1029d80efb552c7
Sam Brannen
Sam Brannen
Assert pre-conditions in AopTestUtils Issue: SPR-13005
assert pre-conditions in aoptestutils
37
false
false
4
true
true
true
spring-projects
spring-framework
15,495
efe3a35da871a7ef34148dfb65d6a96cac1fccb9
Sam Brannen
Sam Brannen
Introduce AOP testing utilities This commit introduces support in the spring-test module for obtaining a reference to the underlying target object hidden behind one or more proxies. Specifically this commit introduces AopTestUtils with two methods: - getTargetObject(Object) - getUltimateTargetObject(Object) Issu...
introduce aop testing utilities
31
false
false
4
true
true
true
spring-projects
spring-framework
15,496
1f54ba001b6c114aa9ef49a73d176837a23ea56d
Sam Brannen
Sam Brannen
Polish Javadoc for AopUtils, Advised, & related classes
polish javadoc for aoputils, advised, & related classes
55
false
false
8
false
false
false
spring-projects
spring-framework
15,497
94f9a0b03a2335d7ccc021c7c33b8b32e01d83ed
Juergen Hoeller
Juergen Hoeller
Hibernate 5 version references in javadoc Issue: SPR-11694
hibernate 5 version references in javadoc
41
false
false
6
false
true
false
spring-projects
spring-framework
15,498
cf0a91679336bdc195aec5aa1688e82beaaa9a86
Juergen Hoeller
Juergen Hoeller
Consistent non-public AsyncRequestInterceptor classes Issue: SPR-11694
consistent non-public asyncrequestinterceptor classes
53
false
false
4
false
false
false
spring-projects
spring-framework
15,499
f9c391034161a2fc795033958d68820ca2e1ed93
Juergen Hoeller
Juergen Hoeller
Support for Hibernate ORM 5.0 Beta 2 Issue: SPR-11694
support for hibernate orm 5.0 beta 2
36
false
false
7
false
false
false
spring-projects
spring-framework
15,500
1e046435ab3461e417ae822a6903bfb14359e7bb
Juergen Hoeller
Juergen Hoeller
AntPathMatcher actually throws IllegalArgumentException if patterns cannot be combined Issue: SPR-12998
antpathmatcher actually throws illegalargumentexception if patterns cannot be combined
86
false
false
9
false
false
false
spring-projects
spring-framework
15,501
acfc95e260b189f41225464127d91d553f515c83
Juergen Hoeller
Juergen Hoeller
Merge pull request #796 from kazuki43zoo/SPR-13000 Modify to use the ConfigurableApplicationContext in reference document
merge pull request #796 from kazuki43zoo/spr-13000
50
true
false
6
false
false
false
spring-projects
spring-framework
15,502
7926dea3525ace6c084a6c161af4602e54531cc1
Kazuki Shimizu
Kazuki Shimizu
Modify to use the ConfigurableApplicationContext in reference document Issue: SPR-13000
modify to use the configurableapplicationcontext in reference document
70
false
false
8
false
false
false
spring-projects
spring-framework
15,503
1722fa667819c3cafc6b5de93d7c93bbd570cd47
Juergen Hoeller
Juergen Hoeller
JSR-223 based StandardScriptFactory (including <lang:std> support) This commit also completes 4.2 schema variants in spring-context. Issue: SPR-5215
std> support)
13
false
false
2
false
false
false
spring-projects
spring-framework
15,504
4bf32578b561d42fb3a7c7dcdef4e9e014b6e263
Sam Brannen
Sam Brannen
Rename MethodBasedEvaluationContextTest to *Tests
rename methodbasedevaluationcontexttest to *tests
49
false
false
4
false
true
false
spring-projects
spring-framework
15,505
b84b0e237b454a6ec18f5edcfed57298e26b73fb
Sam Brannen
Sam Brannen
Delete spring-context's dependency on spring-beans-groovy Commit 5648fbfc3155ddf4ead7388cfd7bc9e90b86f9d8 introduced a compile-time dependency on spring-beans-groovy in the spring-context module which breaks the build on the CI server since the Animal Sniffer task cannot find a JAR file for spring-beans-groovy. This ...
delete spring-context's dependency on spring-beans-groovy
57
false
false
5
false
false
false
spring-projects
spring-framework
15,506
04d6afe54d39d9769c9c54e45a5e61e946156152
Sam Brannen
Sam Brannen
Support arbitrary levels of meta-annotations in TypeDescriptor Prior to this commit, the `getAnnotation()` method in `TypeDescriptor` only supported a single level of meta-annotations. In other words, the annotation hierarchy would not be exhaustively searched. This commit provides support for arbitrary levels of met...
support arbitrary levels of meta-annotations in typedescriptor
62
false
false
7
true
true
false
spring-projects
spring-framework
15,507
5f03c97295514fb7577ef2fc1fec2e3d16df0858
Sam Brannen
Sam Brannen
Polish Javadoc for MethodParameter
polish javadoc for methodparameter
34
false
false
4
false
false
false
spring-projects
spring-framework
15,508
638926be4fcd8f445163dcdda513caaae0174fa7
Sam Brannen
Sam Brannen
Use JUnit ExpectedException rule in AntPathMatcherTests
use junit expectedexception rule in antpathmatchertests
55
false
false
6
false
true
false
spring-projects
spring-framework
15,509
c7cdbe126db6ab5e3422e764d4effa3a5ef2148b
Sam Brannen
Sam Brannen
Introduce failing test case in AntPathMatcherTests Issue: SPR-12998
introduce failing test case in antpathmatchertests
50
false
false
6
true
true
true
spring-projects
spring-framework
15,510
a80d0e87a481242bc0a32aae26e0135f98913596
Sam Brannen
Sam Brannen
Merge pull request #795 from poutsma/SPR-12975 * SPR-12975: Remove duplicate separators when combining paths
merge pull request #795 from poutsma/spr-12975
46
true
false
6
false
false
false
spring-projects
spring-framework
15,511
76beb36e4bd1162bed6ff91f4ba5df6f9e47b528
Arjen Poutsma
Sam Brannen
Remove duplicate separators when combining paths Prior to this commit, AntPathMatcher would not correctly combine a path that ends with a separator with a path that starts with a separator. For example, `/foo/` + `/bar` combined into `/foo//bar`. Specifically, this commit: - Removes the duplicated separator in comb...
remove duplicate separators when combining paths
48
false
false
6
true
true
true
spring-projects
spring-framework
15,512
5648fbfc3155ddf4ead7388cfd7bc9e90b86f9d8
Juergen Hoeller
Juergen Hoeller
Latest dependency updates (EhCache 2.10, Jackson 2.5.3, JasperReports 6.0.4, SLF4J 1.7.12, Tomcat 8.0.22, Undertow 1.2.5)
latest dependency updates (ehcache 2.10, jackson 2.5.3, jasperreports 6.0.4, slf4j 1.7.12, tomcat 8.0.22, undertow 1.2.5)
121
false
false
15
false
false
false
spring-projects
spring-framework
15,513
dbd82d128df87f2a03fdb47c7fd11682265ae134
Juergen Hoeller
Juergen Hoeller
Polishing
polishing
9
false
false
1
false
false
false
spring-projects
spring-framework
15,514
e87dc9f82da6653c46951f5fec1b12859e297037
Juergen Hoeller
Juergen Hoeller
Test for AspectJ pointcuts with lambdas (currently marked as ignored) Issue: SPR-11807
test for aspectj pointcuts with lambdas (currently marked as ignored)
69
false
false
10
false
false
false
spring-projects
spring-framework
15,515
eb9eadbb5067fc6af7041ad14b78b31ddbb9d449
Rossen Stoyanchev
Rossen Stoyanchev
Polish
polish
6
false
false
1
false
false
false
spring-projects
spring-framework
15,516
a36319e91ccf4624e2dcdba529496f0dc1633920
Arjen Poutsma
Rossen Stoyanchev
Introduce Marshalling MessageConverter This commit introduces a messaging.converter.MessageConverter that marshals to/from XML using the abstractions provided in the OXM module. Issue: SPR-12726
introduce marshalling messageconverter
38
false
false
3
true
true
true
spring-projects
spring-framework
15,517
2b528bb6436da728d130f595b1a12a02133bd204
Rossen Stoyanchev
Rossen Stoyanchev
Improve and update docs on MvcUriComponentsBuilder Issue: SPR-12617
improve and update docs on mvcuricomponentsbuilder
50
false
false
6
false
false
false
spring-projects
spring-framework
15,518
1cc042d4c70f425cde00ec107521dd99c10fe70a
Juergen Hoeller
Juergen Hoeller
Polishing
polishing
9
false
false
1
false
false
false
spring-projects
spring-framework
15,519
783cb2c438716304769fb3861078e6e6fabf1a95
Juergen Hoeller
Juergen Hoeller
StringUtils.commaDelimitedListToSet/removeDuplicateStrings preserves original order Issue: SPR-12003
stringutils.commadelimitedlisttoset/removeduplicatestrings preserves original order
83
false
false
4
false
false
false
spring-projects
spring-framework
15,520
b90085500ddfee96febba6b7149eea2cdfbf3157
Juergen Hoeller
Juergen Hoeller
Revert introduction of isNotEmpty aliases Issue: SPR-12009
revert introduction of isnotempty aliases
41
false
false
5
false
true
false
spring-projects
spring-framework
15,521
db80378dbef4bba302a3f1248f7315ae1ef8f614
Juergen Hoeller
Juergen Hoeller
Avoid infinite loop in PatternMatchUtils Issue: SPR-12971
avoid infinite loop in patternmatchutils
40
false
false
5
true
true
true
spring-projects
spring-framework
15,522
2c043ec9d7ad41a171882a7a06281fa4fd2bf0df
Juergen Hoeller
Juergen Hoeller
Fix for ASM issue 317555 Issue: SPR-12957
fix for asm issue 317555
24
false
false
5
false
false
false
spring-projects
spring-framework
15,523
cb01f89a40de6ad25a737e172825518cf807691e
Rossen Stoyanchev
Rossen Stoyanchev
Upgrade to reactor 2.0.1
upgrade to reactor 2.0.1
24
false
false
4
false
false
false
spring-projects
spring-framework
15,524
5465506fdd333593ddd66b36c71460211c87b55c
Sebastien Deleuze
Sebastien Deleuze
Register automatically Jackson's JDK 8 module when available Issue: SPR-12983
register automatically jackson's jdk 8 module when available
60
false
false
8
false
false
false
spring-projects
spring-framework
15,525
a89c0ecf5de18b5e45b2b55e9f8680a126a09e1b
Sam Brannen
Sam Brannen
Fix broken cross-references in reference manual
fix broken cross-references in reference manual
47
false
false
6
true
true
true
spring-projects
spring-framework
15,526
401bcd4a8a719132e73c856b40af7b8ce2a82d70
Sam Brannen
Sam Brannen
Polish Javadoc for AnnotatedElementUtils
polish javadoc for annotatedelementutils
40
false
false
4
false
false
false
spring-projects
spring-framework
15,527
2b2186781b71de6319a517a57a7d4f48ef065edf
Sebastien Deleuze
Sebastien Deleuze
Fix JSON Views code sample in the documentation Issue: SPR-12994
fix json views code sample in the documentation
47
false
false
8
false
false
false
spring-projects
spring-framework
15,528
98f8838173f12b32a926f855d744d6119fb9767e
Brian Clozel
Brian Clozel
Upgrade docbook-reference-plugin to 0.3.1 Previous docbook-reference-plugin version used some conflicting API with Gradle 2.4.
upgrade docbook-reference-plugin to 0.3.1
41
false
false
4
false
false
false
spring-projects
spring-framework
15,529
ed60b8cf5b2f0216ac06d1ae25f176b73a22d69b
Sam Brannen
Sam Brannen
Upgrade build to Gradle 2.4 Issue: SPR-12772
upgrade build to gradle 2.4
27
false
false
5
true
false
true
spring-projects
spring-framework
15,530
7a690df92522a2e8bf0aad1b27c6238fbe489339
Sam Brannen
Sam Brannen
Remove trailing whitespace from Java source code
remove trailing whitespace from java source code
48
false
false
7
true
true
true
spring-projects
spring-framework
15,531
edc66d76afac8800d1f4c773876b1ba1865c8159
Kazuki Shimizu
Sam Brannen
Improve description of DefaultLobHandler in reference manual Issue: SPR-12985
improve description of defaultlobhandler in reference manual
60
false
false
7
true
true
false
spring-projects
spring-framework
15,532
250aef81e4c44db63eed471443325cf77373c758
Sam Brannen
Sam Brannen
Merge pull request #791 from kazuki43zoo/SPR-12990 Ensure image of OXM exceptions hierarchy is displayed in reference manual Issue: SPR-12990
merge pull request #791 from kazuki43zoo/spr-12990
50
true
false
6
false
false
false
spring-projects
spring-framework
15,533
6db8f24aaf255f6fec720cd58b232c26ba623287
Sam Brannen
Sam Brannen
Polish AnnotatedElementUtils[Tests] Issue: SPR-11514
polish annotatedelementutils[tests]
35
false
false
2
false
false
false
spring-projects
spring-framework
15,534
270308dfd9f2a1f4889c5b8ec3f759a2aa632d45
Sam Brannen
Sam Brannen
Document "get vs. find" semantics in AnnotatedElementUtils Issue: SPR-11514
document "get vs. find" semantics in annotatedelementutils
58
false
false
7
false
false
false
spring-projects
spring-framework
15,535
5c0f98aea43499ac90eb0e3ba4cfc717ddc882cc
Sam Brannen
Sam Brannen
Document & test AnnotatedElementUtils.getAllAnnotationAttributes Issue: SPR-11514
document & test annotatedelementutils.getallannotationattributes
64
false
false
4
false
false
false
spring-projects
spring-framework
15,536
2015781ea190d7e8219cc6be1bc67cb44a1cdba3
Sam Brannen
Sam Brannen
Rename duplicate EnvironmentIntegrationTests to EnvironmentSystemIntegrationTests
rename duplicate environmentintegrationtests to environmentsystemintegrationtests
81
false
false
5
false
false
false
spring-projects
spring-framework
15,537
8b545f47bd625aba2cd7d4d4877498d5a28f4f28
Brian Clozel
Brian Clozel
Fix remote context handling in UrlTag Prior to this change, the `UrlTag` would simply append the remote context and the path value in case of a context relative URL. The following code snippet would output "//foo": ``` <spring:url value="/foo" context="/" /> ``` This change now removes trailing slashes in remote co...
fix remote context handling in urltag
37
false
false
6
true
true
true
spring-projects
spring-framework
15,538
9eb35185831b32c3a3a6d6c16adace69f8f81b09
Sam Brannen
Sam Brannen
Introduce tests for AnnotatedElementUtils.isAnnotated() Issue: SPR-11514
introduce tests for annotatedelementutils.isannotated()
55
false
false
4
true
true
false
spring-projects
spring-framework
15,539
ececf32c052082724ab86b5d2b567ffc7c137b67
Sam Brannen
Sam Brannen
Revert unintentional change in AnnotationUtils
revert unintentional change in annotationutils
46
false
false
5
false
true
false
spring-projects
spring-framework
15,540
b723dcebba13380bc7ac6d60f1c0127c2645a85d
Sam Brannen
Sam Brannen
Polish inline documentation in AnnotatedElementUtils
polish inline documentation in annotatedelementutils
52
false
false
5
false
false
false
spring-projects
spring-framework
15,541
0ddcbce90ac37581988a8850e990d98731ff77fa
Rossen Stoyanchev
Rossen Stoyanchev
MvcUriCB no longer extends UriCB Before 4.2 the MvcUriComponentsBuilder exposed only static factory methods and therefore there should be no reason for it to extend UriComponentsBuilder (design oversight). It's also highly unlikely for application code to treat MvcUriCB as UriCB since there is no need and no way to ob...
mvcuricb no longer extends uricb
32
false
false
5
false
false
false
spring-projects
spring-framework
15,542
cbabb00ba29a9b8ac69ff0219a4c858d6b82d950
Rossen Stoyanchev
Rossen Stoyanchev
Polish
polish
6
false
false
1
false
false
false
spring-projects
spring-framework
15,543
1cd0f433e0a5dd9b659143664ea432d24b4386eb
Rossen Stoyanchev
Rossen Stoyanchev
Allow MvcUriComponentsBuilder instance with baseUrl Before this change MvcUriComponentsBuilder exposed only static factory methods for creating links where the links are relative to the current request or a baseUrl explicitly provided as an argument. This change allows creating an MvcUriComponents builder instance wi...
allow mvcuricomponentsbuilder instance with baseurl
51
false
false
5
true
true
false
spring-projects
spring-framework
15,544
69b0791926b44ba59b32077b8574fe7db92e895e
Sam Brannen
Sam Brannen
Favor local, composed annotations in the TCF Prior to this commit, AnnotationAttributes retrieved from MetaAnnotationUtils's AnnotationDescriptor could contain attributes from the wrong annotation if an inherited annotation shadowed a locally declared composed annotation. This commit addresses this issue by invoking ...
favor local, composed annotations in the tcf
44
false
false
7
true
true
true
spring-projects
spring-framework
15,545
e0d2dbd21da68e1e5bb6279934b8a2a7461aec51
Sam Brannen
Sam Brannen
Polish Javadoc & TODOs in ApplicationListenerMethodAdapter Issue: SPR-12738
polish javadoc & todos in applicationlistenermethodadapter
58
false
false
6
false
false
false
spring-projects
spring-framework
15,546
8ece1b145cf8e462a343c6088b4a75af67ea1b89
Sam Brannen
Sam Brannen
Introduce failing/ignored tests for SPR-12738 Issue: SPR-12738
introduce failing/ignored tests for spr-12738
45
false
false
5
false
false
false
spring-projects
spring-framework
15,547
7f0f04dfe38ead84e502f0d34897d1c415565cdd
Sam Brannen
Sam Brannen
Support annotations on interfaces in AnnotatedElementUtils This commit introduces support in AnnotatedElementUtils for finding annotations declared on interfaces at the type level. NB: this commit does not include support for finding annotations declared on interface methods. In order to maintain backward compatibil...
support annotations on interfaces in annotatedelementutils
58
false
false
6
false
true
false
spring-projects
spring-framework
15,548
9b7fd8be4d20520f12a2614057629884d2d8a5f4
Sam Brannen
Sam Brannen
Polish Javadoc for AnnotationUtils
polish javadoc for annotationutils
34
false
false
4
false
false
false
spring-projects
spring-framework
15,549
9c6d4b784871803c475255c5422c10ee54e3721f
Sam Brannen
Sam Brannen
Assert status quo for interface support in AnnotationUtils
assert status quo for interface support in annotationutils
58
false
false
8
true
true
false
spring-projects
spring-framework
15,550
16ee69203cc6a556f1b8efb1ccebfe312826e30f
Rossen Stoyanchev
Rossen Stoyanchev
Add support for destination vars in @SendTo/SendToUser Issue: SPR-12170
add support for destination vars in @sendto/sendtouser
54
false
false
7
true
true
false
spring-projects
spring-framework
15,551
a3159dfbf24168b95f9d3435bea15721cde8fb38
Sebastien Deleuze
Sebastien Deleuze
Add script based templating support This commit adds support for script based templating. Any templating library running on top of a JSR-223 ScriptEngine that implements Invocable like Nashorn or JRuby could be used. For example, in order to render Mustache templates thanks to the Nashorn Javascript engine provided w...
add script based templating support
35
false
false
5
false
false
false
spring-projects
spring-framework
15,552
b6327acec825aefadead62bd7825425b048b214c
Rossen Stoyanchev
Rossen Stoyanchev
Add SpEL based selector to DefaultSubscriptionRegistry Issue: SPR-12884
add spel based selector to defaultsubscriptionregistry
54
false
false
6
false
false
false
spring-projects
spring-framework
15,553
86733a98da91c57d2ac28365a82da3e3fbd15fb1
Sam Brannen
Sam Brannen
Polish ApplicationListenerMethodAdapter
polish applicationlistenermethodadapter
39
false
false
2
false
false
false
spring-projects
spring-framework
15,554
b9b0b78fa1f80efa5f5549a862d44d11b0bc3ba1
Sam Brannen
Sam Brannen
Support n meta-annotation levels on methods in AnnotationUtils Prior to this commit, the search algorithm used by the findAnnotation(Method, Class) method in AnnotationUtils only found direct annotations or direct meta-annotations (i.e., one level of meta-annotations). This commit reworks the search algorithm so that...
support n meta-annotation levels on methods in annotationutils
62
false
false
8
false
true
false
spring-projects
spring-framework
15,555
666d1cecc8e1e347e69bc9b58333893dbe63c0be
Sam Brannen
Sam Brannen
Fix broken test in AnnotationUtilsTests
fix broken test in annotationutilstests
39
false
false
5
true
true
true
spring-projects
spring-framework
15,556