Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
## Changelog


# v0.6.1 May 31st, 2026

## Changelog

- [#517](https://github.com/nevware21/ts-async/pull/517) [CHORE] Address issues with `/*#__PURE__*/` annotations placed inside parens causing Rolldown/Vite 8 issues
- /* #__PURE__*/ annotations in the published ESM/ES5 bundles are positioned inside the wrapping parentheses, between the open paren and the annotated expression. Rolldown, used by Vite 8 cannot associate the annotation with the expression that follows it, so the annotation is silently ignored and dead-code elimination does not kick in for the affected values.
- [#516](https://github.com/nevware21/ts-async/pull/516) [TASK] Update changelog

For full details see [v0.6.0...v0.6.1](https://github.com/nevware21/ts-async/compare/v0.6.0...v0.6.1)

# v0.6.0 May 30th, 2026

## Changelog
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Install the npm packare: `npm install @nevware21/ts-async --save`
> It is suggested / recommended that you use the following definition in your `package.json` so that you are compatible with any future releases as they become available
> we do not intend to make ANY known breaking changes moving forward until v2.x
> ```json
> "@nevware21/ts-async": ">= 0.6.0 < 2.x"
> "@nevware21/ts-async": ">= 0.6.1 < 2.x"
> ```

And then just import the helpers and use them.
Expand Down
2 changes: 1 addition & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nevware21/ts-async",
"description": "support for asynchronous development with a Promise based task Scheduler, several different Promise implementations (synchronous, idle, asynchronous and native runtime wrappers), await helpers, and aliases all built and tested using TypeScript.",
"version": "0.6.0",
"version": "0.6.1",
"homepage": "https://github.com/nevware21/ts-async",
"funding": [
{
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nevware21/ts-async",
"description": "support for asynchronous development with a Promise based task Scheduler, several different Promise implementations (synchronous, idle, asynchronous and native runtime wrappers), await helpers, and aliases all built and tested using TypeScript.",
"version": "0.6.0",
"version": "0.6.1",
"homepage": "https://github.com/nevware21/ts-async",
"funding": [
{
Expand Down