Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.12.0 #182

Merged
merged 2 commits into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
#### 2.12.0: Release

- Add node-red editor cache files (#181)
- Update docker-compose.yml (#178)
- feat: Add healthchecks for services in Docker Compose (#167)
- Bump max MQTT packet to 128mb (#176)
- Fix EMQX WS port number (#175)
- Update Node-RED Dockerfile to 3.1.15 (#180) @hardillb
- ci: Do not run test against `release-*` branches (#177) @ppawlowski
- ci: Add Docker Compose files as assets to a release (#179) @ppawlowski
- feat: Add possibility to run application on custom domain name (#172) @ppawlowski
- docs: Adjust UPGRADE instruction (#170) @ppawlowski

#### 2.11.0: Release

- Ensure the broker service name doesn't change (#168)
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ services:
- emqx:/opt/emqx/data

forge:
image: "flowfuse/forge-docker:2.11.0"
image: "flowfuse/forge-docker:2.12.0"
networks:
- flowforge
restart: always
Expand All @@ -511,7 +511,7 @@ services:
start_period: 10s

file-server:
image: "flowfuse/file-server:2.11.0"
image: "flowfuse/file-server:2.12.0"
networks:
- flowforge
restart: always
Expand Down
4 changes: 2 additions & 2 deletions file-server/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@flowfuse/file-server-container",
"version": "2.11.0",
"version": "2.12.0",
"private": true,
"dependencies": {
"@flowfuse/file-server": "^2.11.0"
"@flowfuse/file-server": "^2.12.0"
},
"license": "Apache-2.0"
}
6 changes: 3 additions & 3 deletions flowforge-docker/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@flowfuse/docker-deployment",
"description": "FlowFuse in Docker",
"version": "2.11.0",
"version": "2.12.0",
"private": true,
"author": {
"name": "FlowForge Inc."
},
"dependencies": {
"@flowfuse/flowfuse": "^2.11.0",
"@flowfuse/driver-docker": "^2.11.0",
"@flowfuse/flowfuse": "^2.12.0",
"@flowfuse/driver-docker": "^2.12.0",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4"
},
Expand Down
2 changes: 1 addition & 1 deletion node-red-container/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "node-red-project",
"description": "A Node-RED Project",
"version": "2.11.0",
"version": "2.12.0",
"private": true,
"dependencies": {}
}
Loading