jeasx 2.3.1 → 2.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 2026-02-12 - Jeasx 2.3.2 released
4
+
5
+ 🎉 Upgraded to @types/node@25, enabling seamless development with Node 25 while maintaining compatibility for Node 24 users.
6
+
7
+ Dependency updates: `esbuild@0.27.3`, `@types/node@25.2.3`
8
+
3
9
  ## 2026-02-04 - Jeasx 2.3.1 released
4
10
 
5
11
  🎉 Just a patch release to update Fastify to fix [CVE-2026-25224](https://github.com/fastify/fastify/security/advisories/GHSA-mrq3-vjjr-p77c).
@@ -406,7 +412,7 @@ Added two new environment variables (`FASTIFY_DISABLE_REQUEST_LOGGING` and `FAST
406
412
 
407
413
  ## 2024-12-01 - Jeasx 1.1.0 released
408
414
 
409
- 🎉 Migrated from dotenv to dotenv-flow, so you can use NODE_ENV-specific .env\* files (like `.env.development`) to configure different environments for production and development. This is useful to disable caching headers (e.g. via `FASTIFY_STATIC_HEADERS`) in development, as Jeasx applies `FASTIFY_STATIC_HEADERS` in development from now on for a more consistent developer expierence. See updated .env-files in the quickstart-project for an example how to disable caching in development. This is only needed if you have configured `FASTIFY_STATIC_HEADERS` for your existing projects.
415
+ 🎉 Migrated from dotenv to dotenv-flow, so you can use NODE_ENV-specific .env\* files (like `.env.development`) to configure different environments for production and development. This is useful to disable caching headers (e.g. via `FASTIFY_STATIC_HEADERS`) in development, as Jeasx applies `FASTIFY_STATIC_HEADERS` in development from now on for a more consistent developer experience. See updated .env-files in the quickstart-project for an example how to disable caching in development. This is only needed if you have configured `FASTIFY_STATIC_HEADERS` for your existing projects.
410
416
 
411
417
  Bumped default environment variable `ESBUILD_BROWSER_TARGET` to more recent browser versions (e.g. `chrome126, edge126, firefox128, safari17`). If you want to stick with older versions, you can override it via the environment. Learn more about possible values at the esbuild website.
412
418
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jeasx",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "Jeasx - the ease of JSX with the power of SSR",
5
5
  "keywords": [
6
6
  "fastify",
@@ -32,8 +32,8 @@
32
32
  "@fastify/multipart": "9.4.0",
33
33
  "@fastify/static": "9.0.0",
34
34
  "@mdx-js/esbuild": "3.1.1",
35
- "@types/node": "24.10.10",
36
- "esbuild": "0.27.2",
35
+ "@types/node": "25.2.3",
36
+ "esbuild": "0.27.3",
37
37
  "fastify": "5.7.4",
38
38
  "jsx-async-runtime": "2.0.2"
39
39
  }