@danielx/civet 0.8.8 → 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,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.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
+
7
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))
8
22
  * `:symbol` shorthand for `Symbol.symbol` or `Symbol.for("symbol")` [[#1498](https://github.com/DanielXMoore/Civet/pull/1498)]
9
23
  * preventExtensions on comptime functions [[#1494](https://github.com/DanielXMoore/Civet/pull/1494)]
@@ -682,18 +696,18 @@ as well as a full diff and commit list.
682
696
  * Add nextjs unplugin example [[#676](https://github.com/DanielXMoore/Civet/pull/676)]
683
697
  * New try at indented application [[#677](https://github.com/DanielXMoore/Civet/pull/677)]
684
698
  * 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)]
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)]
687
701
  * 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)]
702
+ * `(&)` identity function shorthand [[#688](https://github.com/DanielXMoore/Civet/pull/688)]
689
703
 
690
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))
691
705
  * 🐈🐈🐈 [[#657](https://github.com/DanielXMoore/Civet/pull/657)]
692
706
  * 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)]
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)]
697
711
  * Add civet unplugin [[#632](https://github.com/DanielXMoore/Civet/pull/632)]
698
712
 
699
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))