Skip to content

Commit 35b8574

Browse files
chore: update version to 2.1.1 and dependencies
### Change - Change nodejs to v24 - Change mqtt library to v5.14.1 - Change winston library to 3.19.0 - Change Revision
2 parents 7599c22 + 381bd74 commit 35b8574

File tree

7 files changed

+824
-374
lines changed

7 files changed

+824
-374
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM node:20-alpine
1+
FROM node:24-alpine
22

33
# Labels
44
LABEL maintainer="[email protected]"
55
LABEL org.opencontainers.image.authors="[email protected]"
66
LABEL org.opencontainers.image.source="https://github.com/libremfg/PackML-MQTT-Simulator"
77
LABEL org.opencontainers.image.url="https://www.libremfg.com/"
88
LABEL org.opencontainers.image.vendor="Libre Technologies Inc"
9-
LABEL org.opencontainers.image.version="2.1.0"
9+
LABEL org.opencontainers.image.version="2.1.1"
1010

1111
WORKDIR /machine
1212

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,12 @@ For any issue, there are fundamentally three ways an individual can contribute:
299299

300300
## Changelog
301301

302+
- 2.1.1
303+
- Change nodejs to v24
304+
- Change mqtt library to v5.14.1
305+
- Change winston library to 3.19.0
306+
- Bump Revision
307+
302308
- 2.1.0
303309
- Add configuration option for MQTT server port
304310
- Add timestamp to metric for alignment to Sparkplug 3.0.0 Specification

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.1.0
6+
appVersion: 2.1.1

package-lock.json

Lines changed: 810 additions & 366 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "packaging-machine-language-mqtt-simulator",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Manufacturing line simulator interfaced using PackML over MQTT.",
55
"keywords": [
66
"packml",
@@ -28,10 +28,10 @@
2828
"license": "MIT",
2929
"dependencies": {
3030
"javascript-state-machine": "^3.1.0",
31-
"mqtt": "^5.11.0",
31+
"mqtt": "^5.14.1",
3232
"seedrandom": "^3.0.5",
3333
"sparkplug-client": "^3.2.4",
34-
"winston": "^3.17.0"
34+
"winston": "^3.19.0"
3535
},
3636
"devDependencies": {
3737
"sonarqube-scanner": "^4.3.0",

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.1.0
3+
sonar.projectVersion=2.1.1
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
@@ -124,7 +124,7 @@ class Client extends events.EventEmitter {
124124
{
125125
name: "Properties/OS Version",
126126
timestamp: timestamp,
127-
value: "2.1.0",
127+
value: "2.1.1",
128128
type: "String"
129129
},
130130
{

0 commit comments

Comments
 (0)