Skip to content

Commit

Permalink
Version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gablau committed Mar 14, 2020
1 parent da59339 commit 14e12a7
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 73 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.0.2] - 2020-03-14
### Changed
- Updated dependencies for security reasons
- Small changes

## [1.0.1] - 2019-08-28
### Changed
- Update dependancies for security
- Update esLint + airbnb base
- Updated dependencies for security reasons
- Updated esLint + airbnb base

### Fixed
- Bridge node - Regexp validation for auth token
Expand Down Expand Up @@ -189,7 +194,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Heartbeat once 10 seconds
- Max virtual pin allowed 128

[Unreleased]: https://github.com/gablau/node-red-contrib-blynk-ws/compare/1.0.1...HEAD
[Unreleased]: https://github.com/gablau/node-red-contrib-blynk-ws/compare/1.0.2...HEAD
[1.0.2]: https://github.com/gablau/node-red-contrib-blynk-ws/compare/1.0.1...1.0.2
[1.0.1]: https://github.com/gablau/node-red-contrib-blynk-ws/compare/1.0.0...1.0.1
[1.0.0]: https://github.com/gablau/node-red-contrib-blynk-ws/compare/0.9.2...1.0.0
[0.9.2]: https://github.com/gablau/node-red-contrib-blynk-ws/compare/0.9.1...0.9.2
Expand Down
4 changes: 2 additions & 2 deletions nodes/blynk-ws-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const blynkUtil = require('./../libs/blynk-util.js');
const blynkLib = require('./../libs/blynk-lib.js');

module.exports = (RED) => {
const LIBRARY_VERSION = '1.0.1'; // node-red lib version
const LIBRARY_DATE = '2019-08-28'; // node-red lib date
const LIBRARY_VERSION = '1.0.2'; // node-red lib version
const LIBRARY_DATE = '2020-03-14'; // node-red lib date

const RECONNECT_TIMEOUT_SECONDS = 5; // number of seconds for reconnection when disconnected or socket error

Expand Down
111 changes: 49 additions & 62 deletions package-lock.json

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

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "node-red-contrib-blynk-ws",
"version": "1.0.1",
"version": "1.0.2",
"description": "Node Red integration with Blynk App and Server through websockets",
"scripts": {
"lint": "eslint \"{libs,nodes}/**/*.{js,json,html}\"",
"lint": "./node_modules/.bin/eslint \"{libs,nodes}/**/*.{js,json,html}\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
Expand All @@ -24,17 +24,17 @@
"homepage": "https://github.com/gablau/node-red-contrib-blynk-ws",
"dependencies": {
"compare-versions": ">=3.1.0",
"https-proxy-agent": ">=2.0.0",
"secure-random-string": ">=1.1.0",
"https-proxy-agent": ">=5.0.0",
"secure-random-string": ">=1.1.2",
"utf8": "^3.0.0",
"ws": ">=1.0.1"
"ws": ">=7.2.3"
},
"devDependencies": {
"eslint": "^6.x.x",
"eslint-config-airbnb-base": "^14.x.x",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.x.x",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-json": "^2.1.0",
"eslint-plugin-progress": "github:gablau/eslint-plugin-progress"
},
"node-red": {
Expand Down

0 comments on commit 14e12a7

Please sign in to comment.