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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
026ee846c7d14474be7bfe45deb0deff90a4ed1a | Sam Brannen | Sam Brannen | Merge pull request #112 from aclement/SPR-9612
* SPR-9612:
Modify SpEL Tokenizer to support methods on numbers | merge pull request #112 from aclement/spr-9612 | 46 | true | false | 6 | false | false | false | spring-projects | spring-framework | 19,057 |
e4a926ea3ce69c9d1394c521825ec64fb521b1c2 | Andy Clement | Sam Brannen | Modify SpEL Tokenizer to support methods on numbers
When attempting to parse an Integer literal expression such as
42.toString(), SpEL currently throws a SpelParseException with a message
similar to: "EL1041E:(pos 3): After parsing a valid expression, there is
still more data in the expression: 'toString'". The proble... | modify spel tokenizer to support methods on numbers | 51 | false | false | 8 | true | true | false | spring-projects | spring-framework | 19,058 |
015086cb9c50fa4eabd47fab064bc1bbdde8caa6 | Sam Brannen | Sam Brannen | Introduce new methods in tx base test classes
Recently new utility methods were added to JdbcTestUtils, and a
JdbcTemplate was introduced in abstract transactional base classes in
the TestContext framework. This presents an easy opportunity to make
these new utility methods available as convenience methods in the base... | introduce new methods in tx base test classes | 45 | false | false | 8 | true | true | true | spring-projects | spring-framework | 19,059 |
8d9637ada65b3b7211a37f853221493c963b1799 | Sam Brannen | Sam Brannen | Provide JdbcTemplate in tx base classes in the TCF
Since Spring 2.5, the abstract transactional base classes in the
TestContext framework have defined and delegated to a protected
SimpleJdbcTemplate instance variable; however, SimpleJdbcTemplate has
deprecated since Spring 3.1. Consequently, subclasses of
AbstractTran... | provide jdbctemplate in tx base classes in the tcf | 50 | false | false | 9 | true | true | true | spring-projects | spring-framework | 19,060 |
a7d43773e870fc7bf4106d34f42e8f3c0337b7b7 | Sam Brannen | Sam Brannen | Merge pull request #90 from ianbrandt/SPR-9235
* SPR-9235:
Deprecate SimpleJdbcTestUtils in favor of JdbcTestUtils | merge pull request #90 from ianbrandt/spr-9235 | 46 | true | false | 6 | false | false | false | spring-projects | spring-framework | 19,061 |
bd0c4b4d9974b4a54f4ebc79d1f419f46a1e5b2a | Ian Brandt | Sam Brannen | Deprecate SimpleJdbcTestUtils in favor of JdbcTestUtils
Several static utility methods in SimpleJdbcTestUtils accept an instance
of SimpleJdbcTemplate as an argument; however, SimpleJdbcTemplate has
been deprecated since Spring 3.1 in favor of simply using JdbcTemplate
which now also supports Java 5 language construct... | deprecate simplejdbctestutils in favor of jdbctestutils | 55 | false | false | 6 | false | true | false | spring-projects | spring-framework | 19,062 |
04bfc802dbb6809cccb6d0d1cbd7aa85938a0a0a | Sam Brannen | Sam Brannen | Use consistent HSQLDB version in Gradle build | use consistent hsqldb version in gradle build | 45 | false | false | 7 | true | true | true | spring-projects | spring-framework | 19,063 |
d2178552c3fb8a70d7ef4a878c837a2e201550df | Sam Brannen | Sam Brannen | Merge pull request #111 from sbrannen/SPR-9492
Introduce MockEnvironment in the spring-test module | merge pull request #111 from sbrannen/spr-9492 | 46 | true | false | 6 | false | false | false | spring-projects | spring-framework | 19,064 |
f49b22c78f07786c4b226e530d139d8acb0b20ff | Sam Brannen | Sam Brannen | Introduce MockEnvironment in the spring-test module
For legacy reasons, a MockEnvironment implementation already exists in multiple places within Spring's test suite; however, it is not available to the general public.
This commit promotes MockEnvironment to a first-class citizen in the spring-test module, alongside ... | introduce mockenvironment in the spring-test module | 51 | false | false | 6 | true | true | false | spring-projects | spring-framework | 19,065 |
0329df218ed19b8843e4bf2b891d234dd64357a7 | Sam Brannen | Sam Brannen | Polish error message in BeanFactoryAnnotationUtils | polish error message in beanfactoryannotationutils | 50 | false | false | 5 | false | false | false | spring-projects | spring-framework | 19,066 |
1fd9975e2121ffa73aa07b5c0b515056790ba5db | Sam Brannen | Sam Brannen | Polish Javadoc for NoSuchBeanDefinitionException | polish javadoc for nosuchbeandefinitionexception | 48 | false | false | 4 | false | false | false | spring-projects | spring-framework | 19,067 |
2b7a62906891b7a936412894f9ab78cdb69dc378 | Sam Brannen | Sam Brannen | Support TransactionManagementConfigurer in the TCF
Currently the Spring TestContext Framework looks up a
PlatformTransactionManager bean named "transactionManager". The exact
name of the bean can be overridden via @TransactionConfiguration or
@Transactional; however, the bean will always be looked up 'by name'.
The T... | support transactionmanagementconfigurer in the tcf | 50 | false | false | 5 | false | true | false | spring-projects | spring-framework | 19,068 |
f21fe33e74ac3844a5690f71266e07c78ec219dd | Sam Brannen | Sam Brannen | Support single, unqualified tx manager in the TCF
TransactionalTestExecutionListener currently requires that the
PlatformTransactionManager bean be named "transactionManager" by
default. Otherwise, the bean name can only be overridden via the
transactionManager attribute of @TransactionConfiguration or the value
attri... | support single, unqualified tx manager in the tcf | 49 | false | false | 8 | false | true | false | spring-projects | spring-framework | 19,069 |
c0b4e368dc2b4a6cfb514211c7720223bf1e7ca3 | Sam Brannen | Sam Brannen | Fix typo in TransactionManagementConfigurer Javadoc | fix typo in transactionmanagementconfigurer javadoc | 51 | false | false | 5 | true | true | false | spring-projects | spring-framework | 19,070 |
37dc211f588eeb296a60c8d9f234c8341506ad49 | Sam Brannen | Sam Brannen | Support named dispatchers in MockServletContext
Currently the getNamedDispatcher(String) method of MockServletContext
always returns null. This poses a problem in certain testing scenarios
since one would always expect at least a default Servlet to be present.
This is specifically important for web application tests t... | support named dispatchers in mockservletcontext | 47 | false | false | 5 | false | true | false | spring-projects | spring-framework | 19,071 |
914557b9753d2822f79b7be9d33a1258895a69e9 | Rossen Stoyanchev | Rossen Stoyanchev | Use a default for INTROSPECT_TYPE_LEVEL_MAPPING
Usually this request attribute is set for all sub-classes of
AbstractUrlHandlerMapping and therefore whenever
AnnotationMethodHandlerAdapter is used. However, having a
default value to fall back on in AnnotationMethodHandlerAdapter
is still appropriate in general and als... | use a default for introspect_type_level_mapping | 47 | false | false | 5 | true | true | true | spring-projects | spring-framework | 19,072 |
7c6a1a1bf0db6b428344ec6797a9152c5f4f6d30 | Rossen Stoyanchev | Rossen Stoyanchev | Improve tests for detection of @MVC annotations
Issue: SPR-9601 | improve tests for detection of @mvc annotations | 47 | false | false | 7 | true | true | true | spring-projects | spring-framework | 19,073 |
060b37ca8db5a3b822029800348a3fe0f0b1b15f | Sam Brannen | Sam Brannen | Fix typo in MockFilterChain | fix typo in mockfilterchain | 27 | false | false | 4 | true | true | true | spring-projects | spring-framework | 19,074 |
64d939bb16099fcb647850a5f3e04990f5562099 | Rossen Stoyanchev | Rossen Stoyanchev | Add ContentNegotiationManagerFactoryBean
The new FactoryBean facilitates the creation of a
ContentNegotiationManager in XML configuration.
Issue: SPR-8420 | add contentnegotiationmanagerfactorybean | 40 | false | false | 2 | true | true | false | spring-projects | spring-framework | 19,075 |
028e15faa33888673bfc7b55eaa65eb93f7bca0c | Rossen Stoyanchev | Rossen Stoyanchev | Add options to configure content negotiation
The MVC Java config and the MVC namespace now support options to
configure content negotiation. By default both support checking path
extensions first and the "Accept" header second. For path extensions
.json, .xml, .atom, and .rss are recognized out of the box if the
Jacks... | add options to configure content negotiation | 44 | false | false | 6 | true | true | true | spring-projects | spring-framework | 19,076 |
92759ed1f881fcb1a92aa661d80c53a2827e67db | Rossen Stoyanchev | Rossen Stoyanchev | Add exclude patterns for mapped interceptors
Add the ability provide exclude patterns for mapped interceptors in the
MVC namespace and in the MVC Java config.
Issue: SPR-6570 | add exclude patterns for mapped interceptors | 44 | false | false | 6 | true | true | true | spring-projects | spring-framework | 19,077 |
5a365074c2bddb3e4517ec5eceb39d4e6ca85b56 | Rossen Stoyanchev | Rossen Stoyanchev | Fix issue with failing test from previous commit
Issue: SPR-9611 | fix issue with failing test from previous commit | 48 | false | false | 8 | true | true | true | spring-projects | spring-framework | 19,078 |
6cc512b51cfd0652fec982c5352905d5cd060e83 | Rossen Stoyanchev | Rossen Stoyanchev | Ensure async Callables are in sync with the call stack
After this change each call stack level pushes and pops an async
Callable to ensure the AsyncExecutionChain is in sync with the
call stack. Before this change, a controller returning a "forward:"
prefixed string caused the AsyncExecutionChain to contain a
extra Ca... | ensure async callables are in sync with the call stack | 54 | false | false | 10 | false | false | false | spring-projects | spring-framework | 19,079 |
33a3681975751692ef2937f058fb5eed4fb343e3 | Sam Brannen | Sam Brannen | Fix DeferredResult typo in changelog | fix deferredresult typo in changelog | 36 | false | false | 5 | true | true | true | spring-projects | spring-framework | 19,080 |
d3d00696a4607606fec254a84faf13566421c2fd | Rossen Stoyanchev | Rossen Stoyanchev | Create StandardServletAsyncWebRequest via reflection
Issue: SPR-9500 | create standardservletasyncwebrequest via reflection | 52 | false | false | 4 | false | true | false | spring-projects | spring-framework | 19,081 |
eab6e1d1348f0f3984fb387adde7d875540f0071 | Rossen Stoyanchev | Rossen Stoyanchev | Parameterize DeferredResult
Issue: SPR-9579 | parameterize deferredresult | 27 | false | false | 2 | true | true | false | spring-projects | spring-framework | 19,082 |
55bd99fa161624ec7bf69ab51d7a9e3a5f657a64 | Rossen Stoyanchev | Rossen Stoyanchev | Fix typos in Spring MVC chapter of reference docs | fix typos in spring mvc chapter of reference docs | 49 | false | false | 9 | true | true | true | spring-projects | spring-framework | 19,083 |
35a423a858c8578500858815cfe35b23fcdf5bb5 | Sam Brannen | Sam Brannen | Merge pull request #108 from rwinch/SPR-9594
* SPR-9594:
Fix minor issue in MockHttpServletRequest | merge pull request #108 from rwinch/spr-9594 | 44 | true | false | 6 | false | false | false | spring-projects | spring-framework | 19,084 |
59d80ec19e7e6333a2af64b98f68d3efecc58a97 | Rob Winch | Sam Brannen | Fix minor issue in MockHttpServletRequest
Previously MockHttpServletRequest#sendRedirect did not set the HTTP status
or the Location header. This does not conform to the HttpServletRequest
interface.
MockHttpServletRequest will now:
- Set the HTTP status to 302 on sendRedirect
- Set the Location header on sendRe... | fix minor issue in mockhttpservletrequest | 41 | false | false | 5 | true | true | true | spring-projects | spring-framework | 19,085 |
67a05e41859d1c9ba5df89e041923ab15018239d | Rossen Stoyanchev | Rossen Stoyanchev | Update section on exception handling MVC chapter
Update section on exception handling in Spring MVC chapter to include
more guidance on exception handling when implementing a REST API.
Issue: SPR-9290 | update section on exception handling mvc chapter | 48 | false | false | 7 | false | false | false | spring-projects | spring-framework | 19,086 |
a1b7a314c1645018c5c2088775fd1a9bd282ee14 | Rossen Stoyanchev | Rossen Stoyanchev | Add BindException to DefaultHandlerExceptionResolver
Previously DefaultHandlerExceptionResolver did not handle BindException
but after this change it does. A BindException is raised when an
@ModelAttribute annotated argument is not followed by a BindingResult
argument. Hence this is unlikely to affect browser renderin... | add bindexception to defaulthandlerexceptionresolver | 52 | false | false | 4 | true | true | false | spring-projects | spring-framework | 19,087 |
e860fa9a8b56459998911768a3fc791fa4d53b0f | Rossen Stoyanchev | Rossen Stoyanchev | Move feed message converters ahead of jackson/jaxb2
The Atom/RSS message converters are now registered ahead of the
Jackson and the JAXB2 message converters by default. Since the Atom
and RSS converters convert to and from very specific object types
Feed and Channel respectively, that shouldn't introduce any regressio... | move feed message converters ahead of jackson/jaxb2 | 51 | false | false | 7 | false | true | false | spring-projects | spring-framework | 19,088 |
2b4a51698069be44afd3bbaa85cef0e901fa84c9 | Chris Beams | Chris Beams | Merge pull request #104 from poutsma/SPR-9536
* SPR-9576:
Include **/*.aj files in *-sources.jar files | merge pull request #104 from poutsma/spr-9536 | 45 | true | false | 6 | false | false | false | spring-projects | spring-framework | 19,089 |
a681e574c3f732d3ac945a1dda4a640ce5514742 | Rob Winch | Chris Beams | Include **/*.aj files in *-sources.jar files
Previously only **/*.java sources files were included in the sources
jars. This is not ideal for the spring-aspects jar nor does it match
prior versions of the sources jars.
Now **/*.aj files are included in addition to the **/*.java files.
Issue: SPR-9576 | include **/*.aj files in *-sources.jar files | 44 | false | false | 6 | false | true | false | spring-projects | spring-framework | 19,090 |
cf147a82ef0c5592041ddfdde3d1340fd47e89aa | Rossen Stoyanchev | Rossen Stoyanchev | Fix issue with incorrect class import
Issue: SPR-9112 | fix issue with incorrect class import | 37 | false | false | 6 | true | true | true | spring-projects | spring-framework | 19,091 |
c846198e4697f2ac5d79f0f4f62d25fa7d62fa26 | Rossen Stoyanchev | Rossen Stoyanchev | Add support for global @ExceptionHandler methods
Before this change @ExceptionHandler methods could be located in and
apply locally within a controller. The change makes it possible to have
such methods applicable globally regardless of the controller that
raised the exception.
The easiest way to do that is to add th... | add support for global @exceptionhandler methods | 48 | false | false | 6 | true | true | true | spring-projects | spring-framework | 19,092 |
ccd2da37ce9416b984abfb001c0c3ee4f9860349 | Juergen Hoeller | Juergen Hoeller | preparations for 3.2 M2 | preparations for 3.2 m2 | 23 | false | false | 4 | false | false | false | spring-projects | spring-framework | 19,093 |
dda3197c77a0b66576ebccd629c5076c0403eaf5 | Juergen Hoeller | unknown | added "jtaTransactionManager" property to Hibernate 4 LocalSessionFactoryBean/Builder
Issue: SPR-9480 | added "jtatransactionmanager" property to hibernate 4 localsessionfactorybean/builder | 85 | false | false | 7 | false | false | false | spring-projects | spring-framework | 19,094 |
9aa43fcef6e4cc20104b89cc974f553bb6d77b67 | Juergen Hoeller | unknown | reintroduced static DEFAULT_CHARSET field
Issue: SPR-9487 | reintroduced static default_charset field | 41 | false | false | 4 | false | false | false | spring-projects | spring-framework | 19,095 |
2ec7834124dfa32d7b90afbb23805433a4567bf5 | Chris Beams | Chris Beams | Resolve nested placeholders via PropertyResolver
Prior to this change, PropertySourcesPropertyResolver (and therefore
all AbstractEnvironment) implementations failed to resolve nested
placeholders as in the following example:
p1=v1
p2=v2
p3=${v1}:{$v2}
Calls to PropertySource#getProperty for keys 'p1' an... | resolve nested placeholders via propertyresolver | 48 | false | false | 5 | true | true | true | spring-projects | spring-framework | 19,096 |
b9786ccacac2cf90e7fa10a9a74a42c603376f4c | Rossen Stoyanchev | Rossen Stoyanchev | Fix minor issue in HandlerMethod
Before this change HandlerMethod used ClassUtils.getUserClass(Class<?>)
to get the real user class, and not one generated by CGlib. However it
failed to that under all circumstances. This change fixes that.
Issue: SPR-9490 | fix minor issue in handlermethod | 32 | false | false | 5 | true | true | true | spring-projects | spring-framework | 19,097 |
a4240d28643f5d6f7b435ce4512d240efc6db7b9 | Rossen Stoyanchev | Rossen Stoyanchev | Add defaultCharset field to StringHttpMessageConverter
Before this change the StringHttpMessageConverter used a fixed charset
"ISO-8859-1" if the requested content type did not specify one. This
change adds a defaultCharset field and a constructor to configure it in
StringHttpMessageConverter.
Issue: SPR-9487 | add defaultcharset field to stringhttpmessageconverter | 54 | false | false | 5 | true | true | false | spring-projects | spring-framework | 19,098 |
4d297b475c18eeaa314e24ae4589987e1df1db7c | Juergen Hoeller | Juergen Hoeller | preparations for 3.2 M2 | preparations for 3.2 m2 | 23 | false | false | 4 | false | false | false | spring-projects | spring-framework | 19,099 |
d97a4b5b3c0edc8c52f1049d67339165437ec461 | Juergen Hoeller | Juergen Hoeller | polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 19,100 |
596571059e389b0e7728e0c4a3b9aae2d727a57b | Juergen Hoeller | Juergen Hoeller | DispatcherPortlet does not forward event exceptions to the render phase by default
Issue: SPR-9287 | dispatcherportlet does not forward event exceptions to the render phase by default | 82 | false | false | 12 | false | false | false | spring-projects | spring-framework | 19,101 |
8bd1fd3715c3693e4445f40360d41125ea8a4431 | Juergen Hoeller | Juergen Hoeller | moved getInputStream() not-null requirement to InputStreamSource itself; removed misleading "throws IllegalStateException" declaration
Issue: SPR-9561 | moved getinputstream() not-null requirement to inputstreamsource itself; removed misleading "throws illegalstateexception" declaration | 134 | false | false | 12 | false | false | false | spring-projects | spring-framework | 19,102 |
5a7b3f65ec244088583cf822d5478cf1d1632d38 | Juergen Hoeller | Juergen Hoeller | added "repeatCount" bean property to Quartz SimpleTriggerFactoryBean
Issue: SPR-9521 | added "repeatcount" bean property to quartz simpletriggerfactorybean | 68 | false | false | 7 | false | false | false | spring-projects | spring-framework | 19,103 |
fdb9de1445c92e3b80f64c57215713ef9ccb689b | Juergen Hoeller | unknown | Use BufferedInputStream in SimpleMetaDataReader to double performance
Issue: SPR-9528 | use bufferedinputstream in simplemetadatareader to double performance | 69 | false | false | 7 | false | true | false | spring-projects | spring-framework | 19,104 |
309e51ba5b638f3c859dbb6625ce2f3c05278be0 | Juergen Hoeller | unknown | refined fix so that XStreamMarshaller does not wrap IllegalArgumentException
Issue: SPR-9536 | refined fix so that xstreammarshaller does not wrap illegalargumentexception | 76 | false | false | 9 | false | false | false | spring-projects | spring-framework | 19,105 |
e870c9a39251898f0747f9a591595134bbd16278 | Rossen Stoyanchev | Rossen Stoyanchev | Reduce logging in HandlerExecutionChain
Before this change the HandlerExecitionChain logged errors each time a
an AsyncHandlerInterceptor returned a null async Callable, a condition
which is acceptable.
SPR-9524 | reduce logging in handlerexecutionchain | 39 | false | false | 4 | false | true | false | spring-projects | spring-framework | 19,106 |
8fbfe9b502928605524b47f661813a6d4ef677c8 | Rossen Stoyanchev | Rossen Stoyanchev | Merge pull request #101 from philwebb/SPR-9530
* SPR-9530:
Improve SimpleStreamingClientHttpRequest performance | merge pull request #101 from philwebb/spr-9530 | 46 | true | false | 6 | false | false | false | spring-projects | spring-framework | 19,107 |
ecc6a5aed2de7c997046a13a580a56e2fc11ff93 | Phillip Webb | Rossen Stoyanchev | Improve SimpleStreamingClientHttpRequest performance
Ensure that NonClosingOutputStream calls with a byte array call the
corresponding methods of the underlying OutputStream rather than
relying on the default NonClosingOutputStream implementation, which
writes one bte at a time. This significantly improves performance... | improve simplestreamingclienthttprequest performance | 52 | false | false | 3 | true | true | false | spring-projects | spring-framework | 19,108 |
dc822cdca0b8d62eee848b1a7201bef83a51dbcd | Chris Beams | Chris Beams | Reflect 3.2=>3.1.2 backports in @since tags etc
Issue: SPR-9443, SPR-6847, SPR-9446, SPR-9444, SPR-9439, SPR-9302,
SPR-9507, SPR-9238, SPR-9397, SPR-9406, SPR-9502 | reflect 3.2=>3.1.2 backports in @since tags etc | 47 | false | false | 7 | false | false | false | spring-projects | spring-framework | 19,109 |
f92f58d0b37c5bc03a355b9e3e1a0a99fe14478c | Phillip Webb | Phillip Webb | Gradle 'api' task depends on 'jar' tasks
Update the gradle 'api' task to depend on the 'jar' task of all
subprojects. This intern ensures that the 'asmRepackJar' and
'cglibRepackJar' tasks run which is critical for JavaDoc
generation. | gradle 'api' task depends on 'jar' tasks | 40 | false | false | 7 | false | false | false | spring-projects | spring-framework | 19,110 |
2df08bdfbdb4efc9da46866eb1a3f6411a045e9e | Glyn Normington | Glyn Normington | Rework split package detection code
Allow packages to be split across projects which will be merged into a
single JAR file.
Make split package detection a dependency of the 'check' task. This
is idiomatic gradle as well as allowing the 'test' task (another
dependency of 'check') to be executed without split packages ... | rework split package detection code | 35 | false | false | 5 | false | false | false | spring-projects | spring-framework | 19,111 |
a27a3be76c5812a97f7439187838c7bbaedaff97 | Rob Winch | Glyn Normington | Example SplitPackageDetectorPlugin | example splitpackagedetectorplugin | 34 | false | false | 2 | false | false | false | spring-projects | spring-framework | 19,112 |
00a86c37222d92b1477f2480b7bdfaebd12c2d1a | Glyn Normington | Glyn Normington | Detect split packages at build time
Split packages are a well-known anti-pattern for OSGi and a blocker for
Eclipse Virgo (which prevents split packages being accessed via its
Import-Library construct).
Split packages are also unhelpful with a traditional linear classpath
as a split package name does not uniquely ide... | detect split packages at build time | 35 | false | false | 6 | true | true | true | spring-projects | spring-framework | 19,113 |
ad1fda59c369dd04bcf71dff611202eda1f7671e | Chris Beams | Chris Beams | Merge branch 'SPR-9984' into cleanup-3.2.x
* SPR-9984:
Mark all IsFastEnough tests as performance tests | merge branch 'spr-9984' into cleanup-3.2.x | 42 | true | false | 5 | true | true | false | spring-projects | spring-framework | 19,114 |
29dd91b3ec4c2881298e2266a0609c9f06fb2571 | Chris Beams | Chris Beams | Merge pull request #212 from sslavic/SPR-9984
# By Stevo Slavic
* sslavic/SPR-9984:
Mark all IsFastEnough tests as performance tests | merge pull request #212 from sslavic/spr-9984 | 45 | true | false | 6 | false | false | false | spring-projects | spring-framework | 19,115 |
4c0a30694367c00c90656526d2fd0ddb4e3704cf | Stevo Slavic | Chris Beams | Mark all IsFastEnough tests as performance tests
This patch marks remaining/missed tests as ones belonging to
performance tests group.
Issue: SPR-9984 | mark all isfastenough tests as performance tests | 48 | false | false | 7 | false | true | false | spring-projects | spring-framework | 19,116 |
b78a8a412dd7bd3b2a81b18eb523e978b0143bd8 | Phillip Webb | Phillip Webb | Merge branch 'cleanup-3.2.x' into SPR-10126
* cleanup-3.2.x: (37 commits)
Eliminate AJ @Async warning in test case
Update Apache license headers for moved files
Move namespace tests to root integration module
Fix several miscellaneous compiler/Eclipse warnings
Remove duplicate test resources
Fix warnings d... | merge branch 'cleanup-3.2.x' into spr-10126 | 43 | true | false | 5 | true | true | false | spring-projects | spring-framework | 19,117 |
895feda3490fc2d575576177367f39a1700511e9 | Chris Beams | Chris Beams | Merge branch 'cleanup-3.2.x' into 3.2.x
* cleanup-3.2.x:
Eliminate AJ @Async warning in test case
Update Apache license headers for moved files
Move namespace tests to root integration module
Fix several miscellaneous compiler/Eclipse warnings
Remove duplicate test resources
Fix warnings due to unused impo... | merge branch 'cleanup-3.2.x' into 3.2.x | 39 | true | false | 5 | true | true | false | spring-projects | spring-framework | 19,118 |
3a61e9999f58b710d0a0bc0241ce365cf3c5574b | Chris Beams | Chris Beams | Merge branch 'SPR-9431' into cleanup-3.2.x
* SPR-9431:
Eliminate AJ @Async warning in test case
Update Apache license headers for moved files
Move namespace tests to root integration module
Fix several miscellaneous compiler/Eclipse warnings
Remove duplicate test resources
Fix warnings due to unused import... | merge branch 'spr-9431' into cleanup-3.2.x | 42 | true | false | 5 | true | true | false | spring-projects | spring-framework | 19,119 |
cf68cc5f0b2650bb1cd34064d7e43747f79285a4 | Chris Beams | Chris Beams | Eliminate AJ @Async warning in test case
Prior to this commit, ClassWithAsyncAnnotation#return5 forced an
unsuppressable warning in Eclipse, making it virtually impossible to
get to a zero-warnings state in the codebase.
The 'solution' here is simply to comment out the method and it's
associated test case. The 'decla... | eliminate aj @async warning in test case | 40 | false | false | 7 | true | false | true | spring-projects | spring-framework | 19,120 |
676231644ddd38d14826dd961b20672f6ea1bda8 | Chris Beams | Chris Beams | Update Apache license headers for moved files
Issue: SPR-9431 | update apache license headers for moved files | 45 | false | false | 7 | false | true | false | spring-projects | spring-framework | 19,121 |
42729014b67e8d63e70420f3aa4c058f00b07b45 | Chris Beams | Chris Beams | Move namespace tests to root integration module
Prior to this change, spring-beans contained its own META-INF containing
spring.handlers and spring.schemas files in src/main/resources; it also
had files of the same name within src/test/resources/META-INF, causing
'duplicate resource' warnings and confusion in general.... | move namespace tests to root integration module | 47 | false | false | 7 | true | true | true | spring-projects | spring-framework | 19,122 |
662a02b952126c726fe0db16179a6b4595cc08b9 | Chris Beams | Chris Beams | Fix several miscellaneous compiler/Eclipse warnings
- Suppress an (intentional) AspectJ warning
- Remove unused imports
- Suppress a [hiding] warning
- Fix a generics warning related to extension of final types
Issue: SPR-9431 | fix several miscellaneous compiler/eclipse warnings | 51 | false | false | 5 | false | true | false | spring-projects | spring-framework | 19,123 |
15e9fe638c631c8c75d3499a083c103ddef594a8 | Chris Beams | Chris Beams | Remove duplicate test resources
The files deleted in this commit existed in identical form in two places
within a given module; typically in src/test/java and
src/test/resources. The version within src/test/resources has been
favored in all cases.
This change was prompted by associated Eclipse warnings, which have no... | remove duplicate test resources | 31 | false | false | 4 | true | true | true | spring-projects | spring-framework | 19,124 |
51b307681a8ee7d89180f58f967856b9c4bf9232 | Chris Beams | Chris Beams | Fix warnings due to unused import statements
Issue: SPR-9431 | fix warnings due to unused import statements | 44 | false | false | 7 | true | true | true | spring-projects | spring-framework | 19,125 |
03517871a63e8f8079a2b2c4904cf0525eba582e | Chris Beams | Chris Beams | Merge branch 'cleanup-3.2.x' into SPR-9431
Catch up to latest changes on cleanup-3.2.x in order to avoid conflicts
when adding additional commits fixing compiler warnings. | merge branch 'cleanup-3.2.x' into spr-9431 | 42 | true | false | 5 | true | true | false | spring-projects | spring-framework | 19,126 |
b836e14b5f5291704d231083fb45e6ebd35871f1 | Chris Beams | Chris Beams | Merge branch 'cleanup-test-duplicates' into cleanup-3.2.x
* cleanup-test-duplicates:
Update Apache license headers for affected sources
Remove duplicate test classes
Replace test beans with test objects
Conflicts:
spring-beans/src/test/java/org/springframework/beans/factory/ConcurrentBeanFactoryTests.java
spr... | merge branch 'cleanup-test-duplicates' into cleanup-3.2.x | 57 | true | false | 5 | false | true | false | spring-projects | spring-framework | 19,127 |
d1e6dbe74aea3503181f87b1879d925b3c80490b | Chris Beams | Chris Beams | Update Apache license headers for affected sources | update apache license headers for affected sources | 50 | false | false | 7 | false | true | false | spring-projects | spring-framework | 19,128 |
42b5d6dd7edda6121bd87852805471ea53074985 | Phillip Webb | Chris Beams | Remove duplicate test classes
Prior to this commit many test utility classes and sample beans were
duplicated across projects. This was previously necessary due to the
fact that dependent test sources were not shared during a gradle
build. Since the introduction of the 'test-source-set-dependencies'
gradle plugin this... | remove duplicate test classes | 29 | false | false | 4 | true | true | true | spring-projects | spring-framework | 19,129 |
2a30fa07ea545c5187788825febd6e5eb7460275 | Phillip Webb | Chris Beams | Replace test beans with test objects
Refactor spring-core tests to replace test beans from
'org.springframework.beans' with lighter test objects in
'org.springframework.tests.sample.objects'. | replace test beans with test objects | 36 | false | false | 6 | true | true | true | spring-projects | spring-framework | 19,130 |
bd1db73a17c7dd3ad78a5e74225e67ace12f1a60 | Chris Beams | Chris Beams | Merge branch 'share-test-classes' into cleanup-3.2.x
* share-test-classes:
Polish test sourceSet dependencies
Add test dependencies sources for testCompile | merge branch 'share-test-classes' into cleanup-3.2.x | 52 | true | false | 5 | false | true | false | spring-projects | spring-framework | 19,131 |
16a3a8bda82f0c1ecba55f741d872c0e630b1e6e | Phillip Webb | Chris Beams | Polish test sourceSet dependencies
Remove all direct sourceSets.test.output dependencies and instead rely
on the 'test-source-set-dependencies' plugin.
This commit also updates the api JavaDoc task to ensure that
dependencies are not resolved too early. | polish test sourceset dependencies | 34 | false | false | 4 | false | false | false | spring-projects | spring-framework | 19,132 |
d52f883453ead747a1247e8089c58d68799f4c1d | Phillip Webb | Chris Beams | Add test dependencies sources for testCompile
Update the TestSourceSetDependenciesPlugin to consider testCompile
configurations. | add test dependencies sources for testcompile | 45 | false | false | 6 | false | false | false | spring-projects | spring-framework | 19,133 |
d3fe57816bfb7bb62d06cb2627da62a800b5369c | Chris Beams | Chris Beams | Merge branch '3.2.x' into master
* 3.2.x:
Use unmodified 'version' when not on a topic branch | merge branch '3.2.x' into master | 32 | true | false | 5 | false | true | false | spring-projects | spring-framework | 19,134 |
0e8e9981f5f4e6d4bd2238f7c5821fafc0d4270b | Chris Beams | Chris Beams | Merge branch 'cleanup-3.2.x' into 3.2.x
* cleanup-3.2.x:
Use unmodified 'version' when not on a topic branch | merge branch 'cleanup-3.2.x' into 3.2.x | 39 | true | false | 5 | true | true | false | spring-projects | spring-framework | 19,135 |
1487b703940e2d3d34abe98edacbad5f1a7489d1 | Chris Beams | Chris Beams | Merge branch 'SPR-10124' into cleanup-3.2.x
* SPR-10124:
Use unmodified 'version' when not on a topic branch | merge branch 'spr-10124' into cleanup-3.2.x | 43 | true | false | 5 | true | true | false | spring-projects | spring-framework | 19,136 |
7d6161f280af4558ec4ace3aafe29c33a493c72e | Chris Beams | Chris Beams | Use unmodified 'version' when not on a topic branch | use unmodified 'version' when not on a topic branch | 51 | false | false | 9 | true | true | false | spring-projects | spring-framework | 19,137 |
7a737bebdd2998ee566830f0e170c0cbc14428a5 | Chris Beams | Chris Beams | Merge branch '3.2.x' into master
* 3.2.x:
Fix ClassCastException when setting media types
Enable execution of TestNG tests in spring-test
Polish support for topic branch-specific versions
Segregate add'l long-running and performance tests
Eliminate EBR dependencies and repository config
Skip creation of ID... | merge branch '3.2.x' into master | 32 | true | false | 5 | false | true | false | spring-projects | spring-framework | 19,138 |
3d1b3868fe3b38f5552883f54111c53f6ee75572 | Chris Beams | Chris Beams | Merge branch 'cleanup-3.2.x' into 3.2.x
* cleanup-3.2.x:
Enable execution of TestNG tests in spring-test
Polish support for topic branch-specific versions
Segregate add'l long-running and performance tests
Eliminate EBR dependencies and repository config
Skip creation of IDEA metadata for spring-aspects
Fi... | merge branch 'cleanup-3.2.x' into 3.2.x | 39 | true | false | 5 | true | true | false | spring-projects | spring-framework | 19,139 |
3b5e90d242f785fcac162712e52f63925ad599c4 | Chris Beams | Chris Beams | Merge branch 'SPR-8116' into cleanup-3.2.x
* SPR-8116:
Enable execution of TestNG tests in spring-test | merge branch 'spr-8116' into cleanup-3.2.x | 42 | true | false | 5 | true | true | false | spring-projects | spring-framework | 19,140 |
ab16af5c5058cd518b3cde2a1556b45a97eb9c7c | Chris Beams | Chris Beams | Merge branch 'SPR-10124' into cleanup-3.2.x
* SPR-10124:
Polish support for topic branch-specific versions | merge branch 'spr-10124' into cleanup-3.2.x | 43 | true | false | 5 | true | true | false | spring-projects | spring-framework | 19,141 |
9f9f1ed2533110081c4a62b20d2b5658c8a68496 | Rossen Stoyanchev | Rossen Stoyanchev | Fix ClassCastException when setting media types
Issue: SPR-10019 | fix classcastexception when setting media types | 47 | false | false | 6 | true | true | true | spring-projects | spring-framework | 19,142 |
8216e75a917c10631f98cbf9f5b570e2838b0569 | Chris Beams | Chris Beams | Merge branch 'SPR-9984' into cleanup-3.2.x
* SPR-9984:
Segregate add'l long-running and performance tests | merge branch 'spr-9984' into cleanup-3.2.x | 42 | true | false | 5 | true | true | false | spring-projects | spring-framework | 19,143 |
3cbb136861ce6ce6d9bacc2ef4d76d595fcf9a83 | Chris Beams | Chris Beams | Enable execution of TestNG tests in spring-test
Both JUnit- and TestNG-based tests are once again executed in the
spring-test module.
Note that two lines in FailingBeforeAndAfterMethodsTests had to be
commented out. See diff or `git grep 'See SPR-8116'` for details.
Issue: SPR-8116 | enable execution of testng tests in spring-test | 47 | false | false | 7 | false | true | false | spring-projects | spring-framework | 19,144 |
44a7e77e6dfc18cb83b1abf52c892b52484fdfe0 | Chris Beams | Chris Beams | Polish support for topic branch-specific versions
Issue: SPR-10124 | polish support for topic branch-specific versions | 49 | false | false | 6 | false | false | false | spring-projects | spring-framework | 19,145 |
68e3b7773cbce0e1a834945f655e640d82cf7651 | Chris Beams | Chris Beams | Segregate add'l long-running and performance tests
- Add TestGroup#LONG_RUNNING to distinguish from #PERFORMANCE, the
former being tests that simply take a long time vs the latter being
tests that are actually dependent on certain actions happening within
a given time window and are thefore CPU-dependent.
I... | segregate add'l long-running and performance tests | 50 | false | false | 6 | false | true | false | spring-projects | spring-framework | 19,146 |
acd86a1fd77273ccb9fb56a20114c8d98e91b46a | Chris Beams | Chris Beams | Merge branch 'cleanup-3.2.x' into SPR-9984 | merge branch 'cleanup-3.2.x' into spr-9984 | 42 | true | false | 5 | true | true | false | spring-projects | spring-framework | 19,147 |
830d73b4a7cc046d80068318389891562ed47076 | Chris Beams | Chris Beams | Eliminate EBR dependencies and repository config
Swap the following EBR-specific dependencies for their equivalents at
Maven Central:
- atinject-tck
- jaxb
- xmlbeans
Remove the /ebr-maven-external repository from the build script entirely
such that all dependencies are now resolved against a single repository:
... | eliminate ebr dependencies and repository config | 48 | false | false | 6 | true | true | true | spring-projects | spring-framework | 19,148 |
dcda78bad6abed9f0738dbf77a06d2acfbf036a8 | Chris Beams | Chris Beams | Skip creation of IDEA metadata for spring-aspects
See diff for details | skip creation of idea metadata for spring-aspects | 49 | false | false | 7 | false | true | false | spring-projects | spring-framework | 19,149 |
a6eaf871f1637a29f89effb8d4ecd7f1af4b4310 | Chris Beams | Chris Beams | Fix Eclipse compilation error in Gradle plugin
Prior to this commit, the following compilation error presented itself
when importing buildSrc ('spring-build-src') into Eclipse:
Groovy:missing type for constructor call @ line 36, column 49.
This commit replaces the use of the diamond operator with typical
generic... | fix eclipse compilation error in gradle plugin | 46 | false | false | 7 | false | true | false | spring-projects | spring-framework | 19,150 |
a2d80c6094f17a918c63122e01a5350166b272bc | Chris Beams | Chris Beams | Polish build.gradle
- Consolidate shared test systemProperty declarations
- Consolidate easymock dependency declarations | polish build.gradle | 19 | false | false | 2 | false | false | false | spring-projects | spring-framework | 19,151 |
1c31f6af8e7715048649857fbd57469e036f3f8c | Chris Beams | Chris Beams | Merge branch '3.2.x' into cleanup-3.2.x | merge branch '3.2.x' into cleanup-3.2.x | 39 | true | false | 5 | false | true | false | spring-projects | spring-framework | 19,152 |
42cdb200edf37af50d4bab8bbf0514434916ba69 | Rossen Stoyanchev | Rossen Stoyanchev | Fix null parameterName issue in content negotiation
After this change ParameterContentNegotiationStrategy no longer allows
a null parameter name, ContentNegotiationManagerFactoryBean also
requires it.
Issue: SPR-10139 | fix null parametername issue in content negotiation | 51 | false | false | 7 | true | true | false | spring-projects | spring-framework | 19,153 |
0b2c3050727be0774e11519024284389cfb680fa | Phillip Webb | Phillip Webb | Recursively add test dependencies
Update TestSourceSetDependenciesPlugin to recursively search project
dependencies when adding test source sets. | recursively add test dependencies | 33 | false | false | 4 | false | false | false | spring-projects | spring-framework | 19,154 |
961dbdb68a49f43d37250dde77dda0e120d4e29b | Chris Beams | Chris Beams | Merge branch '3.2.x' into master
* 3.2.x:
Exclude spring-build-src from maven publish
Move spring-build-junit into spring-core
Relocate MergePlugin package
Develop a gradle plugin to add test dependencies
Expose Gradle buildSrc for IDE support
Fix [deprecation] compiler warnings
Upgrade to xmlunit versio... | merge branch '3.2.x' into master | 32 | true | false | 5 | false | true | false | spring-projects | spring-framework | 19,155 |
70eaf02b7fab9d8a023ddb50cedcab859e93c245 | Chris Beams | Chris Beams | Revert "Merge branch 'SPR-10130' into cleanup-master"
This reverts commit 45fa50821a14d5b3f40a7c318137406ba6a2ca2e, reversing
changes made to a312d900f812586e4d0614c9c5904eb16f059509. | revert "merge branch 'spr-10130' into cleanup-master" | 53 | false | false | 6 | false | false | false | spring-projects | spring-framework | 19,156 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.