Skip to content

Tags: nclarey/django-push-notifications

Tags

3.2.2_nclarey

Toggle 3.2.2_nclarey's commit message
Updated async apns timeout to 10s from 1

3.2.2+nclarey

Toggle 3.2.2+nclarey's commit message
Updated async apns timeout to 10s from 1

3.2.1

Toggle 3.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Make mutable-content int (1) instead of bool (True) (jazzband#763)

APNS expect as int in the payload.
Setting `mutable_content` to True, will set `mutable-content` to 1.

3.2.0

Toggle 3.2.0's commit message
Bump actions/cache from 2 to 4

Bumps [actions/cache](https://github.com/actions/cache) from 2 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v2...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

3.1.0

Toggle 3.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Changed firebase-admin's deprecated send_all method for send_each (ja…

…zzband#715)

3.0.3

Toggle 3.0.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Remove python 3.6 support. (jazzband#718)

* Remove python 3.6 support.

* Remove unsupported code

3.0.2

Toggle 3.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fixes twine reported warnings when building package. (jazzband#695)

3.0.1

Toggle 3.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fixes twine reported warnings when building package. (jazzband#695)

3.0.0

Toggle 3.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
docs: fix codecov badge. (jazzband#651)

Show coverage badge.

2.0.0

Toggle 2.0.0's commit message
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