From acc1800ab309f359c199c44da7c561cf07a10da0 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 16 Aug 2026 13:09:13 +0000 Subject: [PATCH] ci: bump functionalscript bootstrap version and nixpkgs snapshot npm's functionalscript moved to 0.45.0, and the nixos-26.05 channel advanced to a newer commit (Node versions it provides are unchanged). Regenerated CI workflow and Nix flakes via `npm run ci-update`. --- .github/workflows/ci.yml | 22 +++++++++++----------- fjs/ci/config/module.f.mjs | 4 ++-- nix/generated/node22/flake.nix | 2 +- nix/generated/node24/flake.nix | 2 +- nix/generated/node26/flake.nix | 2 +- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6be142b68..e9c771bfa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ } }, { - "run": "npm install -g functionalscript@0.44.0" + "run": "npm install -g functionalscript@0.45.0" }, { "uses": "actions/checkout@v7.0.1" @@ -81,7 +81,7 @@ } }, { - "run": "npm install -g functionalscript@0.44.0" + "run": "npm install -g functionalscript@0.45.0" }, { "uses": "actions/checkout@v7.0.1" @@ -122,7 +122,7 @@ } }, { - "run": "npm install -g functionalscript@0.44.0" + "run": "npm install -g functionalscript@0.45.0" }, { "uses": "actions/checkout@v7.0.1" @@ -163,7 +163,7 @@ } }, { - "run": "npm install -g functionalscript@0.44.0" + "run": "npm install -g functionalscript@0.45.0" }, { "uses": "actions/checkout@v7.0.1" @@ -205,7 +205,7 @@ } }, { - "run": "npm install -g functionalscript@0.44.0" + "run": "npm install -g functionalscript@0.45.0" }, { "uses": "actions/checkout@v7.0.1" @@ -258,7 +258,7 @@ } }, { - "run": "npm install -g functionalscript@0.44.0" + "run": "npm install -g functionalscript@0.45.0" }, { "uses": "actions/checkout@v7.0.1" @@ -389,13 +389,13 @@ } }, { - "run": "deno install -g -A --minimum-dependency-age=0 npm:functionalscript@0.44.0" + "run": "deno install -g -A --minimum-dependency-age=0 npm:functionalscript@0.45.0" }, { "uses": "actions/checkout@v7.0.1" }, { - "run": "deno run -A --minimum-dependency-age=0 npm:functionalscript@0.44.0 test" + "run": "deno run -A --minimum-dependency-age=0 npm:functionalscript@0.45.0 test" }, { "run": "deno install --frozen" @@ -415,7 +415,7 @@ } }, { - "run": "bun install -g functionalscript@0.44.0" + "run": "bun install -g functionalscript@0.45.0" }, { "uses": "actions/checkout@v7.0.1" @@ -424,7 +424,7 @@ "run": "bun install --frozen-lockfile" }, { - "run": "bunx functionalscript@0.44.0 test" + "run": "bunx functionalscript@0.45.0 test" }, { "run": "bun test --coverage" @@ -441,7 +441,7 @@ } }, { - "run": "npm install -g functionalscript@0.44.0" + "run": "npm install -g functionalscript@0.45.0" }, { "uses": "actions/checkout@v7.0.1" diff --git a/fjs/ci/config/module.f.mjs b/fjs/ci/config/module.f.mjs index ba99ab436..dc255ae19 100644 --- a/fjs/ci/config/module.f.mjs +++ b/fjs/ci/config/module.f.mjs @@ -25,7 +25,7 @@ export const images = /** @type {const} */({ // published FunctionalScript release; do not tie it to package.json's current // in-repo version. // https://www.npmjs.com/package/functionalscript -export const functionalscript = /** @type {const} */ '0.44.0' +export const functionalscript = /** @type {const} */ '0.45.0' // https://bun.sh/ export const bun = '1.3.14' @@ -53,7 +53,7 @@ export const node = /** @type {const} */({ // https://channels.nixos.org/nixos-26.05/git-revision export const nixpkgs = /** @type {const} */({ ref: 'nixos-26.05', - commit: '9f78f44a87948854445dae0b6bf82b2e87e4efb5', + commit: '02e08985a27c65ffd33d434eeb2e660a2e4dc84d', }) // https://github.com/bytecodealliance/wasmtime/releases diff --git a/nix/generated/node22/flake.nix b/nix/generated/node22/flake.nix index 12f28254e..56505b4f2 100644 --- a/nix/generated/node22/flake.nix +++ b/nix/generated/node22/flake.nix @@ -1,5 +1,5 @@ { - inputs.nixpkgs.url = "github:NixOS/nixpkgs/9f78f44a87948854445dae0b6bf82b2e87e4efb5"; + inputs.nixpkgs.url = "github:NixOS/nixpkgs/02e08985a27c65ffd33d434eeb2e660a2e4dc84d"; outputs = { nixpkgs, ... }: { devShells.aarch64-linux.default = let pkgs = import nixpkgs { diff --git a/nix/generated/node24/flake.nix b/nix/generated/node24/flake.nix index 51f471a15..07a2d50f0 100644 --- a/nix/generated/node24/flake.nix +++ b/nix/generated/node24/flake.nix @@ -1,5 +1,5 @@ { - inputs.nixpkgs.url = "github:NixOS/nixpkgs/9f78f44a87948854445dae0b6bf82b2e87e4efb5"; + inputs.nixpkgs.url = "github:NixOS/nixpkgs/02e08985a27c65ffd33d434eeb2e660a2e4dc84d"; outputs = { nixpkgs, ... }: { devShells.aarch64-linux.default = let pkgs = import nixpkgs { diff --git a/nix/generated/node26/flake.nix b/nix/generated/node26/flake.nix index 6fd614310..56e873d89 100644 --- a/nix/generated/node26/flake.nix +++ b/nix/generated/node26/flake.nix @@ -1,5 +1,5 @@ { - inputs.nixpkgs.url = "github:NixOS/nixpkgs/9f78f44a87948854445dae0b6bf82b2e87e4efb5"; + inputs.nixpkgs.url = "github:NixOS/nixpkgs/02e08985a27c65ffd33d434eeb2e660a2e4dc84d"; outputs = { nixpkgs, ... }: { devShells.aarch64-linux.default = let pkgs = import nixpkgs {