Skip to content

Commit d69f4d9

Browse files
Fix/dependabot alerts (#30)
* Update path-parse from 1.0.6 to 1.0.7 * Change README run command env. variable MQTT_HOST to MQTT_URL * Bump Revision
1 parent 82ffc66 commit d69f4d9

File tree

7 files changed

+16
-11
lines changed

7 files changed

+16
-11
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LABEL org.opencontainers.image.authors="[email protected]"
66
LABEL org.opencontainers.image.source="https://github.com/Spruik/PackML-MQTT-Simulator"
77
LABEL org.opencontainers.image.url="https://spruiktec.com/"
88
LABEL org.opencontainers.image.vendor="Spruik Technologies LLC"
9-
LABEL org.opencontainers.image.version="2.0.2"
9+
LABEL org.opencontainers.image.version="2.0.3"
1010

1111
WORKDIR /machine
1212

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Start your container with environmental variables.
2222
#### Basic MQTT Structure
2323

2424
```shell
25-
$ docker run -it -e SITE=Site -e AREA=Area -e LINE=Line -e MQTT_HOST=mqtt://broker.hivemq.com -m 30m spruiktec/packml-simulator
25+
$ docker run -it -e SITE=Site -e AREA=Area -e LINE=Line -e MQTT_URL=mqtt://broker.hivemq.com -m 30m spruiktec/packml-simulator
2626
2020-06-22T03:13:49.301Z | info: Initializing
2727
2020-06-22T03:13:49.817Z | info: Connected to mqtt://broker.hivemq.com:1883
2828
2020-06-22T03:13:49.819Z | info: Site/Area/Line/Status/UnitModeCurrent : Production
@@ -33,7 +33,7 @@ Once up and running, use an MQTT client to publish to .../Command/Reset and .../
3333
#### SparkPlugB
3434

3535
```shell
36-
$ docker run -it -e CLIENT_TYPE=sparkplugb -e SITE=Site -e AREA=Area -e LINE=Line -e MQTT_HOST=mqtt://broker.hivemq.com -m 30m spruiktec/packml-simulator
36+
$ docker run -it -e CLIENT_TYPE=sparkplugb -e SITE=Site -e AREA=Area -e LINE=Line -e MQTT_URL=mqtt://broker.hivemq.com -m 30m spruiktec/packml-simulator
3737
2020-06-22T03:13:49.301Z | info: Initializing
3838
2020-06-22T03:13:49.817Z | info: Connected to mqtt://broker.hivemq.com:1883
3939
2020-06-22T03:13:49.819Z | info: Site/Area/Line/Status/UnitModeCurrent : Production
@@ -295,6 +295,11 @@ For any issue, there are fundamentally three ways an individual can contribute:
295295

296296
## Changelog
297297

298+
- 2.0.3
299+
- Update path-parse from 1.0.6 to 1.0.7
300+
- Change README run command env. variable MQTT_HOST to MQTT_URL
301+
- Bump Revision
302+
298303
- 2.0.2
299304
- Update mqtt libary from 4.2.1 to 4.2.8
300305
- Update sonarqube-scanner libary from 2.7.0 to 2.8.1

chart/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ name: packml-sim
33
description: PackML Machine Simulator
44
type: application
55
version: 0.0.2
6-
appVersion: 2.0.2
6+
appVersion: 2.0.3

package-lock.json

Lines changed: 4 additions & 4 deletions
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": "packaging-machine-language-mqtt-simulator",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "Manufacturing line simulator interfaced using PackML over MQTT.",
55
"keywords": [
66
"packml",

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
sonar.projectKey=PackagingMachineLanguageSimulator
22
sonar.projectName=Packaging Machine Language Simulator
3-
sonar.projectVersion=2.0.2
3+
sonar.projectVersion=2.0.3
44
sonar.language=js
55
sonar.sources=src
66
sonar.sourceEncoding=UTF-8

src/clients/sparkplug.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class Client extends events.EventEmitter {
118118
{
119119
name: "Properties/OS Version",
120120
timestamp: timestamp,
121-
value: "2.0.2",
121+
value: "2.0.3",
122122
type: "String"
123123
},
124124
{

0 commit comments

Comments
 (0)