@danielx/civet 0.8.8 → 0.8.10

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.
Files changed (5) hide show
  1. package/CHANGELOG.md +29 -7
  2. package/dist/browser.js +3212 -2798
  3. package/dist/main.js +3213 -2799
  4. package/dist/main.mjs +3213 -2799
  5. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,28 @@ 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.8.10 (2024-10-28, [diff](https://github.com/DanielXMoore/Civet/compare/v0.8.9...v0.8.10), [commits](https://github.com/DanielXMoore/Civet/commits/v0.8.10))
8
+ * Fix `sum`/`count`/`each`/`own`/etc. as loop iteration variables [[#1531](https://github.com/DanielXMoore/Civet/pull/1531)]
9
+ * Fix parenthesized `for` expression without body [[#1532](https://github.com/DanielXMoore/Civet/pull/1532)]
10
+ * Ensure space after `for..of/in` [[#1533](https://github.com/DanielXMoore/Civet/pull/1533)]
11
+ * Fix `await` step vs. expression detection in pipeline [[#1535](https://github.com/DanielXMoore/Civet/pull/1535)]
12
+ * Fix `for` loops over `&` placeholder [[#1534](https://github.com/DanielXMoore/Civet/pull/1534)]
13
+ * Check for valid left-hand sides, forbidding lone placeholder [[#1536](https://github.com/DanielXMoore/Civet/pull/1536)]
14
+
15
+ ## 0.8.9 (2024-10-27, [diff](https://github.com/DanielXMoore/Civet/compare/v0.8.8...v0.8.9), [commits](https://github.com/DanielXMoore/Civet/commits/v0.8.9))
16
+ * Range loops can provide custom skip via `by` (not just in CoffeeScript) [[#1505](https://github.com/DanielXMoore/Civet/pull/1505)]
17
+ * LSP completions and hover info up-to-date instead of lagging [[#1500](https://github.com/DanielXMoore/Civet/pull/1500)]
18
+ * Fix LSP by dropping `triggerCharacters` which requires fault-tolerant compile [[#1512](https://github.com/DanielXMoore/Civet/pull/1512)]
19
+ * Fix LSP: `resolve` of `WithResolver` doesn't return a `Promise` [[#1514](https://github.com/DanielXMoore/Civet/pull/1514)]
20
+ * `for some/every/count/sum/product/min/max` reduction loops, empty for loop default behavior, fix unwrapping multiple loops in a row [[#1509](https://github.com/DanielXMoore/Civet/pull/1509)]
21
+ * Allow `|> throw` [[#1517](https://github.com/DanielXMoore/Civet/pull/1517)]
22
+ * Multiple generator loops at top level, unwrap top-level iterations, fix implicit loop bodies [[#1518](https://github.com/DanielXMoore/Civet/pull/1518)]
23
+ * `T?` type shorthand in named tuple elements [[#1521](https://github.com/DanielXMoore/Civet/pull/1521)]
24
+ * `:"symbol name"` symbol shorthand with quotes [[#1522](https://github.com/DanielXMoore/Civet/pull/1522)]
25
+ * `await`/`throw` with placeholders in pipeline, trailing `|> throw` makes statement without IIFE [[#1520](https://github.com/DanielXMoore/Civet/pull/1520)]
26
+ * `async` functions and arrow types auto-wrap return type in `Promise` [[#1523](https://github.com/DanielXMoore/Civet/pull/1523)]
27
+ * Fix typing of `return.value` in `async` function [[#1524](https://github.com/DanielXMoore/Civet/pull/1524)]
28
+
7
29
  ## 0.8.8 (2024-10-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.8.7...v0.8.8), [commits](https://github.com/DanielXMoore/Civet/commits/v0.8.8))
8
30
  * `:symbol` shorthand for `Symbol.symbol` or `Symbol.for("symbol")` [[#1498](https://github.com/DanielXMoore/Civet/pull/1498)]
9
31
  * preventExtensions on comptime functions [[#1494](https://github.com/DanielXMoore/Civet/pull/1494)]
@@ -682,18 +704,18 @@ as well as a full diff and commit list.
682
704
  * Add nextjs unplugin example [[#676](https://github.com/DanielXMoore/Civet/pull/676)]
683
705
  * New try at indented application [[#677](https://github.com/DanielXMoore/Civet/pull/677)]
684
706
  * Convert to more Civet-y style [[#683](https://github.com/DanielXMoore/Civet/pull/683)]
685
- * Fixes #664 [[#679](https://github.com/DanielXMoore/Civet/pull/679)]
686
- * fix #655 [[#680](https://github.com/DanielXMoore/Civet/pull/680)]
707
+ * Fix `/*...*/` after dot in access [[#679](https://github.com/DanielXMoore/Civet/pull/679)]
708
+ * Fix objects immediately inside braced blocks [[#680](https://github.com/DanielXMoore/Civet/pull/680)]
687
709
  * Fixes #682; Fixes #653; Improved arrow function const assignment [[#687](https://github.com/DanielXMoore/Civet/pull/687)]
688
- * Fix #635: Identity function shorthand [[#688](https://github.com/DanielXMoore/Civet/pull/688)]
710
+ * `(&)` identity function shorthand [[#688](https://github.com/DanielXMoore/Civet/pull/688)]
689
711
 
690
712
  ## 0.6.27 (2023-08-31, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.26...v0.6.27), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.27))
691
713
  * 🐈🐈🐈 [[#657](https://github.com/DanielXMoore/Civet/pull/657)]
692
714
  * Added void to improve types and opt out of implicit returns [[#672](https://github.com/DanielXMoore/Civet/pull/672)]
693
- * Fix #666 [[#671](https://github.com/DanielXMoore/Civet/pull/671)]
694
- * Fixes #669 [[#673](https://github.com/DanielXMoore/Civet/pull/673)]
695
- * Fixes #662 [[#674](https://github.com/DanielXMoore/Civet/pull/674)]
696
- * Fix #663 [[#670](https://github.com/DanielXMoore/Civet/pull/670)]
715
+ * Add missing semicolon after one-line `if` branch [[#671](https://github.com/DanielXMoore/Civet/pull/671)]
716
+ * Fix hoisting of implicitly returned `function` [[#673](https://github.com/DanielXMoore/Civet/pull/673)]
717
+ * Fix implicit function calls with spread on following line [[#674](https://github.com/DanielXMoore/Civet/pull/674)]
718
+ * Fix arrow function body closed by closing parenthesis [[#670](https://github.com/DanielXMoore/Civet/pull/670)]
697
719
  * Add civet unplugin [[#632](https://github.com/DanielXMoore/Civet/pull/632)]
698
720
 
699
721
  ## 0.6.26 (2023-08-26, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.25...v0.6.26), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.26))