Skip to content
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
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ jobs:
node --version
yarn --version
npm --version
gcc --version
go version
go env
- run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chronograf-cypress-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16.14.2'
node-version: '24'
- run: if [ ! -x "$(command -v yarn)" ]; then npm install -g yarn; fi
- run: yarn node --version

Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16
24
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

1. [#6166](https://github.com/influxdata/chronograf/pull/6166): Upgrade dependencies. Upgrade golang to 1.24.11. Removed support for Linux i386, armhf, armel and static build. Removed support for Darwin arm64
1. [#6170](https://github.com/influxdata/chronograf/pull/6170): Update Flux help in the UI to align with stdlib `0.199`.
1. [#6174](https://github.com/influxdata/chronograf/pull/6174): Upgrade dependencies. Upgrade nodejs to v24.13.0. Upgrade sass to 1.97.3. Remove dependency on node-sass.

## v1.10.9 [2026-01-07]

Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ If you are going to be contributing back to Chronograf please take a second to s

## Installing & Using Node

You'll need to install Node 16 to run the frontend chronograf application.
You'll need to install Node 24 to run the frontend chronograf application.

* [Install Node 16](https://nodejs.org/en/about/releases/)
* [Install Node 24](https://nodejs.org/en/about/releases/)

## Installing & Using Yarn

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,12 +181,12 @@ docker pull chronograf:latest

### From Source

* Chronograf works with go 1.18+, node 12 LTS, and yarn 1.7+.
* Chronograf works with go 1.18+, node 24 LTS, and yarn 1.7+.
* Chronograf requires [Kapacitor](https://github.com/influxdata/kapacitor)
1.5.x+ to create and store alerts.

1. [Install Go 1.18](https://golang.org/doc/install)
1. [Install Node (version 16 LTS)](https://nodejs.org/en/about/releases/)
1. [Install Node (version 24 LTS)](https://nodejs.org/en/about/releases/)
1. [Install yarn](https://yarnpkg.com/docs/install)
1. [Setup your GOPATH](https://golang.org/doc/code.html#GOPATH)
1. Build the Chronograf package:
Expand Down
2 changes: 1 addition & 1 deletion etc/scripts/install-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pip3 install boto requests python-jose --upgrade
gem install dotenv -v 2.8.1
gem install fpm

NODE_VERSION=v16.14.2
NODE_VERSION=v24.13.0
wget -q https://nodejs.org/dist/${NODE_VERSION}/node-${NODE_VERSION}-linux-x64.tar.gz; \
mkdir /usr/local/node; \
tar -xvf node-${NODE_VERSION}-linux-x64.tar.gz -C /usr/local/node --strip-components=1; \
Expand Down
3 changes: 1 addition & 2 deletions ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,9 @@
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-runner-eslint": "^1.0.1",
"node-sass": "^7.0.0",
"parcel": "^2.6.2",
"prettier": "2.2.1",
"sass": "^1.26.3",
"sass": "^1.97.3",
"tslib": "^1.9.0",
"typescript": "^4.2.2"
},
Expand Down
Loading
Loading