Changelog History
-
v2.7.0 Changes
November 27, 2019- ๐ Bugfix: Change from the deprecated
redis.FlushDb
alias toredis.FlushDB
of go-redis (FlushDb is removed in the latest releases).
โก๏ธ This may require updating the version of go-redis thatuniqush-push
is built with - ๐ Bugfix: Properly handle values of
sandbox
other thansandbox=true
when creating push service providers. (#249)
(This bug is not triggered when there is nosandbox
query param) - ๐ Bugfix: Fix possible incorrect subscription when sending API response for /push containing multiple subscriptions (pushes were sent correctly)
- ๐ง Maintenance: Start using go modules
- ๐ Maintenance: Add documentation to source code
- ๐ Bugfix: Change from the deprecated
-
v2.6.1 Changes
July 21, 2018๐ Maintenance: Fix various code style warnings from code linters (e.g. gometalinter). Refactor and document code.
๐ Bugfix: Fix the rare "No device" errors seen when retrying a push. (PR #222)
๐ Bugfix: Fix the regular expression used as a sanity check of subscriptions and services. (PR #222)
The intended accepted characters for use in services and subscriptions werea-z, A-Z, 0-9, -, _, @ or .
Forbid using the backtick in service and subscription names (this was accidentally permitted by the invalid regex).
Continue allowing a small number of other invalid characters for now,
๐ those may be deprecated in future releases. -
v2.6.0 Changes
July 18, 2018- โก๏ธ Maintenance: Update GCM push URL to the equivalent https://fcm.googleapis.com/fcm/ endpoint (#210)
Applications using GCM are unaffected by this change.
(The old URL stops working in April 2019) - โฌ๏ธ Maintenance: Upgrade go-redis from v5 to v6.
- Get rid of excessive database locking when fetching subscriptions for a user.
- ๐ง Make the APNS pool size configurable at runtime
- ๐ Stop overriding Gomaxprocs (removes a call to
runtime.GOMAXPROCS(runtime.NumCPU() + 1)
).
This allows users to override this setting.
๐ This is no longer needed because the latest releases of Go have reasonable defaults for GOMAXPROCS. - New feature: Add an optional
slave_host
andslave_port
field to the uniqush db config.
This may help with scaling if the redis master (or sharded redis masters) have high load,
by performing read operations against the redis slave instead.
๐ Changes to APIs
New feature: Prevent creating two different push service providers of the same service name and push service type in /addpsp. (#197)
โก๏ธ Updating mutable fields of existing PSP will continue to work.๐ New feature: Add optional fields to subscriptions that clients can use to track information about an app with a subscription
๐ (app_version
,locale
,subscribe_date
,devid
,old_devid
(device id)).These can be set in calls to
/subscribe
, and will be returned (if they exist) in calls to/subscriptions
Note that the
subscribe_date
provided by the client must be a unix timestamp in seconds.- Uniqush-push currently does not use these for anything, but they are returned when fetching subscriptions.
devid
can be used by clients to remove duplicate subscriptions (e.g. different regid/device token but the same device for GCM/APNS)
๐ if the same device id is seen in calls to /subscribe.
(E.g. this can used in combination with subscribe_date to check which subscription was newer)old_devid
is only useful if you plan to change the way that device ids are generated in a newer release,
๐ and want to manually remove duplicate subscriptions if they arise (e.g. for APNS).
If /subscriptions is called with
include_delivery_point_ids=1
, this
will return unique string identifiers for each delivery point (asdelivery_point_id
) to use with/push
๐ Make the APNS worker pool size (for the binary API) configurable at runtime. (see example in conf/uniqush-push.conf)
This controls the number of encrypted TCP connections to APNS (per active APNS Push Service Provider)
that can run at a given time.0๏ธโฃ This defaults to 13 and has a maximum of 50. The default should be reasonable for most use cases.
/push
now accepts an optional parameterdelivery_point_id
with a comma separated list of
delivery point ids to push to, e.g.delivery_point_id="apns:abcdef0123456789"
to push to the single subscription with that delivery point id.Knowing the delivery point id allows clients to implement custom logic to invoke
uniqush-push
's APIs๐ฐ For example, a client may wish to push different payloads (or not push at all)
to endpoints runningapp_version
1.2.3 of your app or older.๐ฐ (or base the payload on the locale of the device, etc)
This parameter only needs to be used if you want to push to some delivery points (for a subscriber) but not others.
- โก๏ธ Maintenance: Update GCM push URL to the equivalent https://fcm.googleapis.com/fcm/ endpoint (#210)
-
v2.5.0 Changes
April 01, 2018- ๐ Support "title", "title-loc-key", and "title-loc-args"
- ๐ Support larger APNS payloads.
๐ Support 5120 byte payloads for APNS voip pushes
(Where the Cert is a VOIP cert anduniqush.apns_voip=1
is part of
the query params in the call to /push - ๐ Support more granular loglevel levels in uniqush config files:
โ alert, error, warn/warning, standard/verbose/info, and debug
-
v2.4.0 Changes
October 07, 2017- ๐ New feature: Initial support for GCM/FCM "notification" pushes (Documented in PR #185).
uniqush.notification.gcm
anduniqush.notification.fcm
can be used
as fields for/push
, with the JSON blob to send GCM/FCM for the
optional "notification" message.
"notification" messages will let GCM/FCM display the notification for you. - ๐ง Maintenance: Change from https://android.googleapis.com/gcm/send to
https://gcm-http.googleapis.com/gcm/send (equivalent endpoints) - ๐ Maintenance: Bump go version used to compile releases
- ๐ง Maintenance: go 1.9+ is recommended for compiling and testing
- ๐ Bug fix: Improve logging subscriber name in failed API requests.
- ๐ New feature: Initial support for GCM/FCM "notification" pushes (Documented in PR #185).
-
v2.3.0 Changes
July 18, 2017- ๐ New feature: Add /previewpush endpoint to preview the payload that would be
generated and sent to push services. (Issue #140)
This helps with debugging. - โก๏ธ Maintenance: Update APNS binary provider API(default) from version 1 to version 2.
- โฌ๏ธ Maintenance: Upgrade to redis.v5 (Issue #143)
- ๐ New provider: Add FCM support. (Issue #148)
The parameters that would be provided to /addpsp, /subscribe, and /push are
the same as they would be for GCM. (Replace "gcm" with "fcm" when following instructions) - ๐ New feature: Add support APNS HTTP2 API (Issue #157, PR #173)
This gives more accurate results on whether a push succeeded,
๐ and should not impact Uniqush's performance.
To set this up, call /addpsp (to create a new provider or modify an
existing provider) with the same params you would use to create a new
APNS endpoint for binary providers (including cert and key),
in addition to providingbundleid
.
โ Currently, to make testing easy, each call to/push
must be provided with
the query param valueuniqush.http=1
.
Otherwise, uniqush continues to use the APNS binary provider API. - ๐ง Maintenance: Use unescaped payloads for GCM and FCM.
๐ฐ This allows larger payloads, avoiding escaping characters such as<
and>
๐ Fixes #134
go 1.8.3+ and an up to date version of golang.org/x/net/http2
are suggested (For the APNS HTTP2 API). - ๐ New feature: Add /previewpush endpoint to preview the payload that would be
-
v2.2.0 Changes
November 03, 2016- โ Add API endpoints for querying subscriptions (/subscriptions), available services (/services), and a migration API for building the services set (/rebuildserviceset)
- ๐ Allow for providing custom JSON payloads to ADM, APNS, and GCM
- โ Add feedback to indicate whether a delivery point was modified on push (thanks Clemens Fischer)
- ๐ Better connection pooling for the GCM implementation reduces memory footprint by about 90% for if(we)
- Migrate Redis implementation to redis.v3
- ๐ Automatically remove invalid PSPs if they are detected
-
v2.1.0 Changes
March 09, 20162016-Mar-09
๐ This release contains bugfixes, new APIs and improvements.
๐ ChangeLog:
- ๐ improvement Add new APIs for listing the subscriptions of a subscriber and for listing the services exist.
- ๐ bugfix Fix concurrency issues in ADM, APNS. Change the APNS implementation from a buggy connection pool to a reliable worker pool.
- ๐ bugfix Fix a bug which would lead to an infinite loop in rare circumstances.
- ๐ improvement Remove Go's default HTML escaping of JSON payloads, for APNS. The APNS servers now render payloads with characters such as '"' properly.
- ๐ improvement Add more details to error messages.
- ๐ improvement Add enough buffer space for potential 100-byte APNS device tokens.
-
v2.0.0 Changes
March 09, 20162016-Mar-08
๐ This release contains a change to the response format, as well as bug fixes and improvements.
๐ ChangeLog:
- ๐ improvement Changed the response format of most APIs from logs to JSON.
๐ This allows clients to reliably parse results and errors from the API response.
๐ This will break clients that parse the old format - ๐ improvement Allow 2048 byte APNS payloads
- ๐ bugfix Fix various memory leaks.
- ๐ bugfix Fix bugs in closing connections.
- โ Remove support for C2DM, which was shut down by Google on October 2015.
- ๐ improvement Changed the response format of most APIs from logs to JSON.