Skip to content

Latest commit

 

History

History
124 lines (83 loc) · 7.02 KB

File metadata and controls

124 lines (83 loc) · 7.02 KB

5.1.1 (2020-05-21)

Chores
  • intl-verification: update international verifications test mode fix (#179) (4ab7e7e2)
Bug Fixes
  • merge-variables: convert to json (fa93885f)
  • 176 Adds support for Group Members (beta feature)
  • 175 Adds support for Groups (beta feature)
  • 174 Add Ruby 2.5-6, remove API keys, other cleanup
  • 173 Update example asset links

5.0.0

Version 5.0.0 introduces a breaking change. It removes support for the area mail resources (Areas and Routes).

  • Removes Lob.areas.
  • Removes Lob.routes.
  • 171 add USAutocompletions
  • 170 Fix test name
  • 169 Support 'case' param for us_verifications
  • 168 tweak wording around handling numbers with leading zeros
  • 167 remove duplicate test
  • 166 Fix commented check amount in checks.rb example
  • [#165] (lob/lob-ruby#165) Remove states and countries API resources. Also remove the ability to use postcard.message.

4.0.0

Version 4.0.0 introduces a breaking change. It requires a minimum API version of 2017-05-17, which introduces new US and International Verification APIs.

  • Removes Lob.addresses.verify(). Please use Lob.us_verifications.verify() and `Lob.intl_verifications.verify() instead.

3.0.0

Version 3.0.0 introduces several breaking changes. It requires a minimum API version of 2015-04-11.

  • Ruby 1.9.3 is no longer supported. lob-ruby now supports Ruby versions at or above 2.0.0.
  • Jobs and Objects resources have been deprecated from the gem.
  • Resources have been moved from Lob::V1 to the Lob::Resources namespace and have been refactored to contain the HTTP request/response logic..
  • Configuration for the Lob Client has been changed. Lob(), Lob.load, and Lob.configure have all been deprecated and replaced with a single method of configuration: Lob::Client.new(api_key: "your-api-key").

2.0.0

Version 2.0.0 introduces several breaking changes. It requires a minimum API version of 2015-04-11.

  • The lob-ruby gem no longer converts city, state, etc. parameters into address_city, address_state, etc. This change was made to be more consistent with the API and other Lob wrappers, and to prevent confusion.
  • The wrapper now returns the raw JSON from the API in all list endpoints rather than just the data field in the response. This will allow access to additional fields like count and offset.
  • The packagings endpoint is not longer supporter in the API, and therefore has been taken out of lob-ruby.

In addition to these breaking changes, the test suite was cleaned up by removing the unnecessary VCR gem and committing sample upload files to the repository rather than downloading them in rake task.