@ndriadev/futurable 2.3.5 → 3.0.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 +43 -0
- package/README.md +463 -145
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +2915 -143
- package/dist/index.d.mts +2915 -143
- package/dist/index.d.ts +2915 -143
- package/dist/index.mjs +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.0.0](https://github.com/nDriaDev/vite-plugin-universal-api/releases/tag/v3.0.0) - 2026-02-16
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- safe method implementation ([992ad49](https://github.com/nDriaDev/vite-plugin-universal-api/commit/992ad49))
|
|
8
|
+
- lazy futurable implementation ([d75f0d2](https://github.com/nDriaDev/vite-plugin-universal-api/commit/d75f0d2))
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
- futurable task test ([1868b39](https://github.com/nDriaDev/vite-plugin-universal-api/commit/1868b39))
|
|
13
|
+
- lint ([01bec2e](https://github.com/nDriaDev/vite-plugin-universal-api/commit/01bec2e))
|
|
14
|
+
- futurable constructor ([bcc5b61](https://github.com/nDriaDev/vite-plugin-universal-api/commit/bcc5b61))
|
|
15
|
+
- internal signal handling ([1cd035c](https://github.com/nDriaDev/vite-plugin-universal-api/commit/1cd035c))
|
|
16
|
+
- withResolvers cancel binding ([62ad1b8](https://github.com/nDriaDev/vite-plugin-universal-api/commit/62ad1b8))
|
|
17
|
+
- polling error handler ([67f3712](https://github.com/nDriaDev/vite-plugin-universal-api/commit/67f3712))
|
|
18
|
+
|
|
19
|
+
### Performance Improvements
|
|
20
|
+
|
|
21
|
+
- performance improvements ([8262198](https://github.com/nDriaDev/vite-plugin-universal-api/commit/8262198))
|
|
22
|
+
|
|
23
|
+
### Code Refactoring
|
|
24
|
+
|
|
25
|
+
- riorganize code ([613bef7](https://github.com/nDriaDev/vite-plugin-universal-api/commit/613bef7))
|
|
26
|
+
- doc e code refacotring ([0a4f15c](https://github.com/nDriaDev/vite-plugin-universal-api/commit/0a4f15c))
|
|
27
|
+
|
|
28
|
+
### Documentation
|
|
29
|
+
|
|
30
|
+
- update README ([dac71e8](https://github.com/nDriaDev/vite-plugin-universal-api/commit/dac71e8))
|
|
31
|
+
- add futurableTask documentation pages ([eacd451](https://github.com/nDriaDev/vite-plugin-universal-api/commit/eacd451))
|
|
32
|
+
- add futurableTask documentation pages ([aa53577](https://github.com/nDriaDev/vite-plugin-universal-api/commit/aa53577))
|
|
33
|
+
- fix documentation ([fda9ba7](https://github.com/nDriaDev/vite-plugin-universal-api/commit/fda9ba7))
|
|
34
|
+
|
|
35
|
+
### Tests
|
|
36
|
+
|
|
37
|
+
- replace jest with vitest ([864cc5e](https://github.com/nDriaDev/vite-plugin-universal-api/commit/864cc5e))
|
|
38
|
+
- futurabletask test ([9317ad0](https://github.com/nDriaDev/vite-plugin-universal-api/commit/9317ad0))
|
|
39
|
+
|
|
40
|
+
### Chores
|
|
41
|
+
|
|
42
|
+
- update dependencies ([f229da8](https://github.com/nDriaDev/vite-plugin-universal-api/commit/f229da8))
|
|
43
|
+
- update tsconfig ([e71f059](https://github.com/nDriaDev/vite-plugin-universal-api/commit/e71f059))
|
|
44
|
+
- update build configuration ([65891a2](https://github.com/nDriaDev/vite-plugin-universal-api/commit/65891a2))
|
|
45
|
+
|
|
3
46
|
## [2.3.5](https://github.com/nDriaDev/vite-plugin-universal-api/releases/tag/v2.3.5) - 2026-02-06
|
|
4
47
|
|
|
5
48
|
- Initial release
|