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
19f783bdd7b3d316414cc4ae78e7e68c87dc6126
Juergen Hoeller
Juergen Hoeller
Fixed general test suite problems found during OpenJDK 8 upgrade Issue: SPR-9639
fixed general test suite problems found during openjdk 8 upgrade
64
false
false
10
false
false
false
spring-projects
spring-framework
18,857
9c09a0a0375364a2bfe5f3e2c768d298c41e6719
Juergen Hoeller
Juergen Hoeller
Consistent Map/Set ordering Use LinkedHashMaps/Sets wherever exposed to users, and code tests defensively in terms of expected Map/Set ordering. Otherwise, there'll be runtime order differences between JDK 7 and JDK 8 due to internal HashMap/Set implementation differences. Issue: SPR-9639
consistent map/set ordering
27
false
false
3
false
false
false
spring-projects
spring-framework
18,858
b5d44e1d15dc657ba51697c8de46ec1cc46fc71b
Juergen Hoeller
Juergen Hoeller
Revised Joda-Time support (as a side effect of JSR-310 support in Spring 4.0) Issue: SPR-9641
revised joda-time support (as a side effect of jsr-310 support in spring 4.0)
77
false
false
13
false
false
false
spring-projects
spring-framework
18,859
d3a406876834b91a4cf3b1e840855caeb0446d28
Juergen Hoeller
Juergen Hoeller
Minimized ASM usage In particular, avoid accidental usage of ASM for core JDK types - which will fail in case of a new bytecode version in the JDK, even if the application itself has been compiled with an earlier bytecode target. Issue: SPR-10292
minimized asm usage
19
false
false
3
false
false
false
spring-projects
spring-framework
18,860
f9078c947fb5ef1fb4627015f2f5e355294c085e
Rossen Stoyanchev
Rossen Stoyanchev
Add WebSocketMessage and WebSocketHandler sub-interfcs There is now a WebSocketMessage type with TextMessage and BinaryMessage sub-types. WebSocketHandler is also sub-divided into TextMessageHandler and BinaryMessageHandler, so that applications can choose to handle text, binary, or both. Also in this commit, the Soc...
add websocketmessage and websockethandler sub-interfcs
54
false
false
5
true
true
false
spring-projects
spring-framework
18,861
2046629945d288944b13401958f5d27e04bbe835
Rossen Stoyanchev
Rossen Stoyanchev
Add WebSocketClient and WebSocketConnectionManager This change adds a WebSocketClient abstraction and enables the use of WebSocketHandler on the client side.
add websocketclient and websocketconnectionmanager
50
false
false
4
true
true
true
spring-projects
spring-framework
18,862
ab5d60d343209832d3b27195fae8385b472a181b
Rossen Stoyanchev
Rossen Stoyanchev
Improve APIs for WebSocket and SockJS messages
improve apis for websocket and sockjs messages
46
false
false
7
true
true
true
spring-projects
spring-framework
18,863
20a9df772a2d4bac003264636ec936f82888a5f2
Rossen Stoyanchev
Rossen Stoyanchev
Update README-WEBSOCKET.md
update readme-websocket.md
26
false
false
2
false
true
false
spring-projects
spring-framework
18,864
c810d9531606b30ac14fe4ab4a89e7aa819764ea
Rossen Stoyanchev
Rossen Stoyanchev
Update README-WEBSOCKET.md
update readme-websocket.md
26
false
false
2
false
true
false
spring-projects
spring-framework
18,865
967eae0efb148a6d499f639ea182f83058f08ec8
Rossen Stoyanchev
Rossen Stoyanchev
Add README-WEBSOCKET.md
add readme-websocket.md
23
false
false
2
false
true
false
spring-projects
spring-framework
18,866
d475e166047c01e78297a522100be58f027659b2
Rossen Stoyanchev
Rossen Stoyanchev
Modify build version for branch CI snapshots
modify build version for branch ci snapshots
44
false
false
7
false
true
false
spring-projects
spring-framework
18,867
6273fc41f1426a398fdcd039dc6e59113536876b
Rossen Stoyanchev
Rossen Stoyanchev
Rename SockJS session type to include "SockJs"
rename sockjs session type to include "sockjs"
46
false
false
7
false
true
false
spring-projects
spring-framework
18,868
2794224b28430190c53c7cd284ccfe33c8eb5d1c
Rossen Stoyanchev
Rossen Stoyanchev
Add onClosed to SockJsSessionSupport sub-classes As opposed to close(), which actively closes the session, the onClosed method is called when the underlying connection has been closed or disconnected.
add onclosed to sockjssessionsupport sub-classes
48
false
false
5
true
false
true
spring-projects
spring-framework
18,869
f056f7e2adfcb8c8ad36c20a6b7744d86aa13d7e
Rossen Stoyanchev
Rossen Stoyanchev
Init and destroy internally created SockJS schedulers
init and destroy internally created sockjs schedulers
53
false
false
7
false
false
false
spring-projects
spring-framework
18,870
177e0821721d57fa11d82988256e25a63fc3be85
Rossen Stoyanchev
Rossen Stoyanchev
Refactor SockJS and WebSocket layer configuration Add HandlerProvider<T> class Modify HandshakeHandler to accept + adapt WebSocketHandler at runtime Modify SockJsService to accept + adapt SockJsHandler at runtime
refactor sockjs and websocket layer configuration
49
false
false
6
false
false
false
spring-projects
spring-framework
18,871
71e82069cee16ecad1da49800c3673b85b70756e
Rossen Stoyanchev
Rossen Stoyanchev
Add SockJsSessionFactory
add sockjssessionfactory
24
false
false
2
true
true
false
spring-projects
spring-framework
18,872
3a2c15b0fd5d370f80964b8f4d62b353823e06cf
Rossen Stoyanchev
Rossen Stoyanchev
Add flush method to ServerHttpResponse This is useful to make sure response headers are written to the underlying response. It is also useful in conjunction with long running, async requests and HTTP streaming, to ensure the Servlet response buffer is sent to the client without additional delay and also causes an IOEx...
add flush method to serverhttpresponse
38
false
false
5
true
true
true
spring-projects
spring-framework
18,873
db6f8f2d4b7c0c6b1cc1f24bf1859886c9f9f0b4
Rossen Stoyanchev
Rossen Stoyanchev
Add package-info, javadoc, and update package names
add package-info, javadoc, and update package names
51
false
false
7
true
true
false
spring-projects
spring-framework
18,874
592da431a8ac6b26a92ffc158adc14918f889505
Rossen Stoyanchev
Rossen Stoyanchev
Add Glassfish request upgrade strategy
add glassfish request upgrade strategy
38
false
false
5
false
false
false
spring-projects
spring-framework
18,875
6bd6311214c9d8a4c7c0af56a71c435c777fabb8
Rossen Stoyanchev
Rossen Stoyanchev
Refactor SockJS code - configure SockJS handler by type (as well as by instance) - add method to obtain SockJS handler instance via SockJsConfiguration - detect presense of jsr-356 and use it if available
refactor sockjs code
20
false
false
3
false
false
false
spring-projects
spring-framework
18,876
4ad6091510f4ddbd864cd23e64e3752b8f3a0659
Rossen Stoyanchev
Rossen Stoyanchev
Debug and test SockJS server support
debug and test sockjs server support
36
false
false
6
false
false
false
spring-projects
spring-framework
18,877
41153efd03fa3b2811932170bea9810533f62b52
Rossen Stoyanchev
Rossen Stoyanchev
Polish in EndpointRegistration
polish in endpointregistration
30
false
false
3
false
false
false
spring-projects
spring-framework
18,878
6cf17449fa1014c378fe101fc1cb4c3670984817
Rossen Stoyanchev
Rossen Stoyanchev
Add endpoint connection manager
add endpoint connection manager
31
false
false
4
false
true
false
spring-projects
spring-framework
18,879
914e969ac3a90270d262c4cb817a5ed1eecb2baa
Rossen Stoyanchev
Rossen Stoyanchev
Add support for @ServerEndpoint annotated classes
add support for @serverendpoint annotated classes
49
false
false
6
true
true
true
spring-projects
spring-framework
18,880
88447e503b1c0eeccceb2de28876af9bcd4db90f
Rossen Stoyanchev
Rossen Stoyanchev
Add first cut of SockJS server support
add first cut of sockjs server support
38
false
false
7
true
true
true
spring-projects
spring-framework
18,881
30ab5953f973e56bbcdc971c700657da5cc2e446
Rossen Stoyanchev
Rossen Stoyanchev
Add EndpointRequestUpgradeStrategy Now there is just one EndpointHandshakeRequestHandler that works on different runtimes.
add endpointrequestupgradestrategy
34
false
false
2
true
true
false
spring-projects
spring-framework
18,882
741927664c456bd2ab5f9710ef4758092754457d
Rossen Stoyanchev
Rossen Stoyanchev
Update package structure
update package structure
24
false
false
3
true
false
true
spring-projects
spring-framework
18,883
715018fe75ccfe6c8088f25c4d7c237003e3dcc4
Rossen Stoyanchev
Rossen Stoyanchev
Add handshake request handler abstraction
add handshake request handler abstraction
41
false
false
5
false
false
false
spring-projects
spring-framework
18,884
cdd7d7bd8864b826c9ddd8cb7edb384e25083e6d
Rossen Stoyanchev
Rossen Stoyanchev
Add javax.websocket.Endpoint configuration support
add javax.websocket.endpoint configuration support
50
false
false
4
true
true
true
spring-projects
spring-framework
18,885
4e67f809fbc1957e40fc787686b63254eaa8d7fa
Rossen Stoyanchev
Rossen Stoyanchev
Add spring-websocket module
add spring-websocket module
27
false
false
3
false
false
false
spring-projects
spring-framework
18,886
34bcdcfe85ecae7fba641ffc74f6240a4579b0b5
Phillip Webb
Phillip Webb
Merge pull request #269 from sslavic/SPR-10438 # By Stevo Slavic * SPR-10438: Fix JasperReport tests to ignore missing fonts
merge pull request #269 from sslavic/spr-10438
46
true
false
6
false
false
false
spring-projects
spring-framework
18,887
d80ea16291d11c1611ebfe12669d4a67873d648c
Stevo Slavic
Phillip Webb
Fix JasperReport tests to ignore missing fonts Add 'jasperreports.properties' to ignore missing fonts in order that tests pass on Linux. The upgraded JasperReports 5.0.4 throws a JRFontNotFoundException when a report font is not found. This caused Spring MVC tests to fail since the example reports used the 'Arial' fo...
fix jasperreport tests to ignore missing fonts
46
false
false
7
true
true
true
spring-projects
spring-framework
18,888
761bd9fd56a49662557dfa748ffa39121bb217cd
Phillip Webb
Phillip Webb
Merge branch '3.2.x' * 3.2.x: Update javadoc external links JdbcTemplate etc Removed unnecessary default value of LifecycleGroup.lifecycleBeans Introduced public ArgumentPreparedStatementSetter and ArgumentTypePreparedStatementSetter classes Defensively uses JDBC 3.0 getParameterType call for Oracle driver c...
merge branch '3.2.x'
20
true
false
3
false
true
false
spring-projects
spring-framework
18,889
cf687fcc72a84ec090b170f39d5ec016c5017fdb
Sam Brannen
Sam Brannen
Fix typos in ServiceLocatorFactoryBean
fix typos in servicelocatorfactorybean
38
false
false
4
true
true
true
spring-projects
spring-framework
18,890
db3bbb5f8cb945b8f29fbd83aff9bbd2dbc70e1c
Phillip Webb
Phillip Webb
Update javadoc external links Fix broken external javadoc links for URLs that have been recently moved.
update javadoc external links
29
false
false
4
true
true
true
spring-projects
spring-framework
18,891
942cab4d876058a81c518fee736dc2277d2fdad8
Juergen Hoeller
Juergen Hoeller
OpenJpaDialect javadoc makes no reference to TopLink anymore
openjpadialect javadoc makes no reference to toplink anymore
60
false
false
8
false
false
false
spring-projects
spring-framework
18,892
6e6446cc7ca420e4aad6d7ef6cdd809fc2210c99
Juergen Hoeller
Juergen Hoeller
EclipseLinkJpaDialect uses JPA 2.0's EntityManager unwrap method now for retrieving the underlying UnitOfWork/Connection
eclipselinkjpadialect uses jpa 2.0's entitymanager unwrap method now for retrieving the underlying unitofwork/connection
120
false
false
13
false
false
false
spring-projects
spring-framework
18,893
184455d6307ea30fc469029cde97d2a1a51d11db
Juergen Hoeller
Juergen Hoeller
Upgraded to Hibernate 4.2.0 HibernateJpaDialect's HibernateConnectionHandle does not call close() for Hibernate 4.x anymore, since on 4.2, the exposed Connection handle isn't a "borrowed connection" wrapper but rather the actual underlying Connection - with a close() call immediately returning the Connection to the po...
upgraded to hibernate 4.2.0
27
false
false
4
false
false
false
spring-projects
spring-framework
18,894
6d710563ccc1cd113749f489ee1d95c4922a8267
Juergen Hoeller
Juergen Hoeller
Upgraded to Commons FileUpload 1.3 and JSF 2.1, removing deprecated JSF 1.1 VariableResolvers
upgraded to commons fileupload 1.3 and jsf 2.1, removing deprecated jsf 1.1 variableresolvers
93
false
false
13
false
false
false
spring-projects
spring-framework
18,895
39d043d773fe05e973fc10cb87c54c5f27112873
Phillip Webb
Phillip Webb
Update javadoc external links Fix broken external javadoc links for URLs that have been recently moved.
update javadoc external links
29
false
false
4
true
true
true
spring-projects
spring-framework
18,896
15441da969148d5d1849646b0d76110c72192966
Juergen Hoeller
Juergen Hoeller
Removed Apache Commons HttpClient support (superseded by Apache HttpComponents)
removed apache commons httpclient support (superseded by apache httpcomponents)
79
false
false
9
false
false
false
spring-projects
spring-framework
18,897
8fab14dfebe9736c5b44ae23096be94b015309d0
Juergen Hoeller
Juergen Hoeller
Upgraded to JasperReports 5.0 (preserving compatibility with all previous releases) and POI 3.9 (preserving compatibility with POI 3.5+)
upgraded to jasperreports 5.0 (preserving compatibility with all previous releases) and poi 3.9 (preserving compatibility with poi 3.5+)
136
false
false
18
false
false
false
spring-projects
spring-framework
18,898
9caa514c69d1282e40daa065a779ea58f356e593
Juergen Hoeller
Juergen Hoeller
Removed deprecated JpaTemplate and JpaInterceptor classes; dropped unused EntityManager(Factory)Plus mechanism
removed deprecated jpatemplate and jpainterceptor classes; dropped unused entitymanager(factory)plus mechanism
110
false
false
10
false
false
false
spring-projects
spring-framework
18,899
a2f8902b3a8569a1ebb4b4c87fab5a412cf4d389
Juergen Hoeller
unknown
Inlined AntPathStringMatcher into AntPathMatcher Also initializing the capacity of the AntPathStringMatcher cache to 256 now.
inlined antpathstringmatcher into antpathmatcher
48
false
false
4
false
false
false
spring-projects
spring-framework
18,900
710fe9349a9887d735067aa8a0586b78abf78213
Juergen Hoeller
unknown
Deprecated CachingMapDecorator (following the deprecation of LabeledEnum support)
deprecated cachingmapdecorator (following the deprecation of labeledenum support)
81
false
false
8
false
false
false
spring-projects
spring-framework
18,901
6e8117c62750561be2949ffa8030a04e0f4783da
Juergen Hoeller
unknown
Polishing along with backports to 3.1.4
polishing along with backports to 3.1.4
39
false
false
6
false
false
false
spring-projects
spring-framework
18,902
3458d4d94511e633daedc8cd594d4b87af51fd59
Chris Beams
Chris Beams
Add 'Migrating to Spring Framework 3.2' appendix
add 'migrating to spring framework 3.2' appendix
48
false
false
7
false
false
false
spring-projects
spring-framework
18,903
a4f882fbf0afb025f3f2dac2bf5f72dc950401f2
Chris Beams
Chris Beams
Fully qualify Spring=>Spring Framework in ref docs This is not a comprehensive update, only covering the "What's new" sections for now.
fully qualify spring=>spring framework in ref docs
50
false
false
7
false
false
false
spring-projects
spring-framework
18,904
b16bf2d83e680aeda5dd91dd55e9f440313841fb
Rob Winch
Rob Winch
Rm buildSrc/src/main/groovy from Eclipse Sources Previously buildSrc/src/main/groovy was a source folder within Eclipse. This caused build errors due to missing dependencies for Gradle. This commit removes buildSrc/src/main/groovy from the source folders within Eclipse to prevent errors from being displayed.
rm buildsrc/src/main/groovy from eclipse sources
48
false
false
5
false
false
false
spring-projects
spring-framework
18,905
26b1f44ce72705cf355ff7401620371dfa13de7c
Rossen Stoyanchev
Rossen Stoyanchev
Update reference doc for async web request config Issue: SPR-9400
update reference doc for async web request config
49
false
false
8
true
true
true
spring-projects
spring-framework
18,906
c209b6700a78dc8ed1a20919d012377acdb05e50
Rossen Stoyanchev
Rossen Stoyanchev
Update reference docs on content negotiation config
update reference docs on content negotiation config
51
false
false
7
false
true
false
spring-projects
spring-framework
18,907
4badf2503b61f2bf560302b242d862e6af5e4ec3
Chris Beams
Chris Beams
Upgrade to AspectJ 1.7.1 This change upgrades the spring-framework build to AspectJ 1.7.1 to ensure compatibility. We remain backward-compatible to at least AJ 1.6.12 (the previous version), and likely back to 1.6.7. AJ 1.7 allows for weaving Java 7 bytecode, particularly with regard to invokedynamic instructions, an...
upgrade to aspectj 1.7.1
24
false
false
4
false
false
false
spring-projects
spring-framework
18,908
f26534700a6646a6a6cf8debcffe8f108a7c9d9e
Chris Beams
Chris Beams
Eliminate all Javadoc warnings - Support external Javadoc links using Gradle's javadoc.options.links - Fix all other Javadoc warnings, such as typos, references to non-existent (or no longer existent) types and members, etc, including changes related to the Quartz 2.0 upgrade (SPR-8275) and adding the HTTP...
eliminate all javadoc warnings
30
false
false
4
true
true
true
spring-projects
spring-framework
18,909
8f90b487e231347770f85df7d0f4bdc4b0043293
Chris Beams
Chris Beams
Rename API and reference doc output dirs Prior to this change, aggregated javadoc has been written to an 'api' dir and reference docs into a 'reference' dir. This shorter naming is desirable, but is not compatible with historical naming under 3.1.x as defined by the Ant+Ivy Spring Build. For example, URLs are current...
rename api and reference doc output dirs
40
false
false
7
false
false
false
spring-projects
spring-framework
18,910
6a6b441ffdf88a4c8b837f19728f596a57baf296
Phillip Webb
Phillip Webb
Document annotation-config / component-scan tip Document that the <context:annotation-config> element is usually not required when using <context:component-scan>. Issue: SPR-9808
document annotation-config / component-scan tip
47
false
false
5
false
false
false
spring-projects
spring-framework
18,911
a263fd343d1ecd21ee1c1bb4cc74dd072ce59cf9
Phillip Webb
Phillip Webb
Use consistent XML docbook namespace format Reorder XML namespace imports for consistency with other docbook files.
use consistent xml docbook namespace format
43
false
false
6
false
false
false
spring-projects
spring-framework
18,912
e09bdb31cc4d8e77a3157a9ecff3d29750a8614a
Rossen Stoyanchev
Rossen Stoyanchev
Add reference documentation for async web requests Issue: SPR-9400
add reference documentation for async web requests
50
false
false
7
true
true
true
spring-projects
spring-framework
18,913
5b2cd763cfcf7dbde3d0b854e1a278e28b065f54
Juergen Hoeller
Juergen Hoeller
Final preparations for 3.2 GA
final preparations for 3.2 ga
29
false
false
5
false
false
false
spring-projects
spring-framework
18,914
c55446da9dfdfb93926d27ce1a3d6b5184d3df60
Juergen Hoeller
unknown
Polishing
polishing
9
false
false
1
false
false
false
spring-projects
spring-framework
18,915
9b6ec5bfab519d09a4a7994a37a7955b0302490e
Juergen Hoeller
unknown
DeprecatedBeanWarner detects deprecated FactoryBean classes and always logs user-specified bean type
deprecatedbeanwarner detects deprecated factorybean classes and always logs user-specified bean type
100
false
false
11
false
false
false
spring-projects
spring-framework
18,916
9deaefe74d9b79d22328ae0f1ede0830ac30ce20
Juergen Hoeller
unknown
AbstractCachingViewResolver uses a cache limit of 1024 by default, avoiding overflow for redirect URLs Issue: SPR-10065
abstractcachingviewresolver uses a cache limit of 1024 by default, avoiding overflow for redirect urls
102
false
false
14
false
false
false
spring-projects
spring-framework
18,917
1cb6e3dbb6e5a5f15ec06f4abc297821606ab2a6
Juergen Hoeller
unknown
Several enhancements with respect to CachingMetadataReaderFactory handling. Added "clearCache()" method to CachingMetadataReaderFactory, for clearing the metadata cache once not needed anymore - in particular when the MetadataReaderFactory instance is long-lived. Also added "setMetadataReaderFactory" method to ClassPa...
several enhancements with respect to cachingmetadatareaderfactory handling
74
false
false
7
false
false
false
spring-projects
spring-framework
18,918
e298658ef06d8fffb1cfac48e3e227da28dca591
Juergen Hoeller
unknown
Polishing
polishing
9
false
false
1
false
false
false
spring-projects
spring-framework
18,919
801d4714b132526a60357cd6d9f58413920d065f
Juergen Hoeller
unknown
Fixed CGLIB proxy class leaks through further equals/hashCode implementations in Spring AOP pointcuts Issue: SPR-8008
fixed cglib proxy class leaks through further equals/hashcode implementations in spring aop pointcuts
101
false
false
13
false
false
false
spring-projects
spring-framework
18,920
7af92b483a89bd7e7cea38f57176fff6c8fbd11c
Juergen Hoeller
unknown
Fixed HierarchicalUriComponents equals implementation Issue: SPR-10088
fixed hierarchicaluricomponents equals implementation
53
false
false
4
false
false
false
spring-projects
spring-framework
18,921
d4c55838ad2bdcc2bda2ef84b365064f980dbe8e
Sam Brannen
Sam Brannen
Document testing in "New in Spring 3.2" sect. This commit adds documentation to the "New Features and Enhancements in Spring 3.2" section of the reference manual regarding new testing features. Issue: SPR-9941
document testing in "new in spring 3.2" sect
44
false
false
8
false
false
false
spring-projects
spring-framework
18,922
a1053d43644b9c0cd1a40f72a9437d16621b516f
Sam Brannen
Sam Brannen
Document WebApplicationContext support in the TCF This commit adds documentation for the following new features in the Spring TestContext Framework within the Testing chapter of the reference manual. - @WebAppConfiguration and context caching - WebDelegatingSmartContextLoader - AnnotationConfigWebContextLoader - ...
document webapplicationcontext support in the tcf
49
false
false
6
false
false
false
spring-projects
spring-framework
18,923
7f1b990ee99ef336438f7c3b7e785ce89246e499
Sam Brannen
Sam Brannen
Reformat the Testing chapter Reformatted the Testing chapter in preparation for upcoming changes.
reformat the testing chapter
28
false
false
4
true
true
true
spring-projects
spring-framework
18,924
acf32726d75280a2ea7383aa96db9427cd5cc7f1
Rossen Stoyanchev
Rossen Stoyanchev
Add documentation for Spring MVC Test Issue: SPR-9860, SPR-9886
add documentation for spring mvc test
37
false
false
6
true
true
true
spring-projects
spring-framework
18,925
4be2d15950a978979d2b2e10cd273d6e9b8c1a53
Sam Brannen
Sam Brannen
Reformat the Testing chapter Reformatted the Testing chapter in preparation for upcoming changes.
reformat the testing chapter
28
false
false
4
true
true
true
spring-projects
spring-framework
18,926
6fed79cb10d38bd1281714f6927c4187d6046cd8
Phillip Webb
Phillip Webb
Ensure buildSrc is only added once to eclipse
ensure buildsrc is only added once to eclipse
45
false
false
8
false
false
false
spring-projects
spring-framework
18,927
a6387dc725e9913d9ade35b2b56f136df0e8243c
Sam Brannen
Sam Brannen
Document WebApplicationContext support in the TCF This commit adds Javadoc documentation for the WebApplicationContext testing support that was recently introduced in the Spring TestContext Framework. Issue: SPR-9864
document webapplicationcontext support in the tcf
49
false
false
6
false
false
false
spring-projects
spring-framework
18,928
c8a3562933c3057a008f90771dc735fca9602bc8
Phillip Webb
Phillip Webb
Update test tiles.xml files to use v3 DTD Update tiles.xml files used with tests to reference tiles-config_3_0 instead of tiles-config_2_1 DTD. Prior to this commit tiles based tests would fail when building offline or behind a proxy server.
update test tiles.xml files to use v3 dtd
41
false
false
8
false
true
false
spring-projects
spring-framework
18,929
25a7136a96cc61969d9378b7c5a6617e100d0bf3
Phillip Webb
Phillip Webb
Merge pull request #199 from rwinch/SPR-10059 * SPR-10059: Make DeferredResult extensible
merge pull request #199 from rwinch/spr-10059
45
true
false
6
true
false
false
spring-projects
spring-framework
18,930
be7b07f8327f1dc3b3fd78eb2041892114ba99a2
Rob Winch
Phillip Webb
Make DeferredResult extensible Previously it was cumbersome to associate data or behavior to a DeferredResult because it was marked as final and had no extension points. Now DeferredResult is non-final which allows subclasses to associate additional data and behavior to it. Issue: SPR-10059
make deferredresult extensible
30
false
false
3
true
true
true
spring-projects
spring-framework
18,931
455701d2ee6449abd8e5f640e718812d51c97fcd
Rob Winch
Phillip Webb
Merge plugin copies exclude rules Previously the 'merge from' project's configurations exclude rules were not used in the dynamically created 'merge into' project configurations. This meant that the pom generation for 'merge into' project did not exclude the dependencies from the 'merge from' project's configuration e...
merge plugin copies exclude rules
33
true
false
5
true
true
false
spring-projects
spring-framework
18,932
809d62e31860c5e0574814a873b76aa0519d0b3e
Phillip Webb
Phillip Webb
Add buildSrc to generated eclipse project Post process the generated 'spring' eclipse project to include the buildSrc/src/main/groovy folder.
add buildsrc to generated eclipse project
41
false
false
6
true
true
true
spring-projects
spring-framework
18,933
42bbcc322021e9d1a57cc34053f6f659fc90839e
Phillip Webb
Phillip Webb
Move Merge plugin into a build package structure
move merge plugin into a build package structure
48
false
false
8
true
false
true
spring-projects
spring-framework
18,934
b206e6891fddf8f1de9517cf41593cfffe3f36b0
Phillip Webb
Phillip Webb
Renamed buildsrc to buildSrc Rename buildsrc folder to buildSrc to follow Gradle conventions.
renamed buildsrc to buildsrc
28
false
false
4
false
false
false
spring-projects
spring-framework
18,935
9e790829d9902736cf476fa9a19179f05309d316
Phillip Webb
Phillip Webb
Upgrade reference plugin to version 0.2.3 Upgrade to the latest reference plugin, providing slightly refined titlepage and admon graphics.
upgrade reference plugin to version 0.2.3
41
false
false
6
true
true
true
spring-projects
spring-framework
18,936
87f7ecf907042a576cca0ada37780eaee1c9427f
Phillip Webb
Phillip Webb
Refactor merge-artifacts script to a plugin Refactor the existing merge-artifacts script to a full Gradle plugin. The new plugin uses a 'merge' extension in favor of Gradle 'ext' configuration and can be applied to all projects in a multi-module build. Any project that defines a 'merge.into' project will now implicit...
refactor merge-artifacts script to a plugin
43
false
false
6
false
false
false
spring-projects
spring-framework
18,937
4551cfcdfcc0957e449ea0d9a02606012b6e742e
Phillip Webb
Phillip Webb
Remove superfluous exclusions from Gradle build Remove several dependency exclusions from the Gradle build that are no longer required and were not present in Spring 3.1.
remove superfluous exclusions from gradle build
47
false
false
6
true
true
true
spring-projects
spring-framework
18,938
0751b2cbeb96697bd377578771e9c7b29b94658a
Phillip Webb
Phillip Webb
Convert Gradle build to use new propdeps-plugin Replace existing 'optional' and 'provided' Spring specific build extensions with a new Gradle propdeps-plugin. Optional and Provided dependencies are now defined use dependency configurations. The new plugin does not currently support the notion of optional runtime depe...
convert gradle build to use new propdeps-plugin
47
false
false
7
true
true
true
spring-projects
spring-framework
18,939
7cc406ffc7a1b5baf9222478c833fb3be5812978
Phillip Webb
Phillip Webb
Depend on javax.servlet for version 3.0 API Replace tomcat servlet-api 3.0 dependencies with the javax.servlet versions that are now available in the Maven central repository.
depend on javax.servlet for version 3.0 api
43
false
false
7
false
false
false
spring-projects
spring-framework
18,940
6103a7f1c1a1ff70e19f44355c811a82e249c0a1
Phillip Webb
Phillip Webb
Upgrade log4j dependency to version 1.2.17 Upgrade to the latest stable release of log4j. The previous 'jms' and 'jmx' exclusions are not longer required since these have now been marked as optional dependencies in the upstream POM.
upgrade log4j dependency to version 1.2.17
42
false
false
6
true
true
true
spring-projects
spring-framework
18,941
dc708c5baa853fd94419f70155ac0774ce9bb5cf
Phillip Webb
Phillip Webb
Removed unused gradle import Remove the unused ProjectDependency import from the Gradle build file.
removed unused gradle import
28
false
false
4
false
false
false
spring-projects
spring-framework
18,942
22741b1fdc4d5026bd9ea71b399ce51ee358f75a
Phillip Webb
Phillip Webb
Use consistent Gradle dependency style Update all Gradle files to use a consistent style when specifying dependencies. All dependencies are now specified using parentheses, for example: scope("group:artifat:version") or scope(project(":projectname"))
use consistent gradle dependency style
38
false
false
5
false
true
false
spring-projects
spring-framework
18,943
90cfdbb040bba5c8df8a56db3dd2dc3f8e9e9967
Phillip Webb
Phillip Webb
Polish quote styles in gradle files Replace singe quote-marks with double quote-marks when possible for a more consistent style.
polish quote styles in gradle files
35
false
false
6
false
false
false
spring-projects
spring-framework
18,944
a2685287261e3d521881eff04e31a3211ae2e400
Phillip Webb
Phillip Webb
Polish .gradle file formatting to use tabs Replace spaces with tabs for consistency with Java source code
polish .gradle file formatting to use tabs
42
false
false
7
false
false
false
spring-projects
spring-framework
18,945
756bff8e0a58f64f1734c1e9471181f608f0343f
Sam Brannen
Sam Brannen
Improve Javadoc in SpringServletContainerInitializer
improve javadoc in springservletcontainerinitializer
52
false
false
4
true
true
false
spring-projects
spring-framework
18,946
a436a57503a8bebc19cede5560e24ba37dba24e6
Sam Brannen
Sam Brannen
Move tests to spring-test module When Spr9799XmlConfigTests and Spr9799AnnotationConfigTests were created, there were issues with the classpath related to slf4j dependencies that made it impossible for these classes to reside in the spring-test module. Consequently, these tests were added to the spring-test-mvc module...
move tests to spring-test module
32
false
false
5
true
true
true
spring-projects
spring-framework
18,947
85a552daed9766ff9f9c5de05181dd5fa5ec7214
Rossen Stoyanchev
Rossen Stoyanchev
Fix package cycle among http message converters This change introduces a new AllEncompassingFormHttpMessageConverter class that adds JSON and XML converters for individual mime parts of a multi-part request. The new converter is used in place of the previously used XmlAwareFormHttpMessageConverter. Issue: SPR-10055
fix package cycle among http message converters
47
false
false
7
true
true
true
spring-projects
spring-framework
18,948
d309bb4bbbf41cac2c59808e0addebcaee5b9e29
Rossen Stoyanchev
Rossen Stoyanchev
Add web-fragment.xml to spring-web The servlet spec treats any jar in WEB-INF/lib as a web fragment: "A plain old jar file in the WEB-INF/lib directory with no web- fragment.xml is also considered a fragment" (section 8.2.1) This change adds a web-fragment.xml giving the web fragment an explicit name, "spring_web", a...
add web-fragment.xml to spring-web
34
false
false
4
false
true
false
spring-projects
spring-framework
18,949
6e7df513f1b29fc42f7cc4ce1254714eba2ea6e8
Rossen Stoyanchev
Rossen Stoyanchev
Exclude jcl-over-slf4j from tiles-core dependency tiles-core-3 brings in a dependency on jcl-overl-slf4 which causes an slf4j delegation loop as explained at [1] when tests run inside Eclipse. Other modules that depend on tiles-core like (tiles-servlet, tiles-jsp) have also had the exclusion added since they seem to b...
exclude jcl-over-slf4j from tiles-core dependency
49
false
false
5
false
true
false
spring-projects
spring-framework
18,950
3643d92cb8f8d7ba3bee8d19db300c557e2e85a8
Rossen Stoyanchev
Rossen Stoyanchev
Fix issue with creating ServletRequestAttributes Prevously the FrameworkServlet created a new ServletRequestAttributes instance for every request, unless the RequestContextHolder already contained an instance whose type is not ServletRequestAttributes. The main intent was that if RequestContextHolder contains a Portle...
fix issue with creating servletrequestattributes
48
false
false
5
true
true
true
spring-projects
spring-framework
18,951
69ace01640166bad7b8c9b8f8f1e792f8d1486f5
Sam Brannen
Sam Brannen
Clean up warnings in spring-test - Deleted unused imports. - Switched from junit.framework.Assert to org.junit.Assert, since the former is deprecated as of JUnit 4.11. - Suppressed warnings for continued deprecated usage of junit.framework.Assert.
clean up warnings in spring-test
32
false
false
5
false
false
false
spring-projects
spring-framework
18,952
2233949a0f93d4484b7d3388c88dcd4ee4f8660a
Sam Brannen
Sam Brannen
Fix typo
fix typo
8
false
false
2
false
true
false
spring-projects
spring-framework
18,953
9cc4bd892a6bb3aca9fea4b2423369181cebea9a
Rossen Stoyanchev
Rossen Stoyanchev
Fix issue with suffix pattern match Spring Framework 3.2 M2 added the ability to map requests using only file extensions registered through the configured through a ContentNeotiationManager, as opposed to allowing any file extension (i.e. ".*"). The MVC namespace the MVC Java config automatically register extensions s...
fix issue with suffix pattern match
35
false
false
6
true
true
true
spring-projects
spring-framework
18,954
fb05c7b33c469d5a7826ff8efe3168329617b6b5
Phillip Webb
Phillip Webb
Replace SLF4J with ACL TilesConfigurer for Tiles 3 Replace the use of SLF4J LoggerFactory and Logger classes with Apache commons-logging LogFactory and Log. Issue: SPR-10077
replace slf4j with acl tilesconfigurer for tiles 3
50
false
false
8
true
true
true
spring-projects
spring-framework
18,955
31cb14e03a2802d1425504b00f97d83471bde7c7
Rossen Stoyanchev
Rossen Stoyanchev
Remove Spring Security sample tests in spring-test-mvc Those tests as well as Spring Hateoas tests will be added to respective projects instead.
remove spring security sample tests in spring-test-mvc
54
false
false
7
false
false
false
spring-projects
spring-framework
18,956