@danielx/civet 0.10.7 → 0.11.1

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,6 +4,20 @@ 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.11.1 (2025-12-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.11.0...v0.11.1), [commits](https://github.com/DanielXMoore/Civet/commits/v0.11.1))
8
+ * Don't unwrap statement expressions that might be short-circuited [[#1821](https://github.com/DanielXMoore/Civet/pull/1821)]
9
+
10
+ ## 0.11.0 (2025-11-03, [diff](https://github.com/DanielXMoore/Civet/compare/v0.10.7...v0.11.0), [commits](https://github.com/DanielXMoore/Civet/commits/v0.11.0))
11
+ * Fix missing space in terse `get`/`set` definitions [[#1802](https://github.com/DanielXMoore/Civet/pull/1802)]
12
+ * Dynamic `import` expressions support `*`, `default`; they and globs support strings and computed names [[#1806](https://github.com/DanielXMoore/Civet/pull/1806)]
13
+ * Fix TypeScript type for `operator` option [[#1808](https://github.com/DanielXMoore/Civet/pull/1808)]
14
+ * Fix expressionization of `if` in some cases, improve errors from threads [[#1809](https://github.com/DanielXMoore/Civet/pull/1809)]
15
+ * Limit implicit JSX fragments to desired scenarios [[#1811](https://github.com/DanielXMoore/Civet/pull/1811)]
16
+ * Spread `...x` makes `yield*` in `for*` loops, fix `for*` in one-line arrow functions [[#1812](https://github.com/DanielXMoore/Civet/pull/1812)]
17
+ * Fix complex splice assignment by adding parentheses [[#1814](https://github.com/DanielXMoore/Civet/pull/1814)]
18
+ * `if`, `else`, `->`, `=>` treat braced clause as object not block [[#1816](https://github.com/DanielXMoore/Civet/pull/1816)]
19
+ * BREAKING CHANGE: Braced blocks after `->`, `if`, `else` may now return objects in expression/implicit return context. Omit braces to avoid.
20
+
7
21
  ## 0.10.7 (2025-09-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.10.6...v0.10.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.10.7))
8
22
  * Support Unicode BOM: UTF-8, UTF-16 LE and BE [[#1792](https://github.com/DanielXMoore/Civet/pull/1792)]
9
23
  * Fix access detection in braced expressions [[#1794](https://github.com/DanielXMoore/Civet/pull/1794)]