Skip to content

Commit 8eb9aa9

Browse files
author
jarvisjiang
committed
chore(release): 1.4.1
- Fix unhandled promise rejections in callbacks and stream reading - Upgrade dependencies
1 parent a11f787 commit 8eb9aa9

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.4.1] - 2025-12-25
9+
10+
### Fixed
11+
12+
- Fix unhandled promise rejections when `onChunk` or `onProgress` callbacks throw errors
13+
- Fix unhandled promise rejections during stream read errors
14+
15+
### Changed
16+
17+
- Upgrade `happy-rusty` dependency to ^1.6.2
18+
- Upgrade `typescript-eslint` to ^8.50.1
19+
820
## [1.4.0] - 2025-12-19
921

1022
### Changed
@@ -107,7 +119,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
107119
- Timeout support
108120
- Rust-like Result type error handling via `happy-rusty` library
109121

110-
[Unreleased]: https://github.com/JiangJie/fetch-t/compare/v1.4.0...HEAD
122+
[1.4.1]: https://github.com/JiangJie/fetch-t/compare/v1.4.0...v1.4.1
111123
[1.4.0]: https://github.com/JiangJie/fetch-t/compare/v1.3.3...v1.4.0
112124
[1.3.3]: https://github.com/JiangJie/fetch-t/compare/v1.3.2...v1.3.3
113125
[1.3.2]: https://github.com/JiangJie/fetch-t/compare/v1.3.1...v1.3.2

jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://jsr.io/schema/config-file.v1.json",
33
"name": "@happy-ts/fetch-t",
44
"license": "MIT",
5-
"version": "1.4.0",
5+
"version": "1.4.1",
66
"exports": "./src/mod.ts",
77
"imports": {
88
"happy-rusty": "npm:happy-rusty@^1.6.1",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Type-safe Fetch API wrapper with abortable requests, timeout support, progress tracking, and Rust-like Result error handling.",
44
"author": "[email protected]",
55
"license": "MIT",
6-
"version": "1.4.0",
6+
"version": "1.4.1",
77
"type": "module",
88
"main": "dist/main.cjs",
99
"module": "dist/main.mjs",

0 commit comments

Comments
 (0)