@danielx/civet 0.9.4 → 0.9.6

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 CHANGED
@@ -4,16 +4,31 @@ This changelog is generated automatically by [`build/changelog.civet`](build/cha
4
4
  For each version of Civet, it lists and links to all incorporated PRs,
5
5
  as well as a full diff and commit list.
6
6
 
7
+ ## 0.9.6 (2025-01-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.9.5...v0.9.6), [commits](https://github.com/DanielXMoore/Civet/commits/v0.9.6))
8
+ * `yield*` in pipeline [[#1670](https://github.com/DanielXMoore/Civet/pull/1670)]
9
+ * Fix implicit return of pipeline with `return`/`throw` [[#1676](https://github.com/DanielXMoore/Civet/pull/1676)]
10
+ * Fix immediately called `(op)` in pipeline context [[#1677](https://github.com/DanielXMoore/Civet/pull/1677)]
11
+ * Fix pipe into certain `new` expressions [[#1678](https://github.com/DanielXMoore/Civet/pull/1678)]
12
+ * Improve Playground error styling [[#1679](https://github.com/DanielXMoore/Civet/pull/1679)]
13
+ * Handle invalid precedence in operators [[#1681](https://github.com/DanielXMoore/Civet/pull/1681)]
14
+ * Allow spaces in `(op)`, force spaces in `(in)` and `(instanceof)` [[#1684](https://github.com/DanielXMoore/Civet/pull/1684)]
15
+ * Fix unwrapping of operator sections with placeholders [[#1685](https://github.com/DanielXMoore/Civet/pull/1685)]
16
+
17
+ ## 0.9.5 (2025-01-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.9.4...v0.9.5), [commits](https://github.com/DanielXMoore/Civet/commits/v0.9.5))
18
+ * Named binding patterns `name^pattern` in pattern matching, function parameters, declarations, `for` loops; fix complex bindings in `for` loops [[#1668](https://github.com/DanielXMoore/Civet/pull/1668)]
19
+ * Fix property `::` typing with private fields [[#1669](https://github.com/DanielXMoore/Civet/pull/1669)]
20
+
7
21
  ## 0.9.4 (2024-12-31, [diff](https://github.com/DanielXMoore/Civet/compare/v0.9.3...v0.9.4), [commits](https://github.com/DanielXMoore/Civet/commits/v0.9.4))
8
22
  * Multiple items and spreads in array comprehensions [[#1656](https://github.com/DanielXMoore/Civet/pull/1656)]
9
23
  * `for concat` reduction for concatenating arrays, `for first` reduction for finding elements [[#1657](https://github.com/DanielXMoore/Civet/pull/1657)]
10
24
  * `for` reduction fixes: `each` supports implicit body, `for*` is an error [[#1661](https://github.com/DanielXMoore/Civet/pull/1661)]
11
25
  * Fix top-level `await`/`yield` in `iife` mode (including REPL and Playground) [[#1662](https://github.com/DanielXMoore/Civet/pull/1662)]
12
- * Pattern `name^: value` binds `name`, while `name: value` never does [[#1663](https://github.com/DanielXMoore/Civet/pull/1663)]
26
+ * Pattern `name^: value` binds `name`, while `name: value` never does (except for identifiers) [[#1663](https://github.com/DanielXMoore/Civet/pull/1663)]
13
27
  * BREAKING CHANGE: Pattern matching with `{name: literal}` no longer binds `name`; use `{name^: literal}` to bind.
14
28
  * Parallel testing via `CIVET_THREADS` (Mocha's `--parallel`) [[#1665](https://github.com/DanielXMoore/Civet/pull/1665)]
15
29
  * Range literal improvements: faster, fix doubly strict [[#1664](https://github.com/DanielXMoore/Civet/pull/1664)]
16
30
  * Worker threads fixes and SourceMap revamp [[#1666](https://github.com/DanielXMoore/Civet/pull/1666)]
31
+ * BREAKING CHANGE: Must update VSCode plugin to 0.3.27 and eslint plugin to 0.0.6
17
32
 
18
33
  ## 0.9.3 (2024-12-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.9.2...v0.9.3), [commits](https://github.com/DanielXMoore/Civet/commits/v0.9.3))
19
34
  * `coffeeClasses` improved compatibility: private static class fields via `=`, bound methods via `=>` , `constructor` shouldn't `return` [[#1650](https://github.com/DanielXMoore/Civet/pull/1650)]