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

fix: 2.12.1 point release #523

Merged
merged 3 commits into from
Dec 20, 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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.12.0
2.12.1
2 changes: 1 addition & 1 deletion flowforge-container/install-device-cache.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh -x

VERSION_LIST="4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.7"
VERSION_LIST="4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.7 4.0.8"

mkdir -p device/cache
cd device/cache
Expand Down
2 changes: 1 addition & 1 deletion helm/flowforge/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ dependencies:
maintainers:
- name: "FlowForge Inc"
url: "https://flowfuse.com"
appVersion: "2.12.0"
appVersion: "2.12.1"
2 changes: 1 addition & 1 deletion node-red-container/Dockerfile-4.0
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM nodered/node-red:4.0.7-20
FROM nodered/node-red:4.0.8-20

ARG REGISTRY
ARG REGISTRY_TOKEN

Check warning on line 4 in node-red-container/Dockerfile-4.0

View workflow job for this annotation

GitHub Actions / Build 4.0.x container images / build

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ARG "REGISTRY_TOKEN") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
ARG BUILD_TAG=latest
RUN if [[ ! -z "$REGISTRY_TOKEN" ]]; then echo "//$REGISTRY/:_authToken=$REGISTRY_TOKEN" >> ~/.npmrc ; fi
RUN if [[ ! -z "$REGISTRY" ]] ; then npm config set @flowfuse:registry "https://$REGISTRY"; fi
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.12.0",
"version": "2.12.1",
"private": true,
"dependencies": {}
}
Loading