Skip to content

Releases: Comcast/money

v0.9.0

06 Dec 16:32
Compare
Choose a tag to compare

Significant non-backward compatible release

The 0.9.0 release is an overhaul of the money library. So much of the actual dependencies, namespaces, and type names have changed.

Remove Akka as the core run-time
Money 0.8.x used Akka and Akka Actors to "drive" span data collection and generation. This introduced the following issues:

  1. Incompatible akka versions - if you wanted to use money on a project that was already using akka, the money version of akka could be incompatible with the version in your application
  2. Unncessary overhead - because actors have their own executors / mailboxes / etc., using akka and in particular the way akka was used created overhead in the JVM that was unnecessary

As such, we have removed all need for akka in order to work with money

Introduce a java api
One of the criticisms of money has been that it requires scala to work. This can be an impediment for low-resource applications as the scala library is quite large. A new package money.api has a java only contract that can easily be implemented in other JVM languages.

Note: The default implementation is still scala based

Remove Spring 3 support
Spring 3 has long been EOL. There are a number of known security issues with Spring 3. As such, money now only supports Spring 4.x and above.

This will require you to change your maven dependency, as well as imports, if you upgrade.

Overhaul the config
0.9.0 introduces a new way to configure money. This will break existing installations as the config syntax has changed.

Money still supports configurable collection of span data, including introducing your own handlers.

Removal of TracedFuture
Money 0.8.x supported the concept of tracing scala standard library Future. This proved to be unreliable in usage and had limited to zero adoption.

Support JDK 8, remove support for older versions

Support Scala 2.12, remove support for older versions

0.8.14

27 May 15:13
Compare
Choose a tag to compare

Add configuration for the LogEmitter format. Allows us to configure the formatting for logging.

Added tracing support to the aws-sdk

0.8.12

28 Jan 20:30
Compare
Choose a tag to compare

#39 Improve MetricRegistryFactory configuration

0.8.11

17 Dec 17:14
Compare
Choose a tag to compare
  • #35 Add MetricsRegistry Factory
  • #31 Add Travis CI
  • #34 Publish to Sonatype manually

0.8.10

03 Dec 16:04
Compare
Choose a tag to compare

0.8.9 was built w/ Java 1.8 and deployed causing
issues for clients using Java 1.6.

This release is mainly so that we can roll-forward and deploy new jars

0.8.9

25 Nov 18:31
Compare
Choose a tag to compare
  • #17 Make LogLevel Configurable in LogEmitter
  • #18 Configurably ignore exceptions in AspectJ and Spring3 Modules