Skip to content

Commit 40b1614

Browse files
authored
Bump to v0.11.0, update CHANGELOG.md & Example (swiftwasm#143)
I had to remove SwiftWasm 5.3 and 5.4 from CI because OpenCombine/OpenCombine#225 is reproducible with all code, not just OpenCombine, with old toolchains when Xcode 13.1 is installed. I've also updated `Example` code to try using `fetch` with `async`/`await` and a section with a simple guide for this to `README.md` Node.js and npm dependencies together with webpack.js config in `Example` directory were also updated. * Bump to v0.11.0, update `CHANGELOG.md` & `Example` * Add simple `async`/`await` guide to `README.md` * Use `wasm-5.5-SNAPSHOT-2021-11-20-a` * Update `CHANGELOG.md` * Update `.swift-version` * Add acknowledgements to `CHANGELOG.md`
1 parent 9e2f414 commit 40b1614

File tree

11 files changed

+3282
-8191
lines changed

11 files changed

+3282
-8191
lines changed

.swift-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
wasm-5.3.0-RELEASE
1+
wasm-5.5-SNAPSHOT-2021-11-20-a

CHANGELOG.md

+36
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
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+
137
# 0.10.1 (29 April 2021)
238

339
This is a minor patch release that includes updates to our dependencies and minor documentation

Example/JavaScriptKitExample/Package.swift

+9-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,13 @@ let package = Package(
1010
),
1111
],
1212
dependencies: [.package(name: "JavaScriptKit", path: "../../")],
13-
targets: [.target(name: "JavaScriptKitExample", dependencies: ["JavaScriptKit"])]
13+
targets: [
14+
.target(
15+
name: "JavaScriptKitExample",
16+
dependencies: [
17+
"JavaScriptKit",
18+
.product(name: "JavaScriptEventLoop", package: "JavaScriptKit")
19+
]
20+
)
21+
]
1422
)
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import JavaScriptKit
2+
import JavaScriptEventLoop
23

34
let alert = JSObject.global.alert.function!
45
let document = JSObject.global.document
@@ -8,10 +9,40 @@ divElement.innerText = "Hello, world"
89
_ = document.body.appendChild(divElement)
910

1011
var buttonElement = document.createElement("button")
11-
buttonElement.innerText = "Click me!"
12-
let listener = JSClosure { _ in
12+
buttonElement.innerText = "Alert demo"
13+
buttonElement.onclick = .object(JSClosure { _ in
1314
alert("Swift is running on browser!")
14-
}
15-
buttonElement.onclick = .object(listener)
15+
return .undefined
16+
})
1617

1718
_ = document.body.appendChild(buttonElement)
19+
20+
private let jsFetch = JSObject.global.fetch.function!
21+
func fetch(_ url: String) -> JSPromise {
22+
JSPromise(jsFetch(url).object!)!
23+
}
24+
25+
JavaScriptEventLoop.installGlobalExecutor()
26+
27+
struct Response: Decodable {
28+
let uuid: String
29+
}
30+
31+
var asyncButtonElement = document.createElement("button")
32+
asyncButtonElement.innerText = "Fetch UUID demo"
33+
asyncButtonElement.onclick = .object(JSClosure { _ in
34+
Task {
35+
do {
36+
let response = try await fetch("https://httpbin.org/uuid").value
37+
let json = try await JSPromise(response.json().object!)!.value
38+
let parsedResponse = try JSValueDecoder().decode(Response.self, from: json)
39+
alert(parsedResponse.uuid)
40+
} catch {
41+
print(error)
42+
}
43+
}
44+
45+
return .undefined
46+
})
47+
48+
_ = document.body.appendChild(asyncButtonElement)

0 commit comments

Comments
 (0)