1. 04 Mar, 2016 4 commits
  2. 03 Mar, 2016 11 commits
  3. 02 Mar, 2016 6 commits
  4. 01 Mar, 2016 10 commits
  5. 29 Feb, 2016 9 commits
    • Stephane Nicoll's avatar
      Auto-configure Rabbit MessageConverter · 813d86e5
      Stephane Nicoll authored
      If a `MessageConverter` bean is available, we now associate it to the
      created `RabbitTemplate` and `RabbitListenerContainerFactory`. That way,
      registering a custom `MessageConverter` is all that's needed.
      
      The Rabbit auto-configuration is now using the new `ObjectProvider` that
      offers a nicer API to detect if a primary candidate is available for
      optional collaborators.
      
      Closes gh-5088
      813d86e5
    • Stephane Nicoll's avatar
      Polish · 360caf3d
      Stephane Nicoll authored
      360caf3d
    • Stephane Nicoll's avatar
      Polish · bfa9ae13
      Stephane Nicoll authored
      bfa9ae13
    • Dave Syer's avatar
      Merge branch '1.3.x' · 120a39a6
      Dave Syer authored
      120a39a6
    • Dave Syer's avatar
      Accumulate state in a local variable, not a field in the instance · baf7dda0
      Dave Syer authored
      State is accumulating unnecessarily in AST tranformation instances.
      We can fix the ones we have implemented so far just by using a
      local variable and passing it into the methods where it is used.
      All the methods are private so this change is safe in a point release.
      
      Fixes gh-5283
      baf7dda0
    • Dave Syer's avatar
      Fix apostrophe · 0dd3531f
      Dave Syer authored
      0dd3531f
    • Stephane Nicoll's avatar
      Auto-configure JMS MessageConverter · d13b9a98
      Stephane Nicoll authored
      If a `MessageConverter` bean is available, we now associate it to the
      created `JmsTemplate` and `JmsListenerContainerFactory`. That way,
      registering a custom `MessageConverter` is all that's needed.
      
      The JMS auto-configuration is now using the new `ObjectProvider` that
      offers a nicer API to detect if a primary candidate is available for
      optional collaborators.
      
      Closes gh-4282
      d13b9a98
    • Andy Wilkinson's avatar
      Update Repackager to use Java 8 APIs safely · ad7cf484
      Andy Wilkinson authored
      Previously, Repackager used Java 8 APIs without protecting against the
      possibility of a NoSuchMethodError on earlier versions of Java.
      This commit wraps the Java 8 APIs in try-catch blocks to ensure
      that they do not cause a failure on Java versions before 8, while
      still making full use of Java 8's capabilities when available.
      
      Closes gh-5280
      ad7cf484
    • Andy Wilkinson's avatar
      Merge branch '1.3.x' · 779649bf
      Andy Wilkinson authored
      779649bf