@danielx/civet 0.8.7 → 0.8.9

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,26 @@ 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.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))
8
+ * Range loops can provide custom skip via `by` (not just in CoffeeScript) [[#1505](https://github.com/DanielXMoore/Civet/pull/1505)]
9
+ * LSP completions and hover info up-to-date instead of lagging [[#1500](https://github.com/DanielXMoore/Civet/pull/1500)]
10
+ * Fix LSP by dropping `triggerCharacters` which requires fault-tolerant compile [[#1512](https://github.com/DanielXMoore/Civet/pull/1512)]
11
+ * Fix LSP: `resolve` of `WithResolver` doesn't return a `Promise` [[#1514](https://github.com/DanielXMoore/Civet/pull/1514)]
12
+ * `for some/every/count/sum/product/min/max` reduction loops, empty for loop default behavior, fix unwrapping multiple loops ina row [[#1509](https://github.com/DanielXMoore/Civet/pull/1509)]
13
+ * Allow `|> throw` [[#1517](https://github.com/DanielXMoore/Civet/pull/1517)]
14
+ * Multiple generator loops at top level, unwrap top-level iterations, fix implicit loop bodies [[#1518](https://github.com/DanielXMoore/Civet/pull/1518)]
15
+ * `T?` type shorthand in named tuple elements [[#1521](https://github.com/DanielXMoore/Civet/pull/1521)]
16
+ * `:"symbol name"` symbol shorthand with quotes [[#1522](https://github.com/DanielXMoore/Civet/pull/1522)]
17
+ * `await`/`throw` with placeholders in pipeline, trailing `|> throw` makes statement without IIFE [[#1520](https://github.com/DanielXMoore/Civet/pull/1520)]
18
+ * `async` functions and arrow types auto-wrap return type in `Promise` [[#1523](https://github.com/DanielXMoore/Civet/pull/1523)]
19
+ * Fix typing of `return.value` in `async` function [[#1524](https://github.com/DanielXMoore/Civet/pull/1524)]
20
+
21
+ ## 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))
22
+ * `:symbol` shorthand for `Symbol.symbol` or `Symbol.for("symbol")` [[#1498](https://github.com/DanielXMoore/Civet/pull/1498)]
23
+ * preventExtensions on comptime functions [[#1494](https://github.com/DanielXMoore/Civet/pull/1494)]
24
+ * Fix unplugin's webpack mode: `resolve.alias`, virtual modules [[#1501](https://github.com/DanielXMoore/Civet/pull/1501)]
25
+ * `for` loops can filter via `when` conditions (not just in CoffeeScript mode) [[#1502](https://github.com/DanielXMoore/Civet/pull/1502)]
26
+
7
27
  ## 0.8.7 (2024-10-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.8.6...v0.8.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.8.7))
8
28
  * Fix one-line arrow functions with `@` arguments [[#1490](https://github.com/DanielXMoore/Civet/pull/1490)]
9
29
  * Fix `Promise<void>` detection with implicit type arguments [[#1491](https://github.com/DanielXMoore/Civet/pull/1491)]
@@ -676,18 +696,18 @@ as well as a full diff and commit list.
676
696
  * Add nextjs unplugin example [[#676](https://github.com/DanielXMoore/Civet/pull/676)]
677
697
  * New try at indented application [[#677](https://github.com/DanielXMoore/Civet/pull/677)]
678
698
  * Convert to more Civet-y style [[#683](https://github.com/DanielXMoore/Civet/pull/683)]
679
- * Fixes #664 [[#679](https://github.com/DanielXMoore/Civet/pull/679)]
680
- * fix #655 [[#680](https://github.com/DanielXMoore/Civet/pull/680)]
699
+ * Fix `/*...*/` after dot in access [[#679](https://github.com/DanielXMoore/Civet/pull/679)]
700
+ * Fix objects immediately inside braced blocks [[#680](https://github.com/DanielXMoore/Civet/pull/680)]
681
701
  * Fixes #682; Fixes #653; Improved arrow function const assignment [[#687](https://github.com/DanielXMoore/Civet/pull/687)]
682
- * Fix #635: Identity function shorthand [[#688](https://github.com/DanielXMoore/Civet/pull/688)]
702
+ * `(&)` identity function shorthand [[#688](https://github.com/DanielXMoore/Civet/pull/688)]
683
703
 
684
704
  ## 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))
685
705
  * 🐈🐈🐈 [[#657](https://github.com/DanielXMoore/Civet/pull/657)]
686
706
  * Added void to improve types and opt out of implicit returns [[#672](https://github.com/DanielXMoore/Civet/pull/672)]
687
- * Fix #666 [[#671](https://github.com/DanielXMoore/Civet/pull/671)]
688
- * Fixes #669 [[#673](https://github.com/DanielXMoore/Civet/pull/673)]
689
- * Fixes #662 [[#674](https://github.com/DanielXMoore/Civet/pull/674)]
690
- * Fix #663 [[#670](https://github.com/DanielXMoore/Civet/pull/670)]
707
+ * Add missing semicolon after one-line `if` branch [[#671](https://github.com/DanielXMoore/Civet/pull/671)]
708
+ * Fix hoisting of implicitly returned `function` [[#673](https://github.com/DanielXMoore/Civet/pull/673)]
709
+ * Fix implicit function calls with spread on following line [[#674](https://github.com/DanielXMoore/Civet/pull/674)]
710
+ * Fix arrow function body closed by closing parenthesis [[#670](https://github.com/DanielXMoore/Civet/pull/670)]
691
711
  * Add civet unplugin [[#632](https://github.com/DanielXMoore/Civet/pull/632)]
692
712
 
693
713
  ## 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))