1. 08 1月, 2019 1 次提交
  2. 25 12月, 2018 1 次提交
  3. 19 11月, 2018 1 次提交
  4. 15 10月, 2018 1 次提交
  5. 14 9月, 2018 2 次提交
  6. 15 8月, 2018 1 次提交
  7. 06 8月, 2018 1 次提交
  8. 04 8月, 2018 1 次提交
    • J
      Upgrade to RxJava 2.2 and Kotlin 1.2.60 · 821ab624
      Juergen Hoeller 提交于
      Includes latest dependency updates (Mockito 2.21, Log4J 2.11.1, Hibernate ORM 5.3.4, Protobuf 3.6.1, JRuby 9.2, HtmlUnit 2.32, Selenium 3.14) for Spring Framework 5.1.
      
      Issue: SPR-16388
      Issue: SPR-16239
      821ab624
  9. 25 7月, 2018 1 次提交
    • S
      Support Protobuf serialization in WebFlux · 36a07aa8
      sdeleuze 提交于
      This commit introduces Protobuf support in WebFlux via dedicated
      codecs.
      
      Flux<Message> are serialized/deserialized using delimited Protobuf
      messages with the size of each message specified before the message
      itself. In that case, a "delimited=true" parameter is added to the
      content type.
      
      Mono<Message> are expected to use regular Protobuf message
      format (without the size prepended before the message).
      
      Related HttpMessageReader/Writer are automatically registered when the
      "com.google.protobuf:protobuf-java" library is detected in the classpath,
      and can be customized easily if needed via CodecConfigurer, for example
      to specify protocol extensions via the ExtensionRegistry based
      constructors.
      
      Both "application/x-protobuf" and "application/octet-stream" mime types
      are supported.
      
      Issue: SPR-15776
      36a07aa8
  10. 19 7月, 2018 1 次提交
  11. 18 7月, 2018 2 次提交
  12. 12 6月, 2018 1 次提交
  13. 11 6月, 2018 1 次提交
    • B
      Remove dependency management noise from POMs · 417354da
      Brian Clozel 提交于
      Prior to this commit, the generated POMs for Spring Framework modules
      would contain unneeded/harmful information from the Spring Framework
      build:
      
      1. The BOM imports applied to each module by the dependency
      management plugin, for example for Netty or Reactor Netty.
      Spring should not export that opinion to its POMs.
      
      2. The exclusion of "org.slf4:jcl-over-slf4j" from *all* dependencies,
      which made the POMs much larger than necessary and suggested to
      developers that they should exclude it as well when using all those
      listed dependencies. In fact, only Apache Tiles currently brings that
      transitively.
      
      This commit removes that information from the POMs.
      The dependencyManagement Gradle plugin is disabled for POM generation
      and we manually resolve the dependency versions during the generation
      phase.
      The Gradle build is streamlined to exclude "org.slf4:jcl-over-slf4j"
      only when necessary.
      
      Issue: SPR-16893
      417354da
  14. 07 6月, 2018 1 次提交
  15. 01 6月, 2018 2 次提交
  16. 19 5月, 2018 1 次提交
  17. 07 5月, 2018 1 次提交
  18. 27 3月, 2018 1 次提交
  19. 15 3月, 2018 1 次提交
  20. 09 3月, 2018 1 次提交
  21. 25 2月, 2018 1 次提交
  22. 15 2月, 2018 1 次提交
  23. 23 1月, 2018 1 次提交
  24. 22 12月, 2017 1 次提交
  25. 15 12月, 2017 1 次提交
  26. 26 11月, 2017 1 次提交
  27. 20 11月, 2017 1 次提交
  28. 10 11月, 2017 1 次提交
    • R
      Remove RxNetty (from test sources) · 807297f1
      Rossen Stoyanchev 提交于
      Practically no changes to RxNetty for a year and efforts underway to
      rebuild 0.6.x based on a current Reactor Netty base.
      
      Aside from the extra time to run integration tests having two
      Netty-based servers can also cause false alarms such as ByteBuf leaks
      related to RxNetty.
      807297f1
  29. 26 10月, 2017 1 次提交
  30. 20 10月, 2017 1 次提交
  31. 24 9月, 2017 1 次提交
  32. 23 9月, 2017 1 次提交
  33. 29 8月, 2017 1 次提交
  34. 23 8月, 2017 1 次提交
  35. 22 8月, 2017 1 次提交
  36. 21 8月, 2017 2 次提交
    • B
      Apply dependency management to selected modules · cc3d7d2d
      Brian Clozel 提交于
      This commit applies the Dependency Management Plugin to modules that
      require it; right now Spring Framework is importing BOMs for Netty and
      Reactor dependencies only.
      
      Instead of applying those BOMs to all modules, they're applied only
      where they're needed.
      
      Issue: SPR-15885
      cc3d7d2d
    • B
      Move modules to independent build files · 2eeb428e
      Brian Clozel 提交于
      The main `build.gradle` file contains now only the common build
      infrastructure; all module-specific build configurations have
      been moved to their own build file.
      
      Issue: SPR-15885
      2eeb428e