Skip to content

Latest commit

 

History

History
100 lines (59 loc) · 2.42 KB

File metadata and controls

100 lines (59 loc) · 2.42 KB

Gmail API Wrapper Changelog


v0.1.1a3 [07-11-2018]

Enhancements:

  • Read client ID & secret from ~/.credentials/client_secret.json
  • Remove GAW_CLIENT_SECRET_FILE_PATH env variable
  • Arrange import statements in the correct order

v0.1.1a2 [19-09-2017]

Features:

  • Allow composing and sending a new message without an attachment
  • Allow creating a new label
  • Wrap write API helper methods inside GmailAPIWriteHelper class
  • Add GoogleAPIConnection to wrap all connection shenanigans in connection.py

v0.1.1a1 [18-09-2017]

Features:

  • Add GAW_CLIENT_SECRET_FILE_PATH env variable to allow passing client secret file path.
  • Add GAW_DISABLE_SSL_CERTS env variable to allow diasbling ssl certs validation
  • Add a vacation responder activation method
  • Add a way to view vacation responder in use if any.
  • Update README

v0.0.1a11 [16-09-2017]

Features:

  • Add GWA_CA_CERTS_PEM_FILE env variable to allow passing custom SSL cert file path
  • Update LICENSE
  • Update README
  • Add Gmail Api Wrapper Write operations shell

v0.0.1a7 [11-09-2017]

Bugs:

  • Get message body from return message_payload['body']['data'] when return message_payload['parts'][0]['body']['data'] returns a KeyError exception

v0.0.1a4 [10-09-2017]

Features:

  • Add Circle CI Configs
  • Extract base64 message body

v0.0.1a3 [05-09-2017]

Features:

  • Bump google-api-python-client to 1.6.3 from 1.6.2
  • Allow fetching new messages from specific email addresses
  • Add utils.py module to hold helper methods

v0.0.1a2 [05-09-2017]

Bugs:

  • Fix availbale LABELS checking in GmailAPIReadWrapper helper class

Breaking:

  • Renamed GmailAPIWriteWrapper to GmailAPIModifyWrapper and moved it from gmail_api_wrapper.crud.write to gmail_api_wrapper.crud.modify module

v0.0.1a1 [04-09-2017]

Features:

  • Make gmail_api_wrapper a package
  • Add setup.py file
  • Add package requirements/*
  • Add GmailAPIConnection helper class in gmail_api_wrapper.connection.py module
  • Add GmailAPIReadWrapper helper class in gmail_api_wrapper.crud.read.py module
  • Add GmailAPIWriteWrapper helper class in gmail_api_wrapper.crud.modify.py module

v0.0.1a0 [27-07-2017]

Features:

  • Project Initialization