@dudousxd/nestjs-inertia-vite 1.4.2 → 1.5.0

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
  # Changelog — @dudousxd/nestjs-inertia-vite
2
2
 
3
+ ## 1.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#29](https://github.com/DavideCarvalho/nestjs-inertia/pull/29) [`7def22b`](https://github.com/DavideCarvalho/nestjs-inertia/commit/7def22b2df24a472f0e0bcef457aa3b1e60f9fe9) Thanks [@DavideCarvalho](https://github.com/DavideCarvalho)! - A broad set of ecosystem improvements across the server adapter, typed client, codegen, testing, and Vite packages.
8
+
9
+ **Server (`@dudousxd/nestjs-inertia`)**
10
+
11
+ - General flash messages: the flash store now carries arbitrary flash payloads (success, info, warning, etc.) instead of being limited to errors.
12
+ - Stable asset-version fallback: the asset-version provider derives a deterministic fallback version so SSR/CSR markup stays consistent when no explicit version is configured.
13
+ - `matchOn: string | string[]`: partial-reload / scope matching accepts either a single key or an array of keys.
14
+ - `lazy()` deprecation: deprecated usages now emit a warning through the Nest `Logger` to guide migration.
15
+ - SSR streaming: streaming SSR render is supported on both the Express and Fastify adapters, with a retryable SSR loader that falls back to buffered SSR when streaming setup fails.
16
+ - Packaging hygiene: dual ESM/CJS `exports` maps and build config cleaned up across the package set.
17
+
18
+ **Client (`@dudousxd/nestjs-inertia-client`)**
19
+
20
+ - Typed `useForm` end-to-end for React, Vue, and Svelte.
21
+ - Typed `<Deferred>` / `<WhenVisible>` components with shared deferred types across frameworks.
22
+ - Native `router.poll` and prefetch helpers (typed poll + prefetch-route utilities).
23
+
24
+ **Codegen, testing, and Vite**
25
+
26
+ - Codegen extension, testing helpers (Jest + Vitest), and the Vite plugin updated to support the new typed client surface and packaging conventions.
27
+
28
+ ## 1.4.3
29
+
30
+ ### Patch Changes
31
+
32
+ - [`22ece7b`](https://github.com/DavideCarvalho/nestjs-inertia/commit/22ece7bbda97a4db5302677c19314e8663e07e50) - Fix: externalize express, body-parser, and Node built-ins from bundle to prevent "Dynamic require of path is not supported" crash on Node 26.
33
+
3
34
  ## 1.4.2
4
35
 
5
36
  ### Patch Changes