Skip to content

Commit

Permalink
Merge branch 'release/v0.5.0'
Browse files Browse the repository at this point in the history
* release/v0.5.0:
  Improve support for endpoint configs Emit events for connections (connect, disconnect, close, error)
  • Loading branch information
gfoiani committed Jul 5, 2018
2 parents adc912e + 6ebf8af commit 905ab43
Show file tree
Hide file tree
Showing 24 changed files with 17,473 additions and 201 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,17 @@ All notable changes to this project will be documented in this file.
- `0.2.x` Releases - [0.2.0] [0.2.1]
- `0.3.x` Releases - [0.3.0]
- `0.4.x` Releases - [0.4.0] [0.4.1] [0.4.3] [0.4.4]
- `0.5.x` Releases - [0.5.0]

---

## [0.5.0](https://github.com/space-bunny/node-sdk/releases/tag/v0.5.0)

#### Changed

- Improve support for endpoint configs
- Emit events for connections (connect, disconnect, close, error)

## [0.4.4](https://github.com/space-bunny/node-sdk/releases/tag/v0.4.4)

#### Changed
Expand Down
16 changes: 5 additions & 11 deletions config/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,11 @@
exports.CONFIG = {
endpoint: {
protocol: 'http',
secureProtocol: 'https'
},
deviceEndpoint: {
url: 'https://api.spacebunny.io',
api_version: '/v1',
path: '/device_configurations'
},
accessKeyEndpoint: {
url: 'https://api.spacebunny.io',
api_version: '/v1',
path: '/live_stream_key_configurations'
secureProtocol: 'https',
host: 'api.spacebunny.io',
port: 3000,
deviceConfigurationsPath: 'device_configurations',
liveStreamKeyConfigurationsPath: 'live_stream_key_configurations'
},
tls: {
secureProtocol: 'TLSv1_2_method'
Expand Down
101 changes: 62 additions & 39 deletions dist/spacebunny.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/messages/amqpMessage.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/messages/stompMessage.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions lib/protocols/amqpClient.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/protocols/amqpClient.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 905ab43

Please sign in to comment.