@flowfuse/driver-docker 2.23.0 → 2.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ #### 2.24.0: Release
2
+
3
+ - Fix port for Performance data (#159)
4
+ - Bump js-yaml from 4.1.0 to 4.1.1 (#157) @app/dependabot
5
+
6
+ #### 2.23.1: Release
7
+
8
+
1
9
  #### 2.23.0: Release
2
10
 
3
11
  - Bump actions/setup-node from 5.0.0 to 6.0.0 (#154)
package/docker.js CHANGED
@@ -798,7 +798,7 @@ module.exports = {
798
798
  if (this._projects[project.id] === undefined) {
799
799
  throw new Error('Cannot get instance resources')
800
800
  }
801
- const url = 'ws://' + project.id + ':2800/flowforge/resources'
801
+ const url = 'ws://' + project.id + ':2880/flowforge/resources'
802
802
  const resourceStream = new WebSocket(url, {})
803
803
 
804
804
  resourceStream.on('message', (data) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowfuse/driver-docker",
3
- "version": "2.23.0",
3
+ "version": "2.24.0",
4
4
  "description": "Docker driver for FlowFuse",
5
5
  "main": "docker.js",
6
6
  "scripts": {