|
| 1 | +# 0.11.0 (22 November 2021) |
| 2 | + |
| 3 | +This release adds support for `async`/`await` and SwiftWasm 5.5. Use the new `value` async property |
| 4 | +on a `JSPromise` instance to `await` for its result. You'll have to add a dependency on the new |
| 5 | +`JavaScriptEventLoop` target in your `Package.swift`, `import JavaScriptEventLoop`, and call |
| 6 | +`JavaScriptEventLoop.installGlobalExecutor()` in your code before you start using `await` and `Task` |
| 7 | +APIs. |
| 8 | + |
| 9 | +Additionally, manual memory management API of `JSClosure` has been removed to improve usability. |
| 10 | +This significantly bumps minimum browser version requirements for users of apps depending on |
| 11 | +JavaScriptKit. Previous manual memory management mode is still available though with a special |
| 12 | +compiler flags, see [`README.md`](./README.md) for more details. |
| 13 | + |
| 14 | +This new release of JavaScriptKit may work with SwiftWasm 5.4 and 5.3, but is no longer tested with |
| 15 | +those versions due to compatibility issues introduced on macOS by latest versions of Xcode. |
| 16 | + |
| 17 | +Many thanks to [@j-f1](https://github.com/j-f1), [@kateinoigakukun](https://github.com/kateinoigakukun), |
| 18 | +and [@PatrickPijnappel](https://github.com/PatrickPijnappel) for their contributions to this release! |
| 19 | + |
| 20 | +**Closed issues:** |
| 21 | + |
| 22 | +- Enchancement: Add a link to the docs ([#136](https://github.com/swiftwasm/JavaScriptKit/issues/136)) |
| 23 | +- Use `FinalizationRegistry` to auto-deinit `JSClosure` ([#131](https://github.com/swiftwasm/JavaScriptKit/issues/131)) |
| 24 | +- `make test` crashes due to `JSClosure` memory issues ([#129](https://github.com/swiftwasm/JavaScriptKit/issues/129)) |
| 25 | +- Avoid manual memory management with `JSClosure` ([#106](https://github.com/swiftwasm/JavaScriptKit/issues/106)) |
| 26 | + |
| 27 | +**Merged pull requests:** |
| 28 | + |
| 29 | +- Fix recursion in `JSTypedArray` initializer ([#142](https://github.com/swiftwasm/JavaScriptKit/pull/142)) via [@PatrickPijnappel](https://github.com/PatrickPijnappel) |
| 30 | +- Experimental global executor cooperating with JS event loop ([#141](https://github.com/swiftwasm/JavaScriptKit/pull/141)) via [@kateinoigakukun](https://github.com/kateinoigakukun) |
| 31 | +- Update NPM dependencies of `Example` project ([#140](https://github.com/swiftwasm/JavaScriptKit/pull/140)) via [@MaxDesiatov](https://github.com/MaxDesiatov) |
| 32 | +- Refactor `JSClosure` to leverage `FinalizationRegistry` ([#128](https://github.com/swiftwasm/JavaScriptKit/pull/128)) via [@j-f1](https://github.com/j-f1) |
| 33 | +- Test with the latest 5.5 snapshot ([#138](https://github.com/swiftwasm/JavaScriptKit/pull/138)) via [@MaxDesiatov](https://github.com/MaxDesiatov) |
| 34 | +- Test with multiple toolchain versions ([#135](https://github.com/swiftwasm/JavaScriptKit/pull/135)) via [@kateinoigakukun](https://github.com/kateinoigakukun) |
| 35 | +- Gardening tests ([#133](https://github.com/swiftwasm/JavaScriptKit/pull/133)) via [@kateinoigakukun](https://github.com/kateinoigakukun) |
| 36 | + |
1 | 37 | # 0.10.1 (29 April 2021)
|
2 | 38 |
|
3 | 39 | This is a minor patch release that includes updates to our dependencies and minor documentation
|
|
0 commit comments