diff --git a/packages/fresh/deno.json b/packages/fresh/deno.json index d73c39c43a6..a4e87d7c228 100644 --- a/packages/fresh/deno.json +++ b/packages/fresh/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/core", - "version": "2.2.0", + "version": "2.2.1", "license": "MIT", "exports": { ".": "./src/mod.ts", @@ -26,7 +26,7 @@ "@std/uuid": "jsr:@std/uuid@^1.0.9", "@types/node": "npm:@types/node@^24.2.1", "esbuild-wasm": "npm:esbuild-wasm@^0.25.11", - "preact": "npm:preact@^10.27.2", + "preact": "npm:preact@^10.28.3", "preact-render-to-string": "npm:preact-render-to-string@^6.6.3" } } diff --git a/packages/init/src/init.ts b/packages/init/src/init.ts index a49edd7a2eb..d362355121a 100644 --- a/packages/init/src/init.ts +++ b/packages/init/src/init.ts @@ -5,11 +5,11 @@ import * as semver from "@std/semver"; import initConfig from "../deno.json" with { type: "json" }; // Keep these as is, as we replace these version in our release script -const FRESH_VERSION = "2.2.0"; +const FRESH_VERSION = "2.2.1"; const FRESH_TAILWIND_VERSION = "1.0.0"; const FRESH_VITE_PLUGIN = "1.0.0"; -const PREACT_VERSION = "10.28.2"; -const PREACT_SIGNALS_VERSION = "2.5.1"; +const PREACT_VERSION = "10.28.3"; +const PREACT_SIGNALS_VERSION = "2.7.1"; const TAILWINDCSS_VERSION = "4.1.10"; const TAILWINDCSS_POSTCSS_VERSION = "4.1.10"; const POSTCSS_VERSION = "8.5.6"; diff --git a/packages/update/deno.json b/packages/update/deno.json index b61a7fa505d..dc5f95c77ed 100644 --- a/packages/update/deno.json +++ b/packages/update/deno.json @@ -1,6 +1,6 @@ { "name": "@fresh/update", - "version": "2.2.0", + "version": "2.2.1", "license": "MIT", "exports": "./src/mod.ts", "exclude": ["**/tmp/*"], diff --git a/packages/update/src/update.ts b/packages/update/src/update.ts index b719880d71f..c223784c693 100644 --- a/packages/update/src/update.ts +++ b/packages/update/src/update.ts @@ -6,9 +6,9 @@ import { ProgressBar } from "@std/cli/unstable-progress-bar"; export const SyntaxKind = tsmorph.ts.SyntaxKind; -export const FRESH_VERSION = "2.2.0"; -export const PREACT_VERSION = "10.28.2"; -export const PREACT_SIGNALS_VERSION = "2.5.1"; +export const FRESH_VERSION = "2.2.1"; +export const PREACT_VERSION = "10.28.3"; +export const PREACT_SIGNALS_VERSION = "2.7.1"; // Function to filter out node_modules and vendor directories from logs const HIDE_FILES = /[\\/]+(node_modules|vendor)[\\/]+/;