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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
cd13b4882c95ad7150be4c5212d8370f5d1a94a5 | Phillip Webb | Phillip Webb | Merge pull request #513 from HejiaHo/master
* pull513:
Fix ConcurrentReferenceHashMap max constraints | merge pull request #513 from hejiaho/master | 43 | true | false | 6 | true | false | false | spring-projects | spring-framework | 17,357 |
16410cad4de1042c1c9641890b16fa3d49cc8b33 | HejiaHo | Phillip Webb | Fix ConcurrentReferenceHashMap max constraints
Update calculateShift to respect the maximum upper bound as well as the
minimum value.
Issue: SPR-11720 | fix concurrentreferencehashmap max constraints | 46 | false | false | 4 | false | true | false | spring-projects | spring-framework | 17,358 |
5559209233c3090593aa013d1729fad1ab851a1c | Stephane Nicoll | Stephane Nicoll | Remove useless imports | remove useless imports | 22 | false | false | 3 | true | true | true | spring-projects | spring-framework | 17,359 |
51fc3b4aaf01a3d8f8f0f9ec98f5e5c1215cc096 | Rossen Stoyanchev | Rossen Stoyanchev | Refactor @JsonView support w/ ResponseBodyInterceptor
The newly added support for ResponseBodyInterceptor is a good fit for
the (also recently added) support for the Jackson @JsonView annotation.
This change refactors the original implementation of @JsonView support
for @ResponseBody and ResponseEntity controller met... | refactor @jsonview support w/ responsebodyinterceptor | 53 | false | false | 5 | false | false | false | spring-projects | spring-framework | 17,360 |
96b18c8dc22c0c57605a594b21ceec84ec16ee37 | Rossen Stoyanchev | Rossen Stoyanchev | Add ResponseBodyInterceptor
This change introduces a new ResponseBodyInterceptor interface that can
be used to modify the response after @ResponseBody or ResponseEntity
methods but before the body is actually written to the response with the
selected HttpMessageConverter.
The RequestMappingHandlerAdapter and Exceptio... | add responsebodyinterceptor | 27 | false | false | 2 | true | true | false | spring-projects | spring-framework | 17,361 |
f73a8baec74a2dbdcc9ef5727d84f12cb419325f | Juergen Hoeller | Juergen Hoeller | Building against latest javax.el 2.2.x version | building against latest javax.el 2.2.x version | 46 | false | false | 6 | false | false | false | spring-projects | spring-framework | 17,362 |
2619955fc30dc401f46a01fdc66a9ae3bedd9956 | Juergen Hoeller | Juergen Hoeller | Consistently log Class.getName() instead of Class.toString(), avoiding double class term in log message
Issue: SPR-11804 | consistently log class.getname() instead of class.tostring(), avoiding double class term in log message | 103 | false | false | 13 | false | false | false | spring-projects | spring-framework | 17,363 |
41ed228450f82abb544858d3d22743423e281fca | Juergen Hoeller | Juergen Hoeller | Refined check for NoClassDefFoundError in getTestExecutionListeners()
Issue: SPR-11804 | refined check for noclassdeffounderror in gettestexecutionlisteners() | 69 | false | false | 6 | false | false | false | spring-projects | spring-framework | 17,364 |
6188550a4817e1f8f0f024034d0f0b5f03b6ecc3 | Juergen Hoeller | Juergen Hoeller | ServletRequestAttributes skips well-known immutable values when updating accessed session attributes
Issue: SPR-11738 | servletrequestattributes skips well-known immutable values when updating accessed session attributes | 100 | false | false | 10 | false | false | false | spring-projects | spring-framework | 17,365 |
3c45bc4a502fb8b45a3d9dcaedc9c1d271576ee0 | Juergen Hoeller | Juergen Hoeller | Building against Groovy 2.3.1 | building against groovy 2.3.1 | 29 | false | false | 4 | false | false | false | spring-projects | spring-framework | 17,366 |
7469159bf1ddbb0eac292388883fa1904f98d4f0 | Stephane Nicoll | Stephane Nicoll | Add MessageSendingOperations for JMS
This commit adds a JMS implementation of MessageSendingOperations,
allowing to send JMS messages using Spring's standard Messaging
abstraction.
MessagingMessageConverter is a standard JMS's MessageConverter that
can convert Spring's Message to JMS message and vice versa. Existing
... | add messagesendingoperations for jms | 36 | false | false | 4 | true | true | true | spring-projects | spring-framework | 17,367 |
82336c320d73aae704663139a41e5a7f4e82573b | Juergen Hoeller | Juergen Hoeller | Servlet 3 multipart request implements getParameterNames defensively (for WebLogic 12 compatibility)
This commit also includes lazy resolution support for StandardServletMultipartResolver, along the lines of existing lazy mode in CommonsMultipartResolver.
Issue: SPR-11074
Issue: SPR-11730 | servlet 3 multipart request implements getparameternames defensively (for weblogic 12 compatibility) | 100 | false | false | 11 | false | false | false | spring-projects | spring-framework | 17,368 |
f29d6eb5f68bb3acc4100172e5d6bc8b985fd9fa | Juergen Hoeller | Juergen Hoeller | Properly evaluate @Conditional in case of multiple imports for same config class (fixing regression in Spring Boot)
Issue: SPR-11788
(cherry picked from commit 7d78c65) | properly evaluate @conditional in case of multiple imports for same config class (fixing regression in spring boot) | 115 | false | false | 17 | false | false | false | spring-projects | spring-framework | 17,369 |
ea88bc2c816cddd21df90119361b75ad8c566b46 | Juergen Hoeller | Juergen Hoeller | Servlet/PortletResponse supported as a resolvable dependency now (in particular for web controllers)
This feature required support for response exposure on Servlet/PortletRequestAttributes, instead of just in the Servlet/PortletWebRequest subclasses.
Issue: SPR-11795 | servlet/portletresponse supported as a resolvable dependency now (in particular for web controllers) | 100 | false | false | 12 | false | false | false | spring-projects | spring-framework | 17,370 |
5faacd5a3dd131ea2bef1b77f99805e7d42ef331 | Juergen Hoeller | Juergen Hoeller | JmsResourceHolder checks for nested DataSource transactions as well (for Oracle AQ compatibility)
Issue: SPR-11791 | jmsresourceholder checks for nested datasource transactions as well (for oracle aq compatibility) | 97 | false | false | 12 | false | false | false | spring-projects | spring-framework | 17,371 |
52f44b340e03de4fa092f543346c1eb384e78e8d | Juergen Hoeller | Juergen Hoeller | Properly evaluate @Conditional in case of multiple imports for same config class
Issue: SPR-11788 | properly evaluate @conditional in case of multiple imports for same config class | 80 | false | false | 12 | false | false | false | spring-projects | spring-framework | 17,372 |
be0b69cbf1377e3fa8d8abc94f24274f4d0945b2 | Sebastien Deleuze | Rossen Stoyanchev | Add support for Jackson serialization views
Spring MVC now supports Jackon's serialization views for rendering
different subsets of the same POJO from different controller
methods (e.g. detailed page vs summary view).
Issue: SPR-7156 | add support for jackson serialization views | 43 | false | false | 6 | true | true | true | spring-projects | spring-framework | 17,373 |
673a497923ffd63fee0cbd4b71b11277921b777e | Rossen Stoyanchev | Rossen Stoyanchev | Await TcpClient shutdown in STOMP broker relay | await tcpclient shutdown in stomp broker relay | 46 | false | false | 7 | false | true | false | spring-projects | spring-framework | 17,374 |
8ee465103850a3dca018273fe5952e40d5c45a66 | Rossen Stoyanchev | Rossen Stoyanchev | Improve StringUtils.cleanPath
Issue: SPR-11793 | improve stringutils.cleanpath | 29 | false | false | 2 | true | true | false | spring-projects | spring-framework | 17,375 |
3bdf8aefa912beffe44975efefcbe7f5f8dc62c8 | Rossen Stoyanchev | Rossen Stoyanchev | Polish | polish | 6 | false | false | 1 | false | false | false | spring-projects | spring-framework | 17,376 |
0499fcbeb29c5f1ffd70d3adad2ec2edfc194a3f | Arjen Poutsma | Rossen Stoyanchev | Move ResponseEntityBuilder into ResponseEntity
Moved the ResponseEntityBuilder into the ResponseEntity itself.
Issue: SPR-11752 | move responseentitybuilder into responseentity | 46 | false | false | 4 | false | true | false | spring-projects | spring-framework | 17,377 |
8614df8bd44a8c972247da421800e1f7d1d67fcd | Stephane Nicoll | Stephane Nicoll | Add error code for SAP Hana
This commit adds a SQLErrorCodes instance for SAP DB, based on a
contribution from Andrew Clemons
Mostly based on SAP Hana SPS 07 with a few additional codes that are
only present is previous versions:
* -813 - Cannot connect to host somehost:30115 [Connection refused]
* -709 - Unknown ho... | add error code for sap hana | 27 | false | false | 6 | true | true | true | spring-projects | spring-framework | 17,378 |
0d22719e066a8ccf97dfd895b45614c605dcfe63 | Juergen Hoeller | Juergen Hoeller | Latest possible dependency updates for spring-orm | latest possible dependency updates for spring-orm | 49 | false | false | 6 | false | false | false | spring-projects | spring-framework | 17,379 |
7230d6a1aa8ec5d9ea8d7c48bec9082a69474a27 | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 17,380 |
6560aed1c85eef68faeb0356c34e12035a2826bf | Stephane Nicoll | Stephane Nicoll | Avoid JMSException in listener execution
This commit avoids throwing JMSException from the listener execution
as this is not allowed per spec. Our SessionAwareMessageListener
gives a callback that can throw JMSException and we have "abused" it
so far.
Typical message processing goes in those 3 steps:
* Unmarshall the... | avoid jmsexception in listener execution | 40 | false | false | 5 | true | true | true | spring-projects | spring-framework | 17,381 |
b0f0d2f28988eeffff9f6f6bd211c77565cc2704 | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 17,382 |
0728e32e7f3b93e49dfc8c7af20b489b12b3e663 | Juergen Hoeller | Juergen Hoeller | ResultSetWrappingSqlRowSet preserves first matching column per name (as defined in ResultSet's javadoc)
Issue: SPR-11786 | resultsetwrappingsqlrowset preserves first matching column per name (as defined in resultset's javadoc) | 103 | false | false | 12 | false | false | false | spring-projects | spring-framework | 17,383 |
551950cdc0997aedb20ecc0589ce0ccd6339677e | Juergen Hoeller | Juergen Hoeller | Consistent use of ClassUtils.forName instead of class.getClassLoader().loadClass
Issue: SPR-11780 | consistent use of classutils.forname instead of class.getclassloader().loadclass | 80 | false | false | 7 | false | false | false | spring-projects | spring-framework | 17,384 |
f651065b5ee669ff44dcec8aa5156d178c6850c6 | Brian Clozel | Brian Clozel | Polish | polish | 6 | false | false | 1 | false | false | false | spring-projects | spring-framework | 17,385 |
a072b3f20dba0f9b32b5a3936114b3a9c1aef839 | Brian Clozel | Brian Clozel | Fix RestTemplate documentation for gzip encoding
Prior to this commit, RestTemplate's documentation advised to a
DecompressingHttpClient decorator along with Apache's HttpClient in
order to support gzipped responses.
Since this is now deprecated as of Apache HttpClient 4.3+, this commits
update the documentation with... | fix resttemplate documentation for gzip encoding | 48 | false | false | 6 | true | true | true | spring-projects | spring-framework | 17,386 |
eb65a37f4b690ba26b04cc8ba2be0a74ea402bca | Arjen Poutsma | Rossen Stoyanchev | Provide builder for ResponseEntity
This commit introduces a ResponseEntityBuilder, which allows for
building of a ResponseEntity through a fluent API.
Issue: SPR-11752 | provide builder for responseentity | 34 | false | false | 4 | true | true | true | spring-projects | spring-framework | 17,387 |
04e6575db612f71047f45feb84314bbb72857dc9 | Stephane Nicoll | Stephane Nicoll | polishing
This commit adds an explicit error message when the BackOff instance
has returned BackOffExecution#STOP which basically means that no
further attempts are allowed.
This error message is a convenience way to notify that the container is
about to be shut down.
Issue: SPR-11746 | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 17,388 |
2750ab673478e8aebbf7c2c1b363a5c2c7c00b35 | Juergen Hoeller | Juergen Hoeller | Undertow-related polishing | undertow-related polishing | 26 | false | false | 2 | false | false | false | spring-projects | spring-framework | 17,389 |
b43fc7ac0f52adfe0874c338eda4bd4b2c1b3130 | Juergen Hoeller | Juergen Hoeller | Building against Quartz 2.2.1 and JavaMail 1.5.2 | building against quartz 2.2.1 and javamail 1.5.2 | 48 | false | false | 7 | false | false | false | spring-projects | spring-framework | 17,390 |
b64b308f62242fa73df4b7cea32ac1f75c80354f | Juergen Hoeller | Juergen Hoeller | Building against Groovy 2.3 instead of 1.8; updated several dependencies to latest maintenance releases (JasperReports 5.5.2, Tiles 3.0.4, Jetty 9.1.5) | building against groovy 2.3 instead of 1.8; updated several dependencies to latest maintenance releases (jasperreports 5.5.2, tiles 3.0.4, jetty 9.1.5) | 151 | false | false | 20 | false | false | false | spring-projects | spring-framework | 17,391 |
e04fb15a5ef2dd5fc24d8ce8c0210dc32421107a | Juergen Hoeller | Juergen Hoeller | Compilation compatibility with JasperReports 5.5.2 | compilation compatibility with jasperreports 5.5.2 | 50 | false | false | 5 | false | false | false | spring-projects | spring-framework | 17,392 |
782d10c66fa89e67584af3b9e1344b5ddc9a2f16 | Juergen Hoeller | Juergen Hoeller | JasperReports-related polishing | jasperreports-related polishing | 31 | false | false | 2 | false | false | false | spring-projects | spring-framework | 17,393 |
2c4cbb617e96c7f400abe6bf136df120320ea8a0 | Rossen Stoyanchev | Rossen Stoyanchev | Add WebSocket scope
This change adds support for a custom "websocket" scope.
WebSocket-scoped beans may be injected into controllers with message
handling methods as well as channel interceptor registered on the
"inboundClientChannel".
Issue: SPR-11305 | add websocket scope | 19 | false | false | 3 | true | true | true | spring-projects | spring-framework | 17,394 |
66c63c374b8be03f765a84a386932920e6580402 | Rossen Stoyanchev | Rossen Stoyanchev | Ensure handshake attrs are copied in SockJS session | ensure handshake attrs are copied in sockjs session | 51 | false | false | 8 | false | false | false | spring-projects | spring-framework | 17,395 |
b4d447fc3df8572a7272f5117709d231e8a66fdb | Juergen Hoeller | Juergen Hoeller | isLiteConfigurationCandidate considers @ComponentScan and @ImportResource as indicators as well
Issue: SPR-11769 | isliteconfigurationcandidate considers @componentscan and @importresource as indicators as well | 95 | false | false | 9 | false | false | false | spring-projects | spring-framework | 17,396 |
89fc3c02572dbe2bb3f8678a43fb37166f376515 | Stephane Nicoll | Stephane Nicoll | Add BackOffExecution to isolate state
This commit separates the BackOff configuration from an actual
execution. BackOffExecution now contains all the state of a
particular execution and BackOff is only meant to start (i.e.
create) a new execution.
The method "reset" has been removed as its no longer necessary:
... | add backoffexecution to isolate state | 37 | false | false | 5 | true | true | true | spring-projects | spring-framework | 17,397 |
49040a2925c97c1ac9f836f8e72695ec40ec5dbd | Stephane Nicoll | Stephane Nicoll | Add back-off attribute to JMS namespace
This commit adds a "back-off" attribute to the jms:listener-container
element so that a BackOff instance can be provided for users of the
XML namespace.
Issue: SPR-11746 | add back-off attribute to jms namespace | 39 | false | false | 6 | false | false | false | spring-projects | spring-framework | 17,398 |
6a0483128a34166d08477e291967848298f8a415 | Stephane Nicoll | Stephane Nicoll | Configurable back off for listener recovery
Prior to this commit, DefaultMessageListenerContainer was recovering
on failure using a fixed time interval, potentially in an infinite way.
This commit adds an extra "backoff" property to the container that
permits to fine tune the recovery interval using a BackOff instanc... | configurable back off for listener recovery | 43 | false | false | 6 | false | false | false | spring-projects | spring-framework | 17,399 |
97fb308b6bbedd8cd79b9de04ee0fa2c0c431bb4 | Rossen Stoyanchev | Rossen Stoyanchev | Allow use of @SendToUser even w/o authenticated user
Before this change, subscribing to a user destination and use of
@SendToUser annotation required an authenticated user.
This change makes it possible to subscribe to a user destination from
WebSocket sessions without an authenticated user. In such cases the
destina... | allow use of @sendtouser even w/o authenticated user | 52 | false | false | 8 | true | true | false | spring-projects | spring-framework | 17,400 |
3c7bb9c27915bc753a4fed27db8d1b13698402a8 | Juergen Hoeller | Juergen Hoeller | Fixed Xml/AnnotationBeanConfigurerTests after AbstractBeanConfigurerTests removal | fixed xml/annotationbeanconfigurertests after abstractbeanconfigurertests removal | 81 | false | false | 5 | false | false | false | spring-projects | spring-framework | 17,401 |
6c1f8de5faed20582bf8728cc822694abbc04fdb | Juergen Hoeller | Juergen Hoeller | Eventual removal of deprecated AbstractBeanConfigurerAspect, BeanReferenceFactoryBean and CommonsLogFactoryBean | eventual removal of deprecated abstractbeanconfigureraspect, beanreferencefactorybean and commonslogfactorybean | 111 | false | false | 8 | false | false | false | spring-projects | spring-framework | 17,402 |
8c9116fd4b847cec1d28414b1cb4a986270cefea | Juergen Hoeller | Juergen Hoeller | Additional tests for configuration class importing via ASM
Issue: SPR-11647 | additional tests for configuration class importing via asm | 58 | false | false | 8 | false | false | false | spring-projects | spring-framework | 17,403 |
580e52372f61e67d1fd627f544189646dcc18f48 | Stephane Nicoll | Stephane Nicoll | Add support of YAML
This commit migrates the YAML support available in Spring Boot to
the core framework. YAML documents can be loaded either as a
properties object or as a map.
Issue: SPR-9897 | add support of yaml | 19 | false | false | 4 | true | true | true | spring-projects | spring-framework | 17,404 |
7b7fe9aa17060475b09af1ccee954a9f987be101 | Stephane Nicoll | Stephane Nicoll | JMS documentation update
This commit updates the documentation of the JMS chapter
with the newly annotated endpoint infrastructure | jms documentation update | 24 | false | false | 3 | false | false | false | spring-projects | spring-framework | 17,405 |
98738c0bbb9a19cef2ea06aa35efa3713147908c | Sebastien Deleuze | Rossen Stoyanchev | Avoid ConcurrentModificationException
Removal of cached destination is now moved outside the for loop
that removes subscriptions to avoid ConcurrentModificationException.
Also since updateCache is a LinkedHashMap with accessOrder=true,
a simple access with updateCache.get() modify the map.
By iterating over updateCac... | avoid concurrentmodificationexception | 37 | false | false | 2 | true | true | false | spring-projects | spring-framework | 17,406 |
426b77b83405b1b4778a96e5dc7075f553d79211 | Rossen Stoyanchev | Rossen Stoyanchev | Support path segment URI var expansion in UrlTag
Before this change UrlTag expanded URI vars and encoded them using
UriUtils.encodePath.
This change makes it possible to expand using
UriUtils.encodePathSegment, which means a "/" is encoded as "%2F".
To expand with path segment semantics, prefix the URI var name "/":... | support path segment uri var expansion in urltag | 48 | false | false | 8 | false | false | false | spring-projects | spring-framework | 17,407 |
9d479feadded560b1d9a2c485730984ff5dcbfdb | Rossen Stoyanchev | Rossen Stoyanchev | Add naming strategy for @MVC request mappings.
This change adds a strategy for assigning a default name to an
@RequestMapping controller method. The @RequestMapping annotation
itself now has a name attribute allowing the explicit assignment
of a mapping name.
This is mainly intended for use in EL expressions in views... | add naming strategy for @mvc request mappings | 45 | false | false | 7 | true | true | true | spring-projects | spring-framework | 17,408 |
381ccde48d11ef82c371789898e563233141b7ee | Juergen Hoeller | Juergen Hoeller | IdToEntityConverter defensively handles access to getDeclaredMethods
Issue: SPR-11758 | idtoentityconverter defensively handles access to getdeclaredmethods | 68 | false | false | 6 | false | false | false | spring-projects | spring-framework | 17,409 |
bea34ea41c6dde5aac598372268cdb6abc6e9807 | Juergen Hoeller | Juergen Hoeller | GenericTypeResolver returns null for entirely unresolvable type arguments only
Issue: SPR-11763 | generictyperesolver returns null for entirely unresolvable type arguments only | 78 | false | false | 9 | false | false | false | spring-projects | spring-framework | 17,410 |
db5d651057c86462c9ed145ce8346efc59d6c477 | Sam Brannen | Sam Brannen | Exclude Jackson from Jasper Reports dependencies | exclude jackson from jasper reports dependencies | 48 | false | false | 6 | true | true | true | spring-projects | spring-framework | 17,411 |
43e4dbadfe13a2cd786c5ea0f0205d04a061ba66 | Stephane Nicoll | Stephane Nicoll | Revert merge commit e246010df7ea726d | revert merge commit e246010df7ea726d | 36 | false | false | 4 | false | false | false | spring-projects | spring-framework | 17,412 |
e246010df7ea726dc4181ae5bb75e6bb1d77e965 | Stephane Nicoll | Stephane Nicoll | Merge pull request #102 from remast/master
* pull102:
polishing
Add exception translator for EclipseLink exceptions | merge pull request #102 from remast/master | 42 | true | false | 6 | false | false | false | spring-projects | spring-framework | 17,413 |
e18308851d3b9a3208d4394f3dfb9ff3b872f780 | Stephane Nicoll | Stephane Nicoll | polishing
Updating pull request for SPR-9541 | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 17,414 |
371e3a7ac0ef88e4da7f7a5dbdf845e66bbe0864 | Jan Stamer | Stephane Nicoll | Add exception translator for EclipseLink exceptions
Issue: SPR-9541 | add exception translator for eclipselink exceptions | 51 | false | false | 6 | true | true | false | spring-projects | spring-framework | 17,415 |
658f7f58dfd5299757a16aa16133b576555d2a75 | Stephane Nicoll | Stephane Nicoll | Add missing @since tag | add missing @since tag | 22 | false | false | 4 | true | true | true | spring-projects | spring-framework | 17,416 |
ae30a60d0306b621cd6f2caab08a2efbb86ed25d | Rossen Stoyanchev | Rossen Stoyanchev | Relax websocket xsd attr types for ${} style props
Issue: SPR-11624 | relax websocket xsd attr types for ${} style props | 50 | false | false | 9 | true | true | true | spring-projects | spring-framework | 17,417 |
5a1b7c6ce7f9ad22197d9dba16f71e29e04a001c | Brian Clozel | Brian Clozel | Update IDEA guidelines
* propdeps-plugin is now in version 0.0.6
* Using IntelliJ 13.1 | update idea guidelines | 22 | false | false | 3 | true | true | true | spring-projects | spring-framework | 17,418 |
6551aa61fa65995d3472af3ea40dcd4b380f2186 | Stephane Nicoll | Stephane Nicoll | Fix typo
Issue: SPR-11571 | fix typo | 8 | false | false | 2 | false | true | false | spring-projects | spring-framework | 17,419 |
cb2834c10a5eacad8a4f5aadb5f92bbd6043c7f2 | Rossen Stoyanchev | Rossen Stoyanchev | Fix compile error | fix compile error | 17 | false | false | 3 | false | false | false | spring-projects | spring-framework | 17,420 |
8e1a5b9999fd8b69f62d09fad837a13035fba1aa | Rossen Stoyanchev | Rossen Stoyanchev | Merge pull request #535 from matsev/SPR-11749 | merge pull request #535 from matsev/spr-11749 | 45 | true | false | 6 | false | false | false | spring-projects | spring-framework | 17,421 |
f2991da6d651bdcb16519ea4ffdc64242744b4b3 | Mattias Severson | Rossen Stoyanchev | Made string constants in HttpHeaders public
Issue: SPR-11749 | made string constants in httpheaders public | 43 | false | false | 6 | false | false | false | spring-projects | spring-framework | 17,422 |
676282c66e88e7f050e301d722483c186ea551d6 | Rossen Stoyanchev | Rossen Stoyanchev | Support ListenableFuture on @RequestMapping methods
Issue: SPR-11695 | support listenablefuture on @requestmapping methods | 51 | false | false | 5 | true | true | false | spring-projects | spring-framework | 17,423 |
0d2aa51576d150ec95a81573e3b84d641366e214 | Rossen Stoyanchev | Rossen Stoyanchev | Update ContentNegotiationManager for unknown path exts
This change refines the logic of "mapping" content negotiation
strategies with regards to how to handle cases where no mapping is
found.
The request parameter strategy now treats request parameter values that
do not match any mapped media type as 406 errors.
The... | update contentnegotiationmanager for unknown path exts | 54 | false | false | 6 | false | true | false | spring-projects | spring-framework | 17,424 |
c50887c8775a47610fe8a4f1e0179f8ddec4cd35 | Rossen Stoyanchev | Rossen Stoyanchev | Merge pull request #487 from cloudmark/SPR-11506 | merge pull request #487 from cloudmark/spr-11506 | 48 | true | false | 6 | false | false | false | spring-projects | spring-framework | 17,425 |
9598a1e2ef3467187eec928248df536ed8410c2a | Rossen Stoyanchev | Rossen Stoyanchev | Update @SendToUser and related code
Issue: SPR-11506 | update @sendtouser and related code | 35 | false | false | 5 | true | false | true | spring-projects | spring-framework | 17,426 |
088b80f4c5673e13ab6f59840e45725f491a4960 | Mark Galea | Rossen Stoyanchev | Add singleSession attribute to @SendToUser
Added the ability to send a message only to one user session. Given a
user has two tabs open and the client sends a message to the server
from tab 1, it is now possible to send a reply message to only 1 tab
instead of the default mode of targetting all known user sessions.
I... | add singlesession attribute to @sendtouser | 42 | false | false | 5 | true | true | true | spring-projects | spring-framework | 17,427 |
a653c067112881428990ad1f535445838a25df55 | Juergen Hoeller | Juergen Hoeller | Fixed invalid code tag in javadoc
(cherry picked from commit a139670) | fixed invalid code tag in javadoc | 33 | false | false | 6 | false | false | false | spring-projects | spring-framework | 17,428 |
a842b933a93e09e78231fa27da580e5852fd94e4 | Juergen Hoeller | Juergen Hoeller | Upgraded to propdeps plugin 0.0.6 | upgraded to propdeps plugin 0.0.6 | 33 | false | false | 5 | false | false | false | spring-projects | spring-framework | 17,429 |
40b81fcc3e32aadfa41f6f69987b05005ea63cb3 | Juergen Hoeller | unknown | SPR11348 test should use LinkedHashSet since it relies on insertion order of elements | spr11348 test should use linkedhashset since it relies on insertion order of elements | 85 | false | false | 13 | false | false | false | spring-projects | spring-framework | 17,430 |
241682c11734fcba50500fe5f61291405efb7d91 | Sam Brannen | Sam Brannen | Update author list in reference manual | update author list in reference manual | 38 | false | false | 6 | true | true | true | spring-projects | spring-framework | 17,431 |
b364599278b4ef13348641d7cbb433d654bf4e5e | Sam Brannen | Sam Brannen | Update links to Spring JIRA server | update links to spring jira server | 34 | false | false | 6 | true | true | true | spring-projects | spring-framework | 17,432 |
220267b830dbb56e456ee04ba860fe964c5df0d9 | Sam Brannen | Sam Brannen | Update copyright date in reference manual | update copyright date in reference manual | 41 | false | false | 6 | true | true | true | spring-projects | spring-framework | 17,433 |
542db72ffd356a2a7d491910852e8d82c93f8fe0 | Stephane Nicoll | Stephane Nicoll | Add first draft of IDEA code formatting
This commit provides a first attempt at defining a standard code
formatting scheme for the Spring Framework in Intellij IDEA.
These are the major changes compared to standard settings:
* default indent option to use tab character instead of space for
all languages
* one spac... | add first draft of idea code formatting | 39 | false | false | 7 | true | true | true | spring-projects | spring-framework | 17,434 |
1d57a15e40d0e9aef3b5421dceb3209f1710b754 | Sam Brannen | Sam Brannen | Delete unused imports in spring-test | delete unused imports in spring-test | 36 | false | false | 5 | true | true | true | spring-projects | spring-framework | 17,435 |
1ade9b54331d199534b729d10340bab211b3272c | Sam Brannen | Sam Brannen | Polish various test classes | polish various test classes | 27 | false | false | 4 | true | false | true | spring-projects | spring-framework | 17,436 |
e865d63c29695631b5f93ee46bbfb12cb8d093fd | Sam Brannen | Sam Brannen | Ensure Gradle does not execute inner classes as tests | ensure gradle does not execute inner classes as tests | 53 | false | false | 9 | true | false | false | spring-projects | spring-framework | 17,437 |
bcde955ec996510d41b83e05d06d1c007e152f94 | Juergen Hoeller | Juergen Hoeller | Ignore placeholder resolution failure as well in case of ignoreResourceNotFound=true
Issue: SPR-11524 | ignore placeholder resolution failure as well in case of ignoreresourcenotfound=true | 84 | false | false | 10 | false | true | false | spring-projects | spring-framework | 17,438 |
3dfa7e9ac0ec070b52f580e11a279a7b7f64804f | Juergen Hoeller | Juergen Hoeller | Avoid stack overflow in case of circular type reference
Issue: SPR-11522 | avoid stack overflow in case of circular type reference | 55 | false | false | 9 | true | true | false | spring-projects | spring-framework | 17,439 |
93c8b7ab04af281a26d05c968fdb0ed03cf0b1c4 | Juergen Hoeller | Juergen Hoeller | DefaultListableBeanFactory only puts 'cache-safe' Class keys into its by-type cache
Issue: SPR-11520 | defaultlistablebeanfactory only puts 'cache-safe' class keys into its by-type cache | 83 | false | false | 10 | false | false | false | spring-projects | spring-framework | 17,440 |
07959cb3f7f5b1c064406c0f00099066b97ad751 | Rossen Stoyanchev | Rossen Stoyanchev | Merge pull request #484 from sdeleuze/SPR-11504 | merge pull request #484 from sdeleuze/spr-11504 | 47 | true | false | 6 | false | false | false | spring-projects | spring-framework | 17,441 |
0036d9a5c98fab192be719b3f6f1cde8178e6cde | Rossen Stoyanchev | Rossen Stoyanchev | Polish | polish | 6 | false | false | 1 | false | false | false | spring-projects | spring-framework | 17,442 |
2f8bc6eec12c997c335924cc81029bf67112c7e5 | Sebastien Deleuze | Rossen Stoyanchev | Decode target parameter names prior to saving a FlashMap
In addition to the target parameter values (SPR-9657), the target
parameter names must also be decoded to be able to match
them to the parameter names of incoming requests.
Issue: SPR-11504 | decode target parameter names prior to saving a flashmap | 56 | false | false | 9 | false | true | false | spring-projects | spring-framework | 17,443 |
519799e1cf414615ef0a7a26d5dde0478a47b96d | Stephane Nicoll | Stephane Nicoll | Fix double SPeL evaluation of parameter
When a node of an SPeL expression was a call to a bean referenced
in a method argument, the expression was resolved twice.
The resolved arguments are now specified to MethodValueRef instead
of resolving the arguments again in the constructor
Issue: SPR-11445 | fix double spel evaluation of parameter | 39 | false | false | 6 | true | true | true | spring-projects | spring-framework | 17,444 |
c8f2e0718231004021c78c65d5378036f943fdc4 | Sam Brannen | Sam Brannen | Clean up test warnings that show up in Gradle console | clean up test warnings that show up in gradle console | 53 | false | false | 10 | false | false | false | spring-projects | spring-framework | 17,445 |
cb59d43a5fea8e541f30bb40b39e2c01ec8fcbc7 | Sam Brannen | Sam Brannen | Fix typos in Javadoc in AssertThrows | fix typos in javadoc in assertthrows | 36 | false | false | 6 | true | true | true | spring-projects | spring-framework | 17,446 |
213d9c4a51e6601012c746f00651c3f24591e9e9 | Juergen Hoeller | Juergen Hoeller | Consistent dependencies on official JTA 1.2 and JMS 1.1 API jars | consistent dependencies on official jta 1.2 and jms 1.1 api jars | 64 | false | false | 11 | false | false | false | spring-projects | spring-framework | 17,447 |
3080ff3890c14b457a0676733d5f05b6e33ab41e | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 17,448 |
7972b31118231f2121625b014ba0abf9b3f4c91a | Juergen Hoeller | Juergen Hoeller | SpringBeanELResolver's setValue should not throw PropertyNotWritableException if provided value is identical to current bean instance
Issue: SPR-11502 | springbeanelresolver's setvalue should not throw propertynotwritableexception if provided value is identical to current bean instance | 133 | false | false | 15 | false | false | false | spring-projects | spring-framework | 17,449 |
793cab4f8093186ff345f67ada4ca73990da28d7 | Juergen Hoeller | Juergen Hoeller | Allow generics-based injection in case of nested unresolved type variable
Issue: SPR-11471 | allow generics-based injection in case of nested unresolved type variable | 73 | false | false | 10 | false | false | false | spring-projects | spring-framework | 17,450 |
49d7bda72248b5a08fda3d42ed10d9e127396e6a | Rossen Stoyanchev | Rossen Stoyanchev | Improve CORS handling in AbstractSockJsService
After this change, AbstractSockJsService does not add CORS headers if
the response already contains an "Access-Control-Allow-Origin" header.
Essentially it backs off assuming CORS headers are handled centrally
e.g. through a Filter.
In order to support this, the ServletS... | improve cors handling in abstractsockjsservice | 46 | false | false | 5 | true | true | true | spring-projects | spring-framework | 17,451 |
cf3b2b1a4d06bfa97e3c4dba9ac486b83d252863 | Sam Brannen | Sam Brannen | Simplify test includes & excludes in Gradle build
This commit aligns our include and exclude filters for test classes
with Gradle's standard patterns. Specifically, our patterns now end
with ".class" instead of ".*".
The aforementioned change makes the exclusion of inner classes
unnecessary. Thus, patterns for test c... | simplify test includes & excludes in gradle build | 49 | false | false | 8 | false | false | false | spring-projects | spring-framework | 17,452 |
d30128396e2c9a7bb1a59f0dd1183cff942c3805 | Juergen Hoeller | Juergen Hoeller | Upgraded to Hibernate 4.2.10 | upgraded to hibernate 4.2.10 | 28 | false | false | 4 | false | false | false | spring-projects | spring-framework | 17,453 |
2cdc066dafcdf876ad1fefc21f18a38838ecab5e | Juergen Hoeller | Juergen Hoeller | Relaxed statement on early validation of bean references
Issue: SPR-11495 | relaxed statement on early validation of bean references | 56 | false | false | 8 | false | false | false | spring-projects | spring-framework | 17,454 |
2a2816dfc39bf89fc71dcdc18dac66313fce3bd0 | Juergen Hoeller | Juergen Hoeller | Restored proper handling of varargs in case of unresolvable type variable
Fixed through falling back to the raw parameter type in the TypeDescriptor(MethodParameter) constructor, properly detecting the vararg array even in case of an unresolvable type variable, and through restoring getElementTypeDescriptor's original... | restored proper handling of varargs in case of unresolvable type variable | 73 | false | false | 11 | false | false | false | spring-projects | spring-framework | 17,455 |
34924810fe13911a56ab5961110155b4cc875ba0 | Rossen Stoyanchev | Rossen Stoyanchev | Remove field no longer used after previous commit
Issue: SPR-11516 | remove field no longer used after previous commit | 49 | false | false | 8 | true | true | true | spring-projects | spring-framework | 17,456 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.