You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,20 @@
1
1
# Opal-RSpec Changelog
2
2
3
+
## 1.0.0.alpha1 - 2022-11-11
4
+
5
+
- Drop support for anything below Opal v1.6.alpha1
6
+
7
+
- Update to the latest RSpec versions
8
+
9
+
- Vendor-in `diff-lcs`
10
+
11
+
- Rework the async logic to use the `await` feature of Opal
12
+
* If you use async features, it's crucial to use a `# await: *await*` magic comment (this will cause any call to a method containing an `await` word to be compiled with an `await` ES8 keyword)
13
+
* Both `let` and `subject` that return a promise (ie. are async) must be referenced with an `.await` method
14
+
* In `around` blocks, you must call `example.run_await` instead of just `example.run`
15
+
* Only `PromiseV2` is supported (`PromiseV1` may work, but you should migrate your application to use `PromiseV2` nevertheless, in Opal 2.0 it will become the default)
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -252,7 +252,7 @@ Limitations:
252
252
Changes since 1.0:
253
253
254
254
* If you use async features, it's crucial to use a `# await: *await*` magic comment (this will cause any call to a method containing an `await` word to be compiled with an `await` ES8 keyword)
255
-
* Both `let` and `subject` that return a promise (ie. are async; also if they) must be referenced with an `.await` method
255
+
* Both `let` and `subject` that return a promise (ie. are async) must be referenced with an `.await` method
256
256
* In `around` blocks, you must call `example.run_await` instead of just `example.run`
257
257
* Only `PromiseV2` is supported (`PromiseV1` may work, but you should migrate your application to use `PromiseV2` nevertheless, in Opal 2.0 it will become the default)
0 commit comments