Skip to content

Releases: jazzband/django-push-notifications

3.1.0

28 Apr 00:54
0f79181
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 3.0.2...3.1.0

3.0.2

29 Oct 17:18
7d28052
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 3.0.0...3.0.2

3.0.0

17 Feb 03:24
6fde730
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.0.0...3.0.0

Django Push Notifications 2.0.0

11 Mar 14:13
Compare
Choose a tag to compare
registration_id no longer hard-coded in DeviceViewSetMixin

`lookup_field` was declared in `DeviceViewSetMixin` and never used. Instead the create method referred to string literal instead of this field. No the field is used. You can inherit from `DeviceViewSetMixin`, redefined the `lookup_field` and use if with your views instead of having to rewrite the `create` method yourself

Django Push Notifications 1.4.1

11 Jan 15:38
1.4.1
Compare
Choose a tag to compare

Changelog:

  • APNS: Increased max device token size to 100 bytes (WWDC 2015, iOS 9)
  • BUGFIX: Fix an index error in the admin

Django Push Notifications 1.4.0

11 Jan 15:38
1.4.0
Compare
Choose a tag to compare

Changelog:

  • BACKWARDS-INCOMPATIBLE: Drop support for Python<3.4
  • DJANGO: Support Django 1.9
  • GCM: Handle canonical IDs
  • GCM: Allow full range of GCMDevice.device_id values
  • GCM: Do not allow duplicate registration_ids
  • DRF: Work around empty boolean defaults issue (django-rest-framework#1101)
  • BUGFIX: Do not throw GCMError in bulk messages from the admin
  • BUGFIX: Avoid generating an extra migration on Python 3
  • BUGFIX: Only send in bulk to active devices
  • BUGFIX: Display models correctly in the admin on both Python 2 and 3

Django Push Notifications 1.3.1

30 Jun 19:33
1.3.1
Compare
Choose a tag to compare

This is an errata release.

Django Push Notifications 1.3.0

30 Jun 08:25
1.3.0
Compare
Choose a tag to compare

This release drops support for Python<2.7 and Django<1.8. Upgrade from the 1.2 branch is highly recommended.

Changelog:

  • BACKWARDS-INCOMPATIBLE: Drop support for Python<2.7
  • BACKWARDS-INCOMPATIBLE: Drop support for Django<1.8
  • NEW FEATURE: Added a Django Rest Framework API. Requires DRF>=3.0.
  • APNS: Add support for setting the ca_certs file with new APNS_CA_CERTIFICATES setting
  • GCM: Deactivate GCMDevices when their notifications cause NotRegistered or InvalidRegistration
  • GCM: Indiscriminately handle all keyword arguments in gcm_send_message and gcm_send_bulk_message
  • GCM: Never fall back to json in gcm_send_message
  • BUGFIX: Fixed migration issues from 1.2.0 upgrade.
  • BUGFIX: Better detection of SQLite/GIS MySQL in various checks
  • BUGFIX: Assorted Python 3 bugfixes
  • BUGFIX: Fix display of device_id in admin

This release was made possible thanks to the contributions of the following people:

Andrey Zevakin, David Pretty, Jamaal Scarlett, Jerome Leclanche, Matthew Hershberger, Mohamad Nour Chawich and Nicolas Delaby

Django Push Notifications 1.2.1

11 Apr 11:35
1.2.1
Compare
Choose a tag to compare

This is a bugfix release and the last release to support Python versions older than 2.7, and Django versions older than 1.8.

Changelog:

  • APNS, GCM: Add a db_index to the device_id field
  • APNS: Use the native UUIDField on Django 1.8
  • APNS: Fix timeout handling on Python 3
  • APNS: Restore error checking on apns_send_bulk_message
  • GCM: Expose the time_to_live argument in gcm_send_bulk_message
  • GCM: Fix return value when gcm bulk is split in batches
  • GCM: Improved error checking reliability
  • GCM: Properly pass kwargs in GCMDeviceQuerySet.send_message()
  • BUGFIX: Fix HexIntegerField for Django 1.3

This release was made possible thanks to the contributions of the following people:

Antonin Lenfant, Arthur Silva, Daniel Kronovet, Innocenty Enikeew, Jack Feng, Jerome Leclanche,
Remigiusz Dymecki and @GaleDragon

Django Push Notifications 1.2.0

07 Oct 16:00
Compare
Choose a tag to compare

Changelog:

  • BACKWARDS-INCOMPATIBLE: Added support for Django 1.7 migrations. South users will have to upgrade to South 1.0 or Django 1.7.
  • APNS: APNS MAX_NOTIFICATION_SIZE is now a setting and its default has been increased to 2048
  • APNS: Always connect with TLSv1 instead of SSLv3
  • APNS: Implemented support for APNS Feedback Service
  • APNS: Support for optional "category" dict
  • GCM: Improved error handling in bulk mode
  • GCM: Added support for time_to_live parameter
  • BUGFIX: Fixed various issues relating HexIntegerField
  • BUGFIX: Fixed issues in the admin with custom user models

This release was made possible thanks to the contributions of the following people:

Alan Descoins, Alistair Broomhead, Arthur Silva, Francois Lebel, Jay Camp, Jerome Leclanche, Sergei Evdokimov, Sujit Nair, Thomas Iovine and @shigmas.