Skip to content

Commit 929982a

Browse files
sn0wcatxcelerator-bot
authored andcommitted
chore(release): 3.5.0 - May 2019 🎉 (#36)
* chore: updated readmes * chore(release): 3.5.0 - May 🎉
1 parent feda760 commit 929982a

File tree

10 files changed

+54
-31
lines changed

10 files changed

+54
-31
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## New Features 3.5.0
66

7-
- updated to version 3.5.2 of mindconnect-nodejs library
7+
- updated to version 3.5.3 of mindconnect-nodejs library
88
- chunked upload is now using the multipart upload file API
99
- there is a new experimental parameter max async uploads: If this setting is > 1 the node will not wait for every request to finish
1010
- switched documentation generation to compodoc as typedoc doesn't seem to be maintained

CONTRIBUTING.md

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ We welcome contributions in several forms, e.g.
1111
* Coding
1212
* etc.
1313

14-
Please read [14 Ways to Contribute to Open Source without Being a Programming Genius or a Rock Star](http://blog.smartbear.com/programming/14-ways-to-contribute-to-open-source-without-being-a-programming-genius-or-a-rock-star/).
14+
Please read [14 Ways to Contribute to Open Source without Being a Programming Genius or a Rock Star](https://smartbear.com/blog/test-and-monitor/14-ways-to-contribute-to-open-source-without-being/).
1515

16-
Please check check for the issues in the project and look for unassigned ones or create a new one.
16+
Please check for the issues in the project and look for unassigned ones or create a new one.
1717

1818
Working together in an open and welcoming environment is the foundation of our
1919
success, so please respect our [Code of Conduct](CODE_OF_CONDUCT.md).
@@ -35,15 +35,6 @@ Commit messages shall follow the conventions defined by [conventional-changelog]
3535
In most cases the changed component is a good choice as scope
3636
e.g. if the change is done in the MindConnectAgent the scope should be *Agent*.
3737

38-
### License Headers
39-
40-
The only license header we need for a software written by Siemens is:
41-
42-
```javascript
43-
// Copyright Siemens AG, YEAR
44-
```
45-
The YEAR shall reflect the creation date.
46-
4738
### Code Style
4839

49-
Please follow the typescript code style which is established in tslint.json. (Works out of the box in many editors, e.g. Visual Studio Code)
40+
Please follow the typescript code style which is established in tslint.json. (Works out of the box in many editors, e.g. Visual Studio Code)

Docker/ARM/LICENSE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Siemens AG
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Docker/ARM/README.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# node-red-contrib-mindconnect
22

3-
![](https://img.shields.io/docker/pulls/mindconnect/node-red-contrib-mindconnect.svg?style=flat)
3+
![pulls](https://img.shields.io/docker/pulls/mindconnect/node-red-contrib-mindconnect.svg?style=flat)
44

55
## Node-RED Agent for the MindConnect API
66

@@ -10,13 +10,13 @@ These docker images are based on the [Node-RED-Docker](https://hub.docker.com/r/
1010

1111
The images are provided for X86 and ARM Processor Architectures (e.g. Raspberry Pi...)
1212

13-
## Tags:
13+
## Tags
1414

1515
- **latest** : latest state of the master branch on [GitHub](https://github.com/mindsphere/node-red-mindconnect) for X86 processor architecture.
1616

17-
- **arm-latest** : latest state of the mater branch on [GitHub](https://github.com/mindsphere/node-red-mindconnect) for ARM processor architecture.
17+
- **arm-latest** : latest state of the mater branch on [GitHub](https://github.com/mindsphere/node-red-mindconnect) for ARM processor architecture.
1818

19-
- **x.x.x** : image containing the x.x.x. version of the node-red-contib-mondconnect agents for X86.
19+
- **x.x.x** : image containing the x.x.x. version of the node-red-contib-mondconnect agents for X86.
2020
- **arm-x.x.x** : image containing the x.x.x. version of the node-red-contib-mondconnect agents for ARM.
2121

2222
``` bash
@@ -26,22 +26,26 @@ docker pull mindconnect/node-red-contrib-mindconnect:arm-latest # pulls the late
2626

2727
## Using the images
2828

29-
Running the image with Node-RED avaialble at : http://localhost:1880
29+
Running the image with Node-RED avaialble at : [http://localhost:1880](http://localhost:1880)
3030

3131
``` bash
3232
docker run -it --name mind-red -p 1880:1880 mindconnect/node-red-contrib-mindconnect
3333
```
3434

35-
Run the container as a service, keeping the state on the host in the /DATA and /DATA/.mc directory , behind a http proxy running at http://192.168.0.1
35+
Run the container as a service, keeping the state on the host in the /DATA and /DATA/.mc directory , behind a http proxy running at [http://192.168.0.1](http://192.168.0.1)
3636

3737
``` bash
3838
docker run -dit --name mind-red-service -p 1880:1880 -v /DATA:/data -v /DATA/mc:/usr/src/node-red/.mc --restart unless-stopped -e HTTP_PROXY=http://192.168.0.1 mindconnect/node-red-contrib-mindconnect
3939
```
4040

41-
## Legal Notice
41+
## Siemens API Notice
42+
43+
This project has been released under an [Open Source license](./LICENSE.md). The release may include and/or use APIs to Siemens’ or third parties’ products or services. In no event shall the project’s Open Source license grant any rights in or to these APIs, products or services that would alter, expand, be inconsistent with, or supersede any terms of separate license agreements applicable to those APIs. “API” means application programming interfaces and their specifications and implementing code that allows other software to communicate with or call on Siemens’ or third parties’ products or services and may be made available through Siemens’ or third parties’ products, documentations or otherwise.
44+
45+
## Node-RED Base Image
4246

4347
This image is based on the [Node-RED-Docker](https://hub.docker.com/r/nodered/node-red-docker/) docker image.
4448

4549
Node-RED is a project of the [JS Foundation](http://js.foundation).
4650
It was created by [IBM Emerging Technology](https://www.ibm.com/blogs/emerging-technology/).
47-
Copyright JS Foundation and other contributors http://js.foundation under the [Apache License](https://github.com/node-red/node-red/blob/master/LICENSE)
51+
Copyright JS Foundation and other contributors [http://js.foundation](http://js.foundation) under the [Apache License](https://github.com/node-red/node-red/blob/master/LICENSE)

Docker/ARM/SIEMENSAPINOTICE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Siemens API Notice
2+
3+
This project has been released under an [Open Source license](./LICENSE.md). The release may include and/or use APIs to Siemens’ or third parties’ products or services. In no event shall the project’s Open Source license grant any rights in or to these APIs, products or services that would alter, expand, be inconsistent with, or supersede any terms of separate license agreements applicable to those APIs. “API” means application programming interfaces and their specifications and implementing code that allows other software to communicate with or call on Siemens’ or third parties’ products or services and may be made available through Siemens’ or third parties’ products, documentations or otherwise.

Docker/X86/LICENSE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Siemens AG
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Docker/X86/README.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# node-red-contrib-mindconnect
22

3-
![](https://img.shields.io/docker/pulls/mindconnect/node-red-contrib-mindconnect.svg?style=flat)
3+
![pulls](https://img.shields.io/docker/pulls/mindconnect/node-red-contrib-mindconnect.svg?style=flat)
44

55
## Node-RED Agent for the MindConnect API
66

@@ -10,13 +10,13 @@ These docker images are based on the [Node-RED-Docker](https://hub.docker.com/r/
1010

1111
The images are provided for X86 and ARM Processor Architectures (e.g. Raspberry Pi...)
1212

13-
## Tags:
13+
## Tags
1414

1515
- **latest** : latest state of the master branch on [GitHub](https://github.com/mindsphere/node-red-mindconnect) for X86 processor architecture.
1616

17-
- **arm-latest** : latest state of the mater branch on [GitHub](https://github.com/mindsphere/node-red-mindconnect) for ARM processor architecture.
17+
- **arm-latest** : latest state of the mater branch on [GitHub](https://github.com/mindsphere/node-red-mindconnect) for ARM processor architecture.
1818

19-
- **x.x.x** : image containing the x.x.x. version of the node-red-contib-mondconnect agents for X86.
19+
- **x.x.x** : image containing the x.x.x. version of the node-red-contib-mondconnect agents for X86.
2020
- **arm-x.x.x** : image containing the x.x.x. version of the node-red-contib-mondconnect agents for ARM.
2121

2222
``` bash
@@ -26,22 +26,26 @@ docker pull mindconnect/node-red-contrib-mindconnect:arm-latest # pulls the late
2626

2727
## Using the images
2828

29-
Running the image with Node-RED avaialble at : http://localhost:1880
29+
Running the image with Node-RED avaialble at : [http://localhost:1880](http://localhost:1880)
3030

3131
``` bash
3232
docker run -it --name mind-red -p 1880:1880 mindconnect/node-red-contrib-mindconnect
3333
```
3434

35-
Run the container as a service, keeping the state on the host in the /DATA and /DATA/.mc directory , behind a http proxy running at http://192.168.0.1
35+
Run the container as a service, keeping the state on the host in the /DATA and /DATA/.mc directory , behind a http proxy running at [http://192.168.0.1](http://192.168.0.1)
3636

3737
``` bash
3838
docker run -dit --name mind-red-service -p 1880:1880 -v /DATA:/data -v /DATA/mc:/usr/src/node-red/.mc --restart unless-stopped -e HTTP_PROXY=http://192.168.0.1 mindconnect/node-red-contrib-mindconnect
3939
```
4040

41-
## Legal Notice
41+
## Siemens API Notice
42+
43+
This project has been released under an [Open Source license](./LICENSE.md). The release may include and/or use APIs to Siemens’ or third parties’ products or services. In no event shall the project’s Open Source license grant any rights in or to these APIs, products or services that would alter, expand, be inconsistent with, or supersede any terms of separate license agreements applicable to those APIs. “API” means application programming interfaces and their specifications and implementing code that allows other software to communicate with or call on Siemens’ or third parties’ products or services and may be made available through Siemens’ or third parties’ products, documentations or otherwise.
44+
45+
## Node-RED Base Image
4246

4347
This image is based on the [Node-RED-Docker](https://hub.docker.com/r/nodered/node-red-docker/) docker image.
4448

4549
Node-RED is a project of the [JS Foundation](http://js.foundation).
4650
It was created by [IBM Emerging Technology](https://www.ibm.com/blogs/emerging-technology/).
47-
Copyright JS Foundation and other contributors http://js.foundation under the [Apache License](https://github.com/node-red/node-red/blob/master/LICENSE)
51+
Copyright JS Foundation and other contributors [http://js.foundation](http://js.foundation) under the [Apache License](https://github.com/node-red/node-red/blob/master/LICENSE)

Docker/X86/SIEMENSAPINOTICE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Siemens API Notice
2+
3+
This project has been released under an [Open Source license](./LICENSE.md). The release may include and/or use APIs to Siemens’ or third parties’ products or services. In no event shall the project’s Open Source license grant any rights in or to these APIs, products or services that would alter, expand, be inconsistent with, or supersede any terms of separate license agreements applicable to those APIs. “API” means application programming interfaces and their specifications and implementing code that allows other software to communicate with or call on Siemens’ or third parties’ products or services and may be made available through Siemens’ or third parties’ products, documentations or otherwise.

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mindconnect/node-red-contrib-mindconnect",
3-
"version": "3.5.0-4",
3+
"version": "3.5.0",
44
"description": "node red mindconnect node using mindconnect-nodejs library.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)