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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
fb7dfc4569ad046541fc38011b781f96b57acf60 | Rossen Stoyanchev | Rossen Stoyanchev | Polish | polish | 6 | false | false | 1 | false | false | false | spring-projects | spring-framework | 14,057 |
a90789891070d4b7a247be0459cede380f667b44 | Stephane Maldini | Stephane Maldini | fix signature | fix signature | 13 | false | false | 2 | true | true | false | spring-projects | spring-framework | 14,058 |
2b3ad218e579591396a50363f04c097d05be3a12 | Brian Clozel | Brian Clozel | Clarify RequestMappingHandlerAdapter javadoc
This commit updates the javadoc of
`RequestMappingHanderAdapter.setCacheSecondsForSessionAttributeHandlers`
to explain how one can disable that feature and prevent "Cache-Control"
directives from being added when `@SessionAttributes` annotations are
used on Controllers.
Is... | clarify requestmappinghandleradapter javadoc | 44 | false | false | 3 | true | true | true | spring-projects | spring-framework | 14,059 |
84fe46cd4376d14fbf8d0bb2e7e45bbec879d5a1 | Brian Clozel | Brian Clozel | Register prefixed path patterns with FixedVersionStrategy
Prior to this change, configuring a `FixedVersionStrategy` like so
would configure a single "/js/**" path pattern:
```
versionResourceResolver.addFixedVersionStrategy("v1.0.0","/js/**");
```
This commit makes sure that for each path pattern, its prefixed vers... | register prefixed path patterns with fixedversionstrategy | 57 | false | false | 6 | true | true | false | spring-projects | spring-framework | 14,060 |
8f1d06f19c41600cf70c8ccfab5c31b15be5d12c | Brian Clozel | Brian Clozel | Reorder HTTP headers processing in RequestMappingHandlerAdapter
Prior to this change, the `RequestMappingHandlerAdapter` would first add
a "Cache-Control" HTTP header to the response (depending on its
`WebContentGenerator` configuration and `@SessionAttributes` on the
handler class); then, the Adapter would delegate t... | reorder http headers processing in requestmappinghandleradapter | 63 | false | false | 6 | false | true | false | spring-projects | spring-framework | 14,061 |
ebccfd023a7c7bb862bff96796310d8a35305f87 | Rossen Stoyanchev | Rossen Stoyanchev | MVC Java config protected factory methods
This change exposes protected methods for instantiating sub-classes of
RequestMappingHandlerAdapter and ExceptonHandlerExceptionResolver
similar to the existing method for RequestMappingHandlerMapping. | mvc java config protected factory methods | 41 | false | false | 6 | false | false | false | spring-projects | spring-framework | 14,062 |
9cc518d167c56a83475f137ed475ba4e6d63a335 | Rossen Stoyanchev | Rossen Stoyanchev | Polish StringHttpMessageConverterTests | polish stringhttpmessageconvertertests | 38 | false | false | 2 | false | false | false | spring-projects | spring-framework | 14,063 |
cd903e26dee8a623faa867f699db052e750611b8 | Stephane Nicoll | Stephane Nicoll | Polish | polish | 6 | false | false | 1 | false | false | false | spring-projects | spring-framework | 14,064 |
a12f23936ca2a3e857ce333a718e4d95914ea219 | Andy Clement | Andy Clement | Allow use of '&' prefix to access factory bean in SpEL
Prior to this change SpEL did not have an syntactic
construct enabling easy access to a FactoryBean. With this
change it is now possible to use &foo in an expression when
the factory bean should be returned.
Issue: SPR-9511 | allow use of '&' prefix to access factory bean in spel | 54 | false | false | 11 | true | true | false | spring-projects | spring-framework | 14,065 |
415b2763cea36b86fdc2db18c93a88dcc6cdaa06 | Rossen Stoyanchev | Rossen Stoyanchev | MockHttpServletRequestBuilder parses form data
Spring MVC Test now parses application/x-www-form-urlencoded request
content and populates request parameters from it.
This can be useful when running client-side tests against a MockMvc
via MockMvcClientHttpRequestFactory.
Issue: SPR-13733 | mockhttpservletrequestbuilder parses form data | 46 | false | false | 4 | false | false | false | spring-projects | spring-framework | 14,066 |
6a9455b7d0e9d8af2f3a3fd9ad832d5b25cb8f5e | Rossen Stoyanchev | Rossen Stoyanchev | Fix failing test | fix failing test | 16 | false | false | 3 | true | true | true | spring-projects | spring-framework | 14,067 |
1416c2a00e4624bf7b2ce18a3d9b1ca7ae7096b4 | Rossen Stoyanchev | Rossen Stoyanchev | ContentRequestMatchers asserts request with form data
Issue: SPR-13044 | contentrequestmatchers asserts request with form data | 53 | false | false | 6 | false | false | false | spring-projects | spring-framework | 14,068 |
2f6d86b7aadd0f8cddb567e2ac13e9c1b1019107 | Brian Clozel | Brian Clozel | Fix OutOfBoundsExceptio in ResourceUrlEncodingFilter
Prior to this change, the `ResourceUrlEncodingFilter` would try to
lookup resources URLs as soon as the given URL would be longer than the
expected context+servlet prefix path. This can lead to
OutOfBoundsExceptions when the provided URL does not start with that
pre... | fix outofboundsexceptio in resourceurlencodingfilter | 52 | false | false | 4 | false | true | false | spring-projects | spring-framework | 14,069 |
4668aa775d274550826651504322c4a88f05ebb8 | Juergen Hoeller | Juergen Hoeller | Language tag methods declared as @UsesJava7
Issue: SPR-13274 | language tag methods declared as @usesjava7 | 43 | false | false | 6 | false | false | false | spring-projects | spring-framework | 14,070 |
b28310d0b9d034ebe30e884d72b36f31f4cd080c | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 14,071 |
0dd320f92e31d516df9c5f85d4ddbe16ffeaa2cc | Juergen Hoeller | Juergen Hoeller | Support for BCP 47 language tags
Issue: SPR-13032 | support for bcp 47 language tags | 32 | false | false | 6 | false | false | false | spring-projects | spring-framework | 14,072 |
cad2ce0ac23d176c635e8a236635999dd632862c | Juergen Hoeller | Juergen Hoeller | ConstructorResolver always uses arguments when completely provided
Issue: SPR-13808 | constructorresolver always uses arguments when completely provided | 66 | false | false | 7 | false | false | false | spring-projects | spring-framework | 14,073 |
09cea6e6bb23ff673d7eedf64a72f44d5b3e5b1e | Juergen Hoeller | Juergen Hoeller | Refined Future exception handling
Issue: SPR-13732 | refined future exception handling | 33 | false | false | 4 | false | false | false | spring-projects | spring-framework | 14,074 |
d59b0d12d429288e2742ffca9e2f4b4b8f8e5344 | Stephane Nicoll | Stephane Nicoll | Merge pull request #939 from sniewczas/patch-1
* pr/939:
Fix markup in reference section 9.4.2 | merge pull request #939 from sniewczas/patch-1 | 46 | true | false | 6 | false | false | false | spring-projects | spring-framework | 14,075 |
adf744cce03041b22e9a60cf2497b059450ffb7e | Sylwester Niewczas | Stephane Nicoll | Fix markup in reference section 9.4.2
Closes gh-939 | fix markup in reference section 9.4.2 | 37 | false | false | 6 | false | true | false | spring-projects | spring-framework | 14,076 |
1fc3fc8bf7469169b6eed0bf7d03b263e005ad44 | Stephane Nicoll | Stephane Nicoll | Update documentation
Issue: SPR-13471 | update documentation | 20 | false | false | 2 | true | false | false | spring-projects | spring-framework | 14,077 |
edd8e2d56d8fb207274dd262d01c381cc602df40 | Stephane Nicoll | Stephane Nicoll | Update documentation
Issue: SPR-12278 | update documentation | 20 | false | false | 2 | true | false | false | spring-projects | spring-framework | 14,078 |
19d97c425316801a767cf99178ef30af730b1570 | Stephane Nicoll | Stephane Nicoll | Support for multi-threaded cache access
Previously, if a `@Cacheable` method was accessed with the same key by
multiple threads, the underlying method was invoked several times instead
of blocking the threads while the value is computed. This scenario
typically affects users that enable caching to avoid calling a cost... | support for multi-threaded cache access | 39 | false | false | 5 | false | false | false | spring-projects | spring-framework | 14,079 |
15c7dcd11ab8a2f8c2a8bd7ba0e5e70304f5ae71 | Stephane Nicoll | Stephane Nicoll | Upgrade Caffeine to 2.0.3 | upgrade caffeine to 2.0.3 | 25 | false | false | 4 | true | true | true | spring-projects | spring-framework | 14,080 |
66562f258917fa448db96787107ba6574359040d | Sam Brannen | Sam Brannen | Require JUnit 4.12 or higher in the TestContext framework
Issue: SPR-13275 | require junit 4.12 or higher in the testcontext framework | 57 | false | false | 9 | true | true | false | spring-projects | spring-framework | 14,081 |
db1171d5c4839293aa390e301af73b100fc206e7 | Juergen Hoeller | Juergen Hoeller | Background bootstrapping via "bootstrapExecutor" for LocalContainerEntityManagerFactoryBean and LocalSessionFactoryBean/Builder
Issue: SPR-13732 | background bootstrapping via "bootstrapexecutor" for localcontainerentitymanagerfactorybean and localsessionfactorybean/builder | 128 | false | false | 8 | false | false | false | spring-projects | spring-framework | 14,082 |
64bd8b7f34e1546ccfcb6ca44c8805ae03310d91 | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 14,083 |
387c8a8181e2332b1978c231f339576db6266ffd | Juergen Hoeller | Juergen Hoeller | Differentiate between TypeDescriptors with same annotations but different attributes
Issue: SPR-13714 | differentiate between typedescriptors with same annotations but different attributes | 84 | false | false | 9 | false | false | false | spring-projects | spring-framework | 14,084 |
da4e4aab39391e11637b8e405f76c917149b340e | Stephane Maldini | Stephane Maldini | test operator log | test operator log | 17 | false | false | 3 | false | false | false | spring-projects | spring-framework | 14,085 |
06056e6aa61cc687ab0d174bc51bebdaf92883fc | Juergen Hoeller | Juergen Hoeller | Upgrade to JavaMail 1.5.5 and Hibernate ORM 5.0.6 | upgrade to javamail 1.5.5 and hibernate orm 5.0.6 | 49 | false | false | 8 | false | false | false | spring-projects | spring-framework | 14,086 |
2e6eb614b59bfa590dd02d6205837500ccc33f7c | Juergen Hoeller | Juergen Hoeller | Avoid scoped destruction callbacks in case of no post-processor actually applying
Issue: SPR-13744 | avoid scoped destruction callbacks in case of no post-processor actually applying | 81 | false | false | 11 | true | true | false | spring-projects | spring-framework | 14,087 |
fca5365cf1b8068e750b0130dabb4c0d7c667767 | Juergen Hoeller | Juergen Hoeller | Avoid scoped destruction callbacks in case of no post-processor actually applying
Issue: SPR-13744 | avoid scoped destruction callbacks in case of no post-processor actually applying | 81 | false | false | 11 | true | true | false | spring-projects | spring-framework | 14,088 |
1502e49fa5884a49678d5b1656528586ce67a8ea | Stephane Nicoll | Stephane Nicoll | Merge pull request #921 from ben-manes/caffeine
* pr/921:
Polish contribution
Add caching support for Caffeine
Detect @Autowired constructors for configuration classes | merge pull request #921 from ben-manes/caffeine | 47 | true | false | 6 | false | false | false | spring-projects | spring-framework | 14,089 |
3a238a2b6104f129915fc46cb3c62e6a08348a3c | Stephane Nicoll | Stephane Nicoll | Polish contribution
Closes gh-921
Issue: SPR-13690 | polish contribution | 19 | false | false | 2 | false | false | false | spring-projects | spring-framework | 14,090 |
13aabeef37018e9315a6b041b1b83907dc6c500f | Ben Manes | Stephane Nicoll | Add caching support for Caffeine
Issue: SPR-13690 | add caching support for caffeine | 32 | false | false | 5 | true | true | true | spring-projects | spring-framework | 14,091 |
967ef7376586322e2801dd22c36990eb3f9f95b0 | Juergen Hoeller | Juergen Hoeller | Detect @Autowired constructors for configuration classes
Issue: SPR-13471 | detect @autowired constructors for configuration classes | 56 | false | false | 6 | true | true | false | spring-projects | spring-framework | 14,092 |
9e7c791a0fb884950edeadd9fc456ab2caf5a3f4 | Stephane Nicoll | Stephane Nicoll | Automatically autowire a bean with one constructor
Previously, if a managed bean had only one non-default constructor, we
should still annotate it with `@Autowired` to properly use constructor
injection. Not doing so resulted in an error as the container was
trying to call the default (non-existing) constructor.
This... | automatically autowire a bean with one constructor | 50 | false | false | 7 | false | false | false | spring-projects | spring-framework | 14,093 |
3d87718fc6d14a9638682317121f9647e0441cc3 | Juergen Hoeller | Juergen Hoeller | DispatcherServlet and ServletWrapping/ForwardingController accept any HTTP method by default
Issue: SPR-4799 | dispatcherservlet and servletwrapping/forwardingcontroller accept any http method by default | 92 | false | false | 9 | false | false | false | spring-projects | spring-framework | 14,094 |
08748ecaa44f954b0b5df01c3ab6f27dcdc21a13 | Juergen Hoeller | Juergen Hoeller | PathMatchingResourcePatternResolver evaluates classpath manifest entries as well
Issue: SPR-13685 | pathmatchingresourcepatternresolver evaluates classpath manifest entries as well | 80 | false | false | 7 | false | false | false | spring-projects | spring-framework | 14,095 |
2cfe00ce32e7d4c893d63a559a8d9234b23de924 | Juergen Hoeller | Juergen Hoeller | Updated reference documentation from Hibernate 3 to Hibernate 5
Issue: SPR-13230 | updated reference documentation from hibernate 3 to hibernate 5 | 63 | false | false | 9 | false | false | false | spring-projects | spring-framework | 14,096 |
0084c077bb6f66d8bed3d7a4f088d4e2583d7ac9 | Juergen Hoeller | Juergen Hoeller | Aligned import order | aligned import order | 20 | false | false | 3 | false | false | false | spring-projects | spring-framework | 14,097 |
760668c034cda294999a635f2e6532a329c8a66d | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 14,098 |
5b3edcd9f9292cc3175b47bd94dc03ef43f8fc2a | Sam Brannen | Sam Brannen | Spring Cleaning in December
- Delete unused imports
- Delete unused code
- Clean up warnings | spring cleaning in december | 27 | false | false | 4 | false | false | false | spring-projects | spring-framework | 14,099 |
0e68d2e951dbe720745636ccf65c7dd76f3893b3 | Juergen Hoeller | Juergen Hoeller | Explicit references to spring-mvc-4.2.xsd for Velocity declarations
Issue: SPR-13235 | explicit references to spring-mvc-4.2.xsd for velocity declarations | 67 | false | false | 7 | false | false | false | spring-projects | spring-framework | 14,100 |
9eb713ae2c0ca592318a4d4cdfda4f876dc863c4 | Sam Brannen | Sam Brannen | Mention DCBeforeModesTEL in TestExecutionListener Javadoc | mention dcbeforemodestel in testexecutionlistener javadoc | 57 | false | false | 5 | false | true | false | spring-projects | spring-framework | 14,101 |
b75f5faf88c3be80d16abe4ecd96754989eddcd8 | Juergen Hoeller | Juergen Hoeller | Remove Tiles 2 support
Issue: SPR-13229 | remove tiles 2 support | 22 | false | false | 4 | true | true | true | spring-projects | spring-framework | 14,102 |
e90942223fd642700fcf479ab81e55c07a236cc7 | Juergen Hoeller | Juergen Hoeller | Deprecate Hibernate 3 support
Issue: SPR-13230 | deprecate hibernate 3 support | 29 | false | false | 4 | false | true | false | spring-projects | spring-framework | 14,103 |
a2a9c47e59090e71fe199560a9aa0b6335061a3d | Juergen Hoeller | Juergen Hoeller | Deprecate Velocity support
Issue: SPR-13235 | deprecate velocity support | 26 | false | false | 3 | false | true | false | spring-projects | spring-framework | 14,104 |
8ce5e88c66a220a549aa74489cd21a495a77d9a9 | Juergen Hoeller | Juergen Hoeller | Require Jackson 2.6+, FreeMarker 2.3.21+, XStream 1.4.5+
Issue: SPR-13062 | require jackson 2.6+, freemarker 2.3.21+, xstream 1.4.5+ | 56 | false | false | 7 | true | true | false | spring-projects | spring-framework | 14,105 |
db05f43a757e92817b89cb40dcfe559747804b69 | Juergen Hoeller | Juergen Hoeller | Require JsonPath 1.1+
Issue: SPR-13729 | require jsonpath 1.1+ | 21 | false | false | 3 | true | true | true | spring-projects | spring-framework | 14,106 |
2fd48c92d755ebaa5e711f3d45e6ed9c89e6c287 | Juergen Hoeller | Juergen Hoeller | Correct spring-websocket-4.2 versus spring-websocket-4.1 xsd declarations
Issue: SPR-13804 | correct spring-websocket-4.2 versus spring-websocket-4.1 xsd declarations | 73 | false | false | 6 | false | false | false | spring-projects | spring-framework | 14,107 |
93de3553c1b12ad4b09e9472a6aef9ebdcfc2fab | Sam Brannen | Sam Brannen | Polish Javadoc in @Cache* annotations | polish javadoc in @cache* annotations | 37 | false | false | 5 | false | false | false | spring-projects | spring-framework | 14,108 |
752d3c715ad8a7b6174d1a0a5107bd408a0b0e9a | Stephane Nicoll | Stephane Nicoll | Initiate structure for 4.3 XSDs | initiate structure for 4.3 xsds | 31 | false | false | 5 | true | true | true | spring-projects | spring-framework | 14,109 |
15185c75a395a42b1fd6db4c7f48e178d6f14a90 | Stephane Maldini | Stephane Maldini | use Publishers.onErrorResumeNext | use publishers.onerrorresumenext | 32 | false | false | 2 | true | true | false | spring-projects | spring-framework | 14,110 |
07022eae1e4b2e2b9051b7b9b3e41858ea7900d3 | Spring Buildmaster | Spring Buildmaster | Next Development Version | next development version | 24 | false | false | 3 | false | false | false | spring-projects | spring-framework | 14,111 |
935c0a463e918ff42f1ba8a83efc0b099717a309 | Juergen Hoeller | Juergen Hoeller | Revised MockMvcResultHandlers logger initialization
Issue: SPR-13802 | revised mockmvcresulthandlers logger initialization | 51 | false | false | 4 | false | false | false | spring-projects | spring-framework | 14,112 |
62caa3c3b806018f79e21c82ab3d7e934ea069a8 | Juergen Hoeller | Juergen Hoeller | Upgrade to OkHttp 2.7 and TestNG 6.9.10 | upgrade to okhttp 2.7 and testng 6.9.10 | 39 | false | false | 7 | false | false | false | spring-projects | spring-framework | 14,113 |
753347ea98929922c4df84b87de8a3ee1195187a | Juergen Hoeller | Juergen Hoeller | Consistent static final logger declarations | consistent static final logger declarations | 43 | false | false | 5 | false | false | false | spring-projects | spring-framework | 14,114 |
997278e3ed0db6c1ae069469116a79d453c9d2ad | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 14,115 |
69973d984dfff27837927da99cfe08047aae7c0d | Rossen Stoyanchev | Rossen Stoyanchev | Fix test failure | fix test failure | 16 | false | false | 3 | false | true | false | spring-projects | spring-framework | 14,116 |
c8aa48faa9a4a3aae642d02850ee0bf6b5d4071c | Rossen Stoyanchev | Rossen Stoyanchev | Add params(MultiValueMap) to MockMvc
Issue: SPR-13801 | add params(multivaluemap) to mockmvc | 36 | false | false | 4 | true | true | true | spring-projects | spring-framework | 14,117 |
623874b4d0e56770cc3574968ec008e1cc4f831b | Rossen Stoyanchev | Rossen Stoyanchev | Constant HandlerNotFoundException | constant handlernotfoundexception | 33 | false | false | 2 | false | false | false | spring-projects | spring-framework | 14,118 |
5626384812631843df52bea177122507c97b1621 | Juergen Hoeller | Juergen Hoeller | Consistent trace log messages and general polishing | consistent trace log messages and general polishing | 51 | false | false | 7 | false | false | false | spring-projects | spring-framework | 14,119 |
3be35c053d14d4700f17b3ac4b27e06aa7c6d12e | Brian Clozel | Brian Clozel | Use LinkedHashmap to preserve insert order
In several places in the spring-webmvc module, URL patterns / objects
relationships are kept in `HashMap`s. When matching with actual URLs,
the algorithm uses a pattern comparator to sort the matching patterns
and select the most specific. But the underlying collection
implem... | use linkedhashmap to preserve insert order | 42 | false | false | 6 | true | true | true | spring-projects | spring-framework | 14,120 |
1b3289d0d521e66da67fadf75a62752470772ec0 | Rossen Stoyanchev | Rossen Stoyanchev | Add InternalServerErrorExceptionHandler | add internalservererrorexceptionhandler | 39 | false | false | 2 | true | true | false | spring-projects | spring-framework | 14,121 |
f2cd92a2433bbed9d60fe269c8ba190eecf5f718 | Rossen Stoyanchev | Rossen Stoyanchev | Fix imports | fix imports | 11 | false | false | 2 | true | true | false | spring-projects | spring-framework | 14,122 |
c13a8c9bb4a643da271e43712c57bda65238b53c | Rossen Stoyanchev | Rossen Stoyanchev | DispatcherHandler maps errors to ResponseStatusException
The DispatcherHandler now has an errorMapper property that is a
function for transforming errors. By default this property is set to an
instance of DispatcherHandlerExceptionMapper which wraps "standard"
framework exceptions and @ResponseStatus-annotated excepti... | dispatcherhandler maps errors to responsestatusexception | 56 | false | false | 5 | false | false | false | spring-projects | spring-framework | 14,123 |
1f15b7e0741b7a57fb9bb02173abb4dc5ac0749a | Rossen Stoyanchev | Rossen Stoyanchev | Add ResponseStatusException
This change adds a ResponseStatusException to associate an exception
with a status code at runtime. Along with that is an
ResponseStatusExceptionHandler that handles ResponseStatusException
by setting the response status. | add responsestatusexception | 27 | false | false | 2 | true | true | false | spring-projects | spring-framework | 14,124 |
5d454d5ea79fb06d8159b1d6a3494faa69c21e4b | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 14,125 |
9e03e0e73d53c4a6e077856aa00792493b2d0d4d | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 14,126 |
b880b4a545b072c1628f09ba5691e61fab721000 | Juergen Hoeller | Juergen Hoeller | Upgrade to Castor 1.4 | upgrade to castor 1.4 | 21 | false | false | 4 | false | false | false | spring-projects | spring-framework | 14,127 |
457fca40f0ce7b1cca6b2b97de0b7f22ffc1caea | Rossen Stoyanchev | Rossen Stoyanchev | Update CONTRIBUTING.md | update contributing.md | 22 | false | false | 2 | false | false | false | spring-projects | spring-framework | 14,128 |
b21e64448bdb02eefc9b08575e3a02ac9537562c | Rossen Stoyanchev | Rossen Stoyanchev | Update CONTRIBUTING.md | update contributing.md | 22 | false | false | 2 | false | false | false | spring-projects | spring-framework | 14,129 |
1f6596d1e36131ede680d70359a244e2010062cf | Rossen Stoyanchev | Rossen Stoyanchev | Update CONTRIBUTING.md | update contributing.md | 22 | false | false | 2 | false | false | false | spring-projects | spring-framework | 14,130 |
ea01b389ba2ebf2817c5cd4f7a39d84694aaa4a4 | Rossen Stoyanchev | Rossen Stoyanchev | Update CONTRIBUTING.md | update contributing.md | 22 | false | false | 2 | false | false | false | spring-projects | spring-framework | 14,131 |
a0bba453da6e10c9b8d3c5822032b01cf5dcfd5f | Rossen Stoyanchev | Rossen Stoyanchev | Add comment to use Stack Overflow before JIRA | add comment to use stack overflow before jira | 45 | false | false | 8 | true | true | true | spring-projects | spring-framework | 14,132 |
a36c0a50e674de0c3c00d89efd26b4b55829231f | Juergen Hoeller | Juergen Hoeller | Defensive error reporting when StandardAnnotationMetadata introspects declared methods
Issue: SPR-13791 | defensive error reporting when standardannotationmetadata introspects declared methods | 86 | false | false | 8 | false | false | false | spring-projects | spring-framework | 14,133 |
21329df7e13173c3117bd73e7aa3a97e94aefffd | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 14,134 |
bdb606b8b11882a002b6361e11d4a2ac60496008 | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 14,135 |
ef1e17fd15e5b32dbfb427ba4cf7c03b4d769070 | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 14,136 |
04f765506e6c383fc112613a99c24a0d5fe6d22d | Juergen Hoeller | Juergen Hoeller | Fine-tuned method/field access checks | fine-tuned method/field access checks | 37 | false | false | 4 | false | false | false | spring-projects | spring-framework | 14,137 |
a28fc760ba8602cdd7c2c16e7ef52efc1daa047f | Andy Clement | Andy Clement | Fix SpEL compilation of static method/property/field operations
Before this change the compilation of a method reference or property/field
access was not properly cleaning up the stack if compilation meant
calling a static method or accessing a static field. In these cases there
is no need for a target object on the s... | fix spel compilation of static method/property/field operations | 63 | false | false | 7 | true | true | false | spring-projects | spring-framework | 14,138 |
9d944fbe7fa2ddb624203aab1ed93580cd418a57 | Juergen Hoeller | Juergen Hoeller | Upgrade to Guava 19.0 and Undertow 1.3.10 | upgrade to guava 19.0 and undertow 1.3.10 | 41 | false | false | 7 | false | false | false | spring-projects | spring-framework | 14,139 |
952a3170e6615f69792d34e246bd2794df820b2c | Rossen Stoyanchev | Rossen Stoyanchev | HeaderResultMatchers supports multi-value headers
Issue: SPR-10087 | headerresultmatchers supports multi-value headers | 49 | false | false | 4 | false | false | false | spring-projects | spring-framework | 14,140 |
ae224bed3ed980a829089abd1c02abdb0395bf94 | Rossen Stoyanchev | Rossen Stoyanchev | Polish HeaderResultMatchers | polish headerresultmatchers | 27 | false | false | 2 | false | false | false | spring-projects | spring-framework | 14,141 |
18db77da7c6959064513a430473f46ad90265a0c | Rossen Stoyanchev | Rossen Stoyanchev | Merge pull request #927 from ksokol-improvement/SPR-13719 | merge pull request #927 from ksokol-improvement/spr-13719 | 57 | true | false | 6 | false | false | false | spring-projects | spring-framework | 14,142 |
df223eb118abb870a5281e74ea3952069de1ad24 | Rossen Stoyanchev | Rossen Stoyanchev | Polish custom HTTP verb in Spring MVC Test
Issue: SPR-13719 | polish custom http verb in spring mvc test | 42 | false | false | 8 | false | false | false | spring-projects | spring-framework | 14,143 |
355434891941a3ea8409d91233b026978167909d | Kamill Sokol | Rossen Stoyanchev | Support custom HTTP verbs in Spring MVC Test
Prior to this commit, Spring MVC Test only supported HTTP methods GET,
POST, HEAD, OPTIONS, PUT, PATCH, DELETE, TRACE and multipart file
upload. This change adds generic methods to MockMvcRequestBuilders in
order to allow testing of arbitrary HTTP methods in a Spring MVC
ap... | support custom http verbs in spring mvc test | 44 | false | false | 8 | false | true | false | spring-projects | spring-framework | 14,144 |
0ba5e1d21ccdce5cc42f953d709bb6db2e7ff4a9 | Stephane Maldini | Stephane Maldini | sync update on reactor-io Buffer move | sync update on reactor-io buffer move | 37 | false | false | 6 | false | false | false | spring-projects | spring-framework | 14,145 |
30b007dc26437c25d404a0430cea8a2e95e5b7d1 | Rossen Stoyanchev | Rossen Stoyanchev | Based on fix in core for SPR-13876 | based on fix in core for spr-13876 | 34 | false | false | 7 | false | false | false | spring-projects | spring-framework | 14,146 |
9e16cbda4c128e827ac30b2b9771ea4c3c362986 | Rossen Stoyanchev | Rossen Stoyanchev | Polish ServletServerHttpRequest change | polish servletserverhttprequest change | 38 | false | false | 3 | true | false | true | spring-projects | spring-framework | 14,147 |
5185953f292b652d11318fadc16dd23cc6330995 | Sammy Chu | Rossen Stoyanchev | Avoid double encoding URI in ServletServerHttpRequest
Issue: SPR-13876 | avoid double encoding uri in servletserverhttprequest | 53 | false | false | 6 | false | true | false | spring-projects | spring-framework | 14,148 |
a5f4aa6824ce250a59bd29705b91adcf71904528 | Rossen Stoyanchev | Rossen Stoyanchev | Add HttpStatus to ModelAndView
Issue: SPR-13560 | add httpstatus to modelandview | 30 | false | false | 4 | true | true | true | spring-projects | spring-framework | 14,149 |
4e162122af36446d43f8196b0c8fbf663d3cc4d5 | Stephane Maldini | Stephane Maldini | sync update on reactor-core | sync update on reactor-core | 27 | false | false | 4 | false | false | false | spring-projects | spring-framework | 14,150 |
7b3e9e09505e78077dab3df33bc16504a4d0ff8a | Stephane Maldini | Stephane Maldini | move queue.disruptor and packagescope RingBufferUtils/RequestTask | move queue.disruptor and packagescope ringbufferutils/requesttask | 65 | false | false | 5 | false | true | false | spring-projects | spring-framework | 14,151 |
4572cfa38c3d3b91c2b23dd519fd4ee147cc6c47 | Sebastien Deleuze | Sebastien Deleuze | Fix RxJava1Converter -> RxJava1ObservableConverter | fix rxjava1converter -> rxjava1observableconverter | 50 | false | false | 4 | false | false | false | spring-projects | spring-framework | 14,152 |
2dd9c9226781ba9105940b0404cfe46f125871e2 | Rossen Stoyanchev | Rossen Stoyanchev | Update reactor converter package | update reactor converter package | 32 | false | false | 4 | false | true | false | spring-projects | spring-framework | 14,153 |
198e31641247061d0e02f8103b6d5b4583b1c619 | Stephane Maldini | Stephane Maldini | demote cyclic dependency under reactor-core reactor package
-> reactor.Mono : reactor.core.publisher.Mono
-> reactor.Flux : reactor.core.publisher.Flux
-> reactor.Processors : reactor.core.publisher.Processors
-> reactor.Timers : reactor.core.timer.Timers
-> reactor.Subscribers : reactor.core.subscriber.Subscribers | demote cyclic dependency under reactor-core reactor package | 59 | false | false | 7 | true | true | false | spring-projects | spring-framework | 14,154 |
53b76e90fc5b3ad954439241ee85acd8209c5fca | Stephane Maldini | Stephane Maldini | move BackpressureUtils to subscription | move backpressureutils to subscription | 38 | false | false | 4 | true | true | true | spring-projects | spring-framework | 14,155 |
bdfdd64db74ba706cb32ee864481e67adc68f55b | Stephane Maldini | Stephane Maldini | merge core.processor and core.publisher | merge core.processor and core.publisher | 39 | true | false | 4 | true | true | false | spring-projects | spring-framework | 14,156 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.