Skip to content

Latest commit

 

History

History
152 lines (96 loc) · 6.58 KB

CHANGELOG.md

File metadata and controls

152 lines (96 loc) · 6.58 KB

5.5.1

  • change error message to refer to file rather than document

5.5.0

  • Improve error messages for errors related to JSON Web Tokens

5.4.0

  • Add NotificationsAPIClient.get_pdf_for_letter(id)
    • Returns a BytesIO
    • Will raise a BadRequestError if the PDF is not available

5.3.0

  • Add an optional postage argument to send_precompiled_letter_notification method.
  • Add postage to the response of send_precompiled_letter_notification

5.2.0

  • Add a document size check to prepare_upload. Will raise ValueError when trying to upload a document larger than 2MB.

5.1.0

  • Added name to the response for NotificationsAPIClient.get_template_by_id() and NotificationsAPIClient.get_template_version()
    • These functions now return the template name

5.0.1

  • Change BaseAPIClient.request method to only add use the data and params arguments if they are not None, in order to avoid sending GET requests with a body of 'null', since these are rejected by Cloudfront.

5.0.0

  • Changed the way documents are added to the personalisation data. A new prepare_upload function has to be called for each document upload to prepare the file data to be sent to the Notify API.

4.10.0

  • Added created_by_name to the response for NotificationsAPIClient.get_notification_by_id() and NotificationsAPIClient.get_all_notifications()
    • If the notification was sent manually, this will be the name of the sender. If the notification was sent through the API this will be None.

4.9.0

  • Add support for document uploads in send_email_notification

4.8.2

  • Fix issues when installing with pip 10.0.0

4.8.1

  • Added post_precompiled_letter_response and updated integration tests
    • The API now only returns notification id and client reference, so updated the response scheme to match

4.8.0

  • Added NotificationsAPIClient.send_precompiled_letter_notification()
    • The client can now send PDF files which conform to the Notify printing template
    • Send a File object
    • 'reference' must be provided to identify the document

4.7.2

  • Use Flake 8 rather than Pep 8

4.7.1

  • Fixed PyJWT security issue. #91

4.7.0

  • Added NotificationsAPIClient.get_received_texts()
    • an optional older_than argument can be specified to retrieve all received texts older than the last received text id. If omitted the first 250, the api limit, received texts will be returned, with links indicating how to retrieve the next page of results.
  • Added NotificationsAPIClient.get_received_texts_iterator()
    • returns all received texts by a generator object.

4.6.0

Changed

  • Update to NotificationsAPIClient.send_sms_notification()
    • added sms_sender_id: an optional sms_sender_id specified when adding SMS senders under service settings. If this is not provided, the SMS sender will be the service default SMS sender. sms_sender_id can be omitted.

4.5.0

  • Update to NotificationsAPIClient.send_email_notification()
    • added email_reply_to_id: an optional email_reply_to_id specified when adding Email reply to addresses under service settings, if this is not provided the reply to email will be the service default reply to email. email_reply_to_id can be omitted.

4.4.0

Added

  • Added NotificationsAPIClient.send_letter_notification():
    • functions similarly to send_sms_notification and send_email_notification, however, address details are provided in the personalisation dict
    • See more details in the README

4.3.0

Changed

  • Update to NotificationsAPIClient.get_template(id):
    • the dict returned has changed, learn more from the README.
  • Update to NotificationsAPIClient.get_template_version(id, version):
    • the dict returned has changed, learn more from the README.
  • Update to NotificationsAPIClient.get_all_templates(template_type=None):
    • the dict returned has changed, learn more from the README
  • Replaced NotificationsAPIClient.get_template_preview(id) function with NotificationsAPIClient.post_template_preview(id, persionalisation):
    • See more details here README

4.2.0

Changed

  • NotificationsAPIClient.get_all_notifications()
    • Notifications can be now be filtered by reference, see the README for details.
    • NotificationList response has changed, see the README for details.

4.1.0

Changed

  • Python 2.7 supported

4.0.0

Changed

  • Using version 2 of the notification-api.
  • When creating a new NotificationsAPIClient the optional parameter of service_id has been removed. The api_key is a combined string contain the api_key and the service_id
  • Update to NotificationsAPIClient.send_sms_notification():
    • added reference: an optional unique identifier for the notification or an identifier for a batch of notifications. reference can be omitted.
    • the dict returned has changed, learn more from the README.
  • Update to NotificationClient.send_email_notification():
    • added reference: an optional unique identifier for the notification or an identifier for a batch of notifications. reference can be omitted.
    • the dict returned has changed, learn more from the README.
  • Update to the response of NotificationsAPIClient.get_notification_by_id(id), see the README for details.

3.0.0 (2016-11-14)

Changed

  • BaseClient method signature: base_url is now optional. See #41
  • BaseClient method signature: api_key is now a positional argument. See #41

2.0.0 (2016-11-09)

Changed

  • Replace asserts with proper exceptions in jwt token code. See #40

Prior versions

Changelog not recorded - please see pull requests on github.