happy-rusty 1.9.0 → 1.9.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.
- package/CHANGELOG.md +26 -0
- package/dist/main.cjs +2255 -1453
- package/dist/main.cjs.map +1 -1
- package/dist/main.mjs +2254 -1449
- package/dist/main.mjs.map +1 -1
- package/dist/types.d.ts +54 -103
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.9.2] - 2026-04-12
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- **Performance**: Added `/*#__PURE__*/` annotations to all top-level function call expressions for better tree-shaking support in consumer bundlers
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- **Build**: Migrated `treeshake` config from deprecated `'smallest'` string to object form for Vite 8 (Rolldown) compatibility
|
|
15
|
+
- **Build**: Added `topLevelVar: false` to output options to preserve `const` declarations in bundled output
|
|
16
|
+
|
|
17
|
+
### Chores
|
|
18
|
+
- Upgraded devDependencies: vite, vitest, eslint, typedoc, typescript-eslint
|
|
19
|
+
|
|
20
|
+
## [1.9.1] - 2026-01-16
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
- **Performance**: `Channel` buffer replaced `Array` with `Queue` for O(1) shift operations
|
|
24
|
+
|
|
25
|
+
### Documentation
|
|
26
|
+
- Added `@since` tags to all public APIs
|
|
27
|
+
- Improved JSDoc consistency and formatting
|
|
28
|
+
|
|
29
|
+
### CI
|
|
30
|
+
- Changed JSR publish to trigger on release instead of push to main
|
|
31
|
+
|
|
8
32
|
## [1.9.0] - 2026-01-04
|
|
9
33
|
|
|
10
34
|
### Added
|
|
@@ -270,6 +294,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
270
294
|
- Full TypeScript support
|
|
271
295
|
- Comprehensive API matching Rust's Option and Result
|
|
272
296
|
|
|
297
|
+
[1.9.2]: https://github.com/JiangJie/happy-rusty/compare/v1.9.1...v1.9.2
|
|
298
|
+
[1.9.1]: https://github.com/JiangJie/happy-rusty/compare/v1.9.0...v1.9.1
|
|
273
299
|
[1.9.0]: https://github.com/JiangJie/happy-rusty/compare/v1.8.0...v1.9.0
|
|
274
300
|
[1.8.0]: https://github.com/JiangJie/happy-rusty/compare/v1.7.1...v1.8.0
|
|
275
301
|
[1.7.1]: https://github.com/JiangJie/happy-rusty/compare/v1.7.0...v1.7.1
|