Skip to content
This repository was archived by the owner on Mar 5, 2021. It is now read-only.

Releases: commercetools/sphere-play-sdk

Content-Length Header

19 Mar 12:46

Choose a tag to compare

With this release we ensured that we sent the mandatory (according to HTTP standard) header "Content-Length" when requesting the OAuth token.

v0.71.0

03 Feb 17:23

Choose a tag to compare

  • The customer ID for a cart can be modified or removed.
libraryDependencies += "io.sphere" %% "sphere-play-sdk" % "0.70.1" withSources()

v0.70.0

14 Jan 12:47

Choose a tag to compare

  • The product search allows String parameters and product attributes for the sort configuration.
libraryDependencies += "io.sphere" %% "sphere-play-sdk" % "0.70.0" withSources()

v0.68.0

15 Oct 11:54

Choose a tag to compare

resolvers += Resolver.sonatypeRepo("releases")

libraryDependencies += "io.sphere" %% "sphere-play-sdk" % "0.68.0" withSources()
  • expose methods to better test the update actions for a cart.

v0.67.0

15 Oct 10:23

Choose a tag to compare

resolvers += Resolver.sonatypeRepo("releases")

libraryDependencies += "io.sphere" %% "sphere-play-sdk" % "0.67.0" withSources()
  • fix line item localized name.

v0.66.0

15 Oct 10:22

Choose a tag to compare

resolvers += Resolver.sonatypeRepo("releases")

libraryDependencies += "io.sphere" %% "sphere-play-sdk" % "0.66.0" withSources()
  • provide methods to manipulate discounts in line items
  • fix custom product attribute localization parsing.

v0.65.0

01 Aug 14:21

Choose a tag to compare

resolvers += Resolver.sonatypeRepo("releases")

libraryDependencies += "io.sphere" %% "sphere-play-sdk" % "0.65.0" withSources()
  • reference expansion for product discounts added

Discounts

21 Jul 09:59

Choose a tag to compare

resolvers += Resolver.sonatypeRepo("releases")

libraryDependencies += "io.sphere" %% "sphere-play-sdk" % "0.63.0" withSources()
  • added getter for discounted price
final Product product = fetchProductSomeHow();
final Money oldPrice = product.getPrice().getValue();
final Optional<DiscountedPrice> discounted = product.getPrice().getDiscounted();
if (discounted.isPresent()) {
    final Money discountedPrice = discounted.get().getValue();
}

v0.61.0

11 Jul 09:01

Choose a tag to compare

resolvers += Resolver.sonatypeRepo("releases")

libraryDependencies += "io.sphere" %% "sphere-play-sdk" % "0.61.0" withSources()

v0.61.0

  • product attribute boolean added
  • fix bug with image of width 0

v0.60.0

08 Jul 09:15

Choose a tag to compare

//only necessary until the maven repo sync is complete
resolvers += Resolver.sonatypeRepo("releases")

libraryDependencies += "io.sphere" %% "sphere-play-sdk" % "0.60.0" withSources()
  • open model classes for instantiation (for tests):
    • Money
    • CustomLineItem
    • LineItem
    • TaxCategory
    • TaxRate
    • Variant
    • VariantAvailability
  • Fix Customer/Cart/Product raise exception when not found