@equinor/fusion-framework-vite-plugin-spa 1.0.0 → 1.1.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 +56 -0
- package/dist/esm/version.js +1 -1
- package/dist/html/bootstrap.js +955 -47
- package/dist/html/bootstrap.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/html/index.html.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +5 -5
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,61 @@
|
|
|
1
1
|
# @equinor/fusion-framework-vite-plugin-spa
|
|
2
2
|
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#3349](https://github.com/equinor/fusion-framework/pull/3349) [`c511123`](https://github.com/equinor/fusion-framework/commit/c511123c835e24e9ddefcc4c47c2455f5df12087) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump vite from 6.x to 7.1.5
|
|
8
|
+
|
|
9
|
+
Major version update of Vite build tool across all packages. This update includes:
|
|
10
|
+
|
|
11
|
+
- Enhanced build performance and caching
|
|
12
|
+
- Better error reporting with code frames
|
|
13
|
+
- Improved TypeScript integration
|
|
14
|
+
- Updated plugin ecosystem compatibility
|
|
15
|
+
- New development server features
|
|
16
|
+
|
|
17
|
+
### Links
|
|
18
|
+
|
|
19
|
+
- [Vite 7.1.5 Release Notes](https://github.com/vitejs/vite/releases/tag/v7.1.5)
|
|
20
|
+
- [Vite 7.x Migration Guide](https://vitejs.dev/guide/migration)
|
|
21
|
+
|
|
22
|
+
## 1.0.1
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- [#3381](https://github.com/equinor/fusion-framework/pull/3381) [`bae9c95`](https://github.com/equinor/fusion-framework/commit/bae9c9554f335d0384b864436874bded47d00ed8) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update rollup from 4.49.0 to 4.50.2
|
|
27
|
+
|
|
28
|
+
- Updated rollup dependency via vite transitive dependency
|
|
29
|
+
- Includes bug fixes for tree-shaking array destructuring patterns
|
|
30
|
+
- Performance improvements and platform support updates
|
|
31
|
+
- No breaking changes - backward compatible update
|
|
32
|
+
|
|
33
|
+
- [#2910](https://github.com/equinor/fusion-framework/pull/2910) [`07cc985`](https://github.com/equinor/fusion-framework/commit/07cc9857e1427b574e011cc319518e701dba784d) Thanks [@dependabot](https://github.com/apps/dependabot)! - Updated vitest from 2.1.9 to 3.2.4 across all packages.
|
|
34
|
+
|
|
35
|
+
## Breaking Changes
|
|
36
|
+
|
|
37
|
+
- **Node.js Requirements**: Requires Node.js 18+ (already satisfied)
|
|
38
|
+
- **Vite Compatibility**: Updated to work with Vite 7.x (already using Vite 7.1.5)
|
|
39
|
+
- **Snapshot Format**: Snapshots now use backtick quotes (\`) instead of single quotes
|
|
40
|
+
- **Coverage API**: New coverage methods `enableCoverage()` and `disableCoverage()`
|
|
41
|
+
- **TypeScript Support**: Enhanced TypeScript integration and type definitions
|
|
42
|
+
|
|
43
|
+
## Security Updates
|
|
44
|
+
|
|
45
|
+
- CVE-2025-24963: Browser mode serves arbitrary files (fixed in 2.1.9)
|
|
46
|
+
- CVE-2025-24964: Remote Code Execution vulnerability (fixed in 2.1.9)
|
|
47
|
+
|
|
48
|
+
## Migration Notes
|
|
49
|
+
|
|
50
|
+
- Test snapshots may need regeneration due to quote format changes
|
|
51
|
+
- Some test configurations might need updates for new TypeScript support
|
|
52
|
+
- Peer dependency warnings for @vitest/coverage-v8 are expected and safe to ignore
|
|
53
|
+
|
|
54
|
+
## Links
|
|
55
|
+
|
|
56
|
+
- [Vitest 3.0 Migration Guide](https://vitest.dev/guide/migration)
|
|
57
|
+
- [Vitest 3.2.4 Release Notes](https://github.com/vitest-dev/vitest/releases/tag/v3.2.4)
|
|
58
|
+
|
|
3
59
|
## 1.0.0
|
|
4
60
|
|
|
5
61
|
### Major Changes
|
package/dist/esm/version.js
CHANGED