Skip to content

Commit 1665324

Browse files
committed
Release v1.0.2
1 parent d268ea0 commit 1665324

File tree

3 files changed

+256
-42
lines changed

3 files changed

+256
-42
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,14 @@ As for the insert node _output_ message format, development is still ongoing, an
3535

3636
The changelog is introduced from `v.1.0.0-beta.4`, and describe changes from `v.1.0.0-beta.3`.
3737

38+
### 1.0.2
39+
40+
- Use less strict input id (topic) requirements
41+
3842
### 1.0.1
43+
3944
- Changed default branch name from `master` to `main`.
45+
4046
### 1.0.0
4147

4248
- Change outputs to only output data from Clarify servers.

package-lock.json

Lines changed: 209 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
11
{
2-
"name": "@searis/node-red-contrib-clarify",
3-
"version": "1.0.1",
4-
"description": "A Node-Red node to insert data into Clarify",
5-
"repository": "git://github.com/clarify/node-red-contrib-clarify.git",
6-
"directories": {
7-
"nodes": "./nodes",
8-
"examples": "./examples"
9-
},
10-
"author": {
11-
"name": "Clarify",
12-
"email": "teknisk@clarify.io",
13-
"url": "https://clarify.io"
14-
},
15-
"license": "Apache-2.0",
16-
"licenses": [
17-
{
18-
"type": "Apache-2.0",
19-
"url": "http://www.apache.org/licenses/LICENSE-2.0"
20-
}
21-
],
22-
"keywords": [
23-
"clarify",
24-
"time-series",
25-
"iiot",
26-
"node-red"
27-
],
28-
"node-red": {
29-
"nodes": {
30-
"clarify_api": "nodes/clarify_api.js",
31-
"clarify_insert": "nodes/clarify_insert.js"
32-
}
33-
},
34-
"dependencies": {
35-
"async-mutex": "^0.3.2",
36-
"axios": "^0.25.0",
37-
"jwt-decode": "^3.1.2",
38-
"lodash": "^4.17.21",
39-
"crypto-js": "^4.1.1",
40-
"lowdb": "^1.0.0",
41-
"luxon": "^2.3.0",
42-
"qs": "^6.10.3"
2+
"name": "@searis/node-red-contrib-clarify",
3+
"version": "1.0.2",
4+
"description": "A Node-Red node to insert data into Clarify",
5+
"repository": "git://github.com/clarify/node-red-contrib-clarify.git",
6+
"directories": {
7+
"nodes": "./nodes",
8+
"examples": "./examples"
9+
},
10+
"author": {
11+
"name": "Clarify",
12+
"email": "teknisk@clarify.io",
13+
"url": "https://clarify.io"
14+
},
15+
"license": "Apache-2.0",
16+
"licenses": [
17+
{
18+
"type": "Apache-2.0",
19+
"url": "http://www.apache.org/licenses/LICENSE-2.0"
4320
}
21+
],
22+
"keywords": [
23+
"clarify",
24+
"time-series",
25+
"iiot",
26+
"node-red"
27+
],
28+
"node-red": {
29+
"nodes": {
30+
"clarify_api": "nodes/clarify_api.js",
31+
"clarify_insert": "nodes/clarify_insert.js"
32+
}
33+
},
34+
"dependencies": {
35+
"async-mutex": "^0.3.2",
36+
"axios": "^0.25.0",
37+
"jwt-decode": "^3.1.2",
38+
"lodash": "^4.17.21",
39+
"crypto-js": "^4.1.1",
40+
"lowdb": "^1.0.0",
41+
"luxon": "^2.3.0",
42+
"qs": "^6.10.3"
43+
}
4444
}

0 commit comments

Comments
 (0)