Skip to content

Releases: aerogear/aerogear-unifiedpush-nodejs-client

0.16.1

Choose a tag to compare

@darahayes darahayes released this 04 Mar 12:39

Summary of Changes

  • Update our dependency on request to use 2.88.0. Ensures there are no known vulnerabilities.
  • Introduce release automation
  • Bring the project into CircleCI

v0.16.0

Choose a tag to compare

@lholmquist lholmquist released this 14 Mar 14:49

Mitigation Release

#29

Better Errors

Choose a tag to compare

@lholmquist lholmquist released this 02 Nov 16:12

This release adds proper Error objects to the Promise rejections

I "Promise" this works

Choose a tag to compare

@lholmquist lholmquist released this 06 Jun 16:21

This latest update is some what of a complete re-write of the sender and now only returns a promise.

This is not a drop in replacement for 0.12.0.

Example

//Require the unifiedpush-node-sender library

const agSender = require('unifiedpush-node-sender');

const settings = {
    url: 'http://localhost:8080/ag-push',
    applicationId: '12345',
    masterSecret: '123456'
};

Send a Message

//First get a handle on the client object, then use the client.sender.send method to send a message

agSender(settings).then((client) => {
    client.sender.send(message, options).then((response) => {
        console.log('success', response);
    })
});

"Priority" release

Choose a tag to compare

@lholmquist lholmquist released this 05 May 12:44

A Documentation update around Adding the priority flag

https://issues.jboss.org/browse/AGPUSH-1602

Release 0.11.0

Choose a tag to compare

@lholmquist lholmquist released this 19 Feb 19:45

This release adds the request library

0.10.1 release

Choose a tag to compare

@lholmquist lholmquist released this 16 Nov 20:52
0.10.1

0.10.0 release

Choose a tag to compare

@lholmquist lholmquist released this 16 Nov 20:13

Now with More Shrinkwrap

Keep The Head(ers) Ringing

Choose a tag to compare

@lholmquist lholmquist released this 03 Sep 14:39

Release Notes - AeroGear JavaScript - Version node-sender-0.9.0

Feature Request

  • [AGJS-300] - Support Custom Auth Headers in the Node Sender

0.8.0 - Monday Funday

Choose a tag to compare

@lholmquist lholmquist released this 10 Aug 13:21

This release includes changes to the message format that is sent to the Unified Push Server version 1.1.X

To send the proper message format to the 1.0.x series, use the 0.7.X version