Skip to content
Open
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 .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ orbs:
# Shared configuration
defaults:
elixir_version: &elixir_version "1.18.3-otp-27"
nodejs_version: &nodejs_version "22.12.0"
nodejs_version: &nodejs_version "24.14.0"
docker_elixir: &docker_elixir
- image: elixir:1.18.3-otp-27
docker_elixir_postgres: &docker_elixir_postgres
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,5 @@ assets/test-results

.claude/settings.local.json
test-results
assets/coverage
assets/coverage
.envrc
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
erlang 27.3.3
elixir 1.18.3-otp-27
nodejs 22.12.0
nodejs 24.14.0
k6 0.49.0
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ and this project adheres to

### Changed

- Bumped Node.js from 22.12.0 to 24.14.0 and ws-worker from 1.23.1 to 1.23.3
(includes ESM resolve hook for Node 24 compatibility)
[#4603](https://github.com/OpenFn/lightning/pull/4603)
- Made dev and test database names configurable via `DEV_DATABASE_NAME` and
`TEST_DATABASE_NAME` environment variables
[#4603](https://github.com/OpenFn/lightning/pull/4603)

### Fixed

## [2.16.1] - 2026-04-07
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
ARG ELIXIR_VERSION=1.18.3
ARG OTP_VERSION=27.3.3
ARG DEBIAN_VERSION=bookworm-20250428
ARG NODE_VERSION=22.12.0
ARG NODE_VERSION=24.14.0
ARG ERL_FLAGS

ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-dev
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
ARG ELIXIR_VERSION=1.18.3
ARG OTP_VERSION=27.3.3
ARG DEBIAN_VERSION=bookworm-20250428
ARG NODE_VERSION=22.12.0
ARG NODE_VERSION=24.14.0

ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}"
ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}"
Expand Down
Loading
Loading