@danielx/civet 0.11.6 → 0.11.7

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,37 @@ 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.7 (2026-04-16, [diff](https://github.com/DanielXMoore/Civet/compare/v0.11.6...v0.11.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.11.7))
8
+ * Add full repo history to publish script checkout for changelog verification step [[#1930](https://github.com/DanielXMoore/Civet/pull/1930)]
9
+ * Build and test use sourcemaps and default to up to 4 threads [[#1931](https://github.com/DanielXMoore/Civet/pull/1931)]
10
+ * Increase CLI and unplugin test coverage [[#1921](https://github.com/DanielXMoore/Civet/pull/1921)]
11
+ * Fix ternary with trailing ? and indented values [[#1934](https://github.com/DanielXMoore/Civet/pull/1934)]
12
+ * Dev: Improve changelog handling of squash commits [[#1932](https://github.com/DanielXMoore/Civet/pull/1932)]
13
+ * Convert LSP source and build to use Civet [[#1935](https://github.com/DanielXMoore/Civet/pull/1935)]
14
+ * LSP E2E test coverage [[#1937](https://github.com/DanielXMoore/Civet/pull/1937)]
15
+ * LSP fixes for path casing (e.g. Windows) and ts documents [[#1939](https://github.com/DanielXMoore/Civet/pull/1939)]
16
+ * CI tests on Windows too [[#1940](https://github.com/DanielXMoore/Civet/pull/1940)]
17
+ * feat: object shorthand optional properties [[#1938](https://github.com/DanielXMoore/Civet/pull/1938)]
18
+ * Pin parameters `^name` gain `typeof` type inference [[#1942](https://github.com/DanielXMoore/Civet/pull/1942)]
19
+ * Rename LSP test script names [[#1941](https://github.com/DanielXMoore/Civet/pull/1941)]
20
+ * Allow trailing member access after pipeline expressions [[#1943](https://github.com/DanielXMoore/Civet/pull/1943)]
21
+ * Bump vite from 8.0.3 to 8.0.5 [[#1944](https://github.com/DanielXMoore/Civet/pull/1944)]
22
+ * Dev: Fix eslint typecheck [[#1947](https://github.com/DanielXMoore/Civet/pull/1947)]
23
+ * Dev: Update Next.js and Vite dependencies [[#1948](https://github.com/DanielXMoore/Civet/pull/1948)]
24
+ * Bump vite from 5.4.21 to 8.0.5 [[#1946](https://github.com/DanielXMoore/Civet/pull/1946)]
25
+ * eslint internal tweak to use new extension rewriting [[#1952](https://github.com/DanielXMoore/Civet/pull/1952)]
26
+ * Pin properties and pin patterns in arrays use `typeof` typing [[#1951](https://github.com/DanielXMoore/Civet/pull/1951)]
27
+ * Add esCompat flag with esArrowFunction option [[#1949](https://github.com/DanielXMoore/Civet/pull/1949)]
28
+ * Extract LSP server into standalone @danielx/civet-lsp-server package [[#1950](https://github.com/DanielXMoore/Civet/pull/1950)]
29
+ * `esCompat` turns off implicit returns, no longer affects `->` [[#1954](https://github.com/DanielXMoore/Civet/pull/1954)]
30
+ * Feature: Zed Extension [[#1953](https://github.com/DanielXMoore/Civet/pull/1953)]
31
+ * Fix civet-language-server package name, nvim tree-sitter config [[#1955](https://github.com/DanielXMoore/Civet/pull/1955)]
32
+ * LSP: Auto import when selecting completions [[#1956](https://github.com/DanielXMoore/Civet/pull/1956)]
33
+ * Add semantic token provider to Civet LSP [[#1881](https://github.com/DanielXMoore/Civet/pull/1881)]
34
+ * LSP test coverage [[#1957](https://github.com/DanielXMoore/Civet/pull/1957)]
35
+ * Code style and typing fixes [[#1958](https://github.com/DanielXMoore/Civet/pull/1958)]
36
+ * Dev: Unify compiler and LSP code coverage [[#1960](https://github.com/DanielXMoore/Civet/pull/1960)]
37
+
7
38
  ## 0.11.6 (2026-04-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.11.5...v0.11.6), [commits](https://github.com/DanielXMoore/Civet/commits/v0.11.6))
8
39
  * Allow class fields with the same name as modifiers [[#1861](https://github.com/DanielXMoore/Civet/pull/1861)]
9
40
  * Support TypeScript 6+ [[#1865](https://github.com/DanielXMoore/Civet/pull/1865)]
@@ -13,10 +44,45 @@ as well as a full diff and commit list.
13
44
  * Sourcemap sources should be relative to outdir [[#1872](https://github.com/DanielXMoore/Civet/pull/1872)]
14
45
  * Fix double-wrapping of assignment expressions inside explicit parentheses [[#1880](https://github.com/DanielXMoore/Civet/pull/1880)]
15
46
  * Rewrite .ts/.civet in dynamic imports with string literals [[#1877](https://github.com/DanielXMoore/Civet/pull/1877)]
47
+ * Fix one-line arrow dynamic import parsing [[#1884](https://github.com/DanielXMoore/Civet/pull/1884)]
48
+ * Fix parse error for trailing comments in JSX prop function bodies [[#1887](https://github.com/DanielXMoore/Civet/pull/1887)]
49
+ * Organize into pnpm workspaces [[#1886](https://github.com/DanielXMoore/Civet/pull/1886)]
50
+ * Fix semicolon-terminated single-line case clause [[#1889](https://github.com/DanielXMoore/Civet/pull/1889)]
51
+ * Speed up building and testing [[#1879](https://github.com/DanielXMoore/Civet/pull/1879)]
52
+ * Using Civet in parser.hera [[#1876](https://github.com/DanielXMoore/Civet/pull/1876)]
53
+ * Upgrade dev dependencies, resolving dependabot security alerts [[#1891](https://github.com/DanielXMoore/Civet/pull/1891)]
54
+ * Claude Code GitHub Workflow [[#1892](https://github.com/DanielXMoore/Civet/pull/1892)]
16
55
  * Claude Code config [[#1894](https://github.com/DanielXMoore/Civet/pull/1894)]
17
56
  * Claude Code debugging [[#1895](https://github.com/DanielXMoore/Civet/pull/1895)]
57
+ * pnpm overrides for lodash, esbuild, diff security vulnerabilities [[#1897](https://github.com/DanielXMoore/Civet/pull/1897)]
58
+ * Remove gulp pnpm-lock to unify it with the workspace [[#1898](https://github.com/DanielXMoore/Civet/pull/1898)]
59
+ * Update nocache rules to be in sync with grammar [[#1900](https://github.com/DanielXMoore/Civet/pull/1900)]
60
+ * First pass converting parser.hera to Civet code [[#1899](https://github.com/DanielXMoore/Civet/pull/1899)]
61
+ * Fix shorthand @ in destructuring assignments to use this.x directly [[#1901](https://github.com/DanielXMoore/Civet/pull/1901)]
62
+ * Fix implicit object with arrow function body parsed as typed const [[#1873](https://github.com/DanielXMoore/Civet/pull/1873)]
63
+ * test: only post coverage on pull_request to prevent double status [[#1907](https://github.com/DanielXMoore/Civet/pull/1907)]
64
+ * test: add main compiler API test coverage [[#1902](https://github.com/DanielXMoore/Civet/pull/1902)]
65
+ * test: add bundler adapter test coverage [[#1903](https://github.com/DanielXMoore/Civet/pull/1903)]
66
+ * test: add unplugin core module test coverage [[#1906](https://github.com/DanielXMoore/Civet/pull/1906)]
67
+ * test: add browser module test coverage [[#1904](https://github.com/DanielXMoore/Civet/pull/1904)]
68
+ * test: expand config loading test coverage [[#1909](https://github.com/DanielXMoore/Civet/pull/1909)]
69
+ * test: expand CLI argument parsing and output filename coverage [[#1908](https://github.com/DanielXMoore/Civet/pull/1908)]
70
+ * test: add worker-pool test coverage [[#1905](https://github.com/DanielXMoore/Civet/pull/1905)]
71
+ * test: expand esbuild plugin test coverage [[#1910](https://github.com/DanielXMoore/Civet/pull/1910)]
72
+ * test: add ts-diagnostic test coverage [[#1912](https://github.com/DanielXMoore/Civet/pull/1912)]
73
+ * test: add babel plugin test coverage [[#1911](https://github.com/DanielXMoore/Civet/pull/1911)]
18
74
  * Chain sourcemaps in Civet input [[#1896](https://github.com/DanielXMoore/Civet/pull/1896)]
75
+ * Remove test logging clutter [[#1914](https://github.com/DanielXMoore/Civet/pull/1914)]
76
+ * Cache Civet compiles to speed up CI [[#1913](https://github.com/DanielXMoore/Civet/pull/1913)]
77
+ * Fix doubled call to test [[#1918](https://github.com/DanielXMoore/Civet/pull/1918)]
78
+ * Condition gating coveralls isn't working as intended; double status is benign [[#1917](https://github.com/DanielXMoore/Civet/pull/1917)]
79
+ * OIDC publish from GitHub workflow [[#1916](https://github.com/DanielXMoore/Civet/pull/1916)]
80
+ * Infrastructure fixes: cross-env, package config [[#1915](https://github.com/DanielXMoore/Civet/pull/1915)]
81
+ * get max turns from organization variable [[#1920](https://github.com/DanielXMoore/Civet/pull/1920)]
82
+ * LSP tests working again [[#1923](https://github.com/DanielXMoore/Civet/pull/1923)]
83
+ * Fix compiler crash when assigning switch with declaration condition [[#1922](https://github.com/DanielXMoore/Civet/pull/1922)]
19
84
  * Fix CLI tests on Windows [[#1925](https://github.com/DanielXMoore/Civet/pull/1925)]
85
+ * Correct source filenames in esbuild diagnostic errors [[#1924](https://github.com/DanielXMoore/Civet/pull/1924)]
20
86
  * Use .cache/build when building [[#1927](https://github.com/DanielXMoore/Civet/pull/1927)]
21
87
  * Fix sourcemap composition by allowing inexact match [[#1926](https://github.com/DanielXMoore/Civet/pull/1926)]
22
88
  * Release scripts: CI changelog verification, pnpm release [[#1928](https://github.com/DanielXMoore/Civet/pull/1928)]
@@ -927,6 +993,7 @@ as well as a full diff and commit list.
927
993
  * Unify pattern matching and declaration conditions [[#717](https://github.com/DanielXMoore/Civet/pull/717)]
928
994
 
929
995
  ## 0.6.35 (2023-09-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.34...v0.6.35), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.35))
996
+ * Updating civet dep to reap some perf improvement [[#712](https://github.com/DanielXMoore/Civet/pull/712)]
930
997
  * Fix #629: Unary op with late assignment [[#716](https://github.com/DanielXMoore/Civet/pull/716)]
931
998
  * Reference [[#685](https://github.com/DanielXMoore/Civet/pull/685)]
932
999
  * get/set method shorthand [[#637](https://github.com/DanielXMoore/Civet/pull/637)]
@@ -934,6 +1001,7 @@ as well as a full diff and commit list.
934
1001
  * Fix #719: existential property glob and get/set shorthand with existential glob [[#720](https://github.com/DanielXMoore/Civet/pull/720)]
935
1002
 
936
1003
  ## 0.6.34 (2023-09-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.33...v0.6.34), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.34))
1004
+ * Allow more ergonomic require of cjs esbuild plugin [[#713](https://github.com/DanielXMoore/Civet/pull/713)]
937
1005
 
938
1006
  ## 0.6.33 (2023-09-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.32...v0.6.33), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.33))
939
1007
  * Underflowing arrays is a perf killer [[#711](https://github.com/DanielXMoore/Civet/pull/711)]
@@ -965,6 +1033,9 @@ as well as a full diff and commit list.
965
1033
  * `(&)` identity function shorthand [[#688](https://github.com/DanielXMoore/Civet/pull/688)]
966
1034
 
967
1035
  ## 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))
1036
+ * Add Coveralls [[#658](https://github.com/DanielXMoore/Civet/pull/658)]
1037
+ * Update Hera [[#656](https://github.com/DanielXMoore/Civet/pull/656)]
1038
+ * ??? -> unknown [[#659](https://github.com/DanielXMoore/Civet/pull/659)]
968
1039
  * 🐈🐈🐈 [[#657](https://github.com/DanielXMoore/Civet/pull/657)]
969
1040
  * Added void to improve types and opt out of implicit returns [[#672](https://github.com/DanielXMoore/Civet/pull/672)]
970
1041
  * Add missing semicolon after one-line `if` branch [[#671](https://github.com/DanielXMoore/Civet/pull/671)]
@@ -977,12 +1048,16 @@ as well as a full diff and commit list.
977
1048
  * Fix #564 Implement basic const enums in --js mode [[#654](https://github.com/DanielXMoore/Civet/pull/654)]
978
1049
 
979
1050
  ## 0.6.25 (2023-08-25, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.24...v0.6.25), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.25))
1051
+ * Docs add vite-plugin-civetman to Integration [[#650](https://github.com/DanielXMoore/Civet/pull/650)]
1052
+ * basic babel plugin [[#550](https://github.com/DanielXMoore/Civet/pull/550)]
1053
+ * Fix #599 [[#648](https://github.com/DanielXMoore/Civet/pull/648)]
980
1054
  * Initial auto-const [[#649](https://github.com/DanielXMoore/Civet/pull/649)]
981
1055
  * Fix #639 hoistable thick pipe ref decs [[#651](https://github.com/DanielXMoore/Civet/pull/651)]
982
1056
  * Fix #640 implicit return of const function declarations [[#652](https://github.com/DanielXMoore/Civet/pull/652)]
983
1057
 
984
1058
  ## 0.6.24 (2023-08-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.23...v0.6.24), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.24))
985
1059
  * Updated the Bun-related how-to [[#646](https://github.com/DanielXMoore/Civet/pull/646)]
1060
+ * cache2: 2 cache 2 furious [[#645](https://github.com/DanielXMoore/Civet/pull/645)]
986
1061
 
987
1062
  ## 0.6.23 (2023-08-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.22...v0.6.23), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.23))
988
1063
  * Postfix expressions inside indented implicit object literals [[#630](https://github.com/DanielXMoore/Civet/pull/630)]
@@ -1002,6 +1077,8 @@ as well as a full diff and commit list.
1002
1077
 
1003
1078
  ## 0.6.20 (2023-08-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.19...v0.6.20), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.20))
1004
1079
  * Fix tuple-matching behavior [[#608](https://github.com/DanielXMoore/Civet/pull/608)]
1080
+ * Bump semver from 5.7.1 to 5.7.2 in /lsp [[#609](https://github.com/DanielXMoore/Civet/pull/609)]
1081
+ * Bump semver from 6.3.0 to 6.3.1 [[#610](https://github.com/DanielXMoore/Civet/pull/610)]
1005
1082
  * Forbid binary op after newline within SingleLineStatements (e.g. `then`) [[#612](https://github.com/DanielXMoore/Civet/pull/612)]
1006
1083
  * Remove forbidMultiLineImplicitObjectLiteral [[#613](https://github.com/DanielXMoore/Civet/pull/613)]
1007
1084
  * Revamp braced object literals [[#614](https://github.com/DanielXMoore/Civet/pull/614)]
@@ -1021,6 +1098,7 @@ as well as a full diff and commit list.
1021
1098
  * Possessive object access [[#603](https://github.com/DanielXMoore/Civet/pull/603)]
1022
1099
 
1023
1100
  ## 0.6.17 (2023-07-31, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.16...v0.6.17), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.17))
1101
+ * Fix #596. async function expression [[#597](https://github.com/DanielXMoore/Civet/pull/597)]
1024
1102
  * `switch` fixes [[#594](https://github.com/DanielXMoore/Civet/pull/594)]
1025
1103
  * Support indented RHS after binary op [[#600](https://github.com/DanielXMoore/Civet/pull/600)]
1026
1104
  * No implicit return from async function: Promise<void> [[#601](https://github.com/DanielXMoore/Civet/pull/601)]
@@ -1053,80 +1131,124 @@ as well as a full diff and commit list.
1053
1131
  * Support new arrow function types [[#569](https://github.com/DanielXMoore/Civet/pull/569)]
1054
1132
 
1055
1133
  ## 0.6.10 (2023-07-03, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.9...v0.6.10), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.10))
1134
+ * Added optional prefixed union syntax for TypeScript. Fixes #544 [[#556](https://github.com/DanielXMoore/Civet/pull/556)]
1056
1135
  * `not` support outside coffeeCompat mode [[#557](https://github.com/DanielXMoore/Civet/pull/557)]
1057
1136
  * Unicode operators ≤≥≠≢≡≣⩶⩵«»⋙‖⁇∈∉∋∌▷‥…≔→⇒ [[#558](https://github.com/DanielXMoore/Civet/pull/558)]
1058
1137
 
1059
1138
  ## 0.6.9 (2023-06-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.8...v0.6.9), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.9))
1139
+ * Implement config file [[#551](https://github.com/DanielXMoore/Civet/pull/551)]
1060
1140
 
1061
1141
  ## 0.6.8 (2023-06-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.7...v0.6.8), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.8))
1062
1142
  * Function implicit bodies [[#542](https://github.com/DanielXMoore/Civet/pull/542)]
1063
1143
  * Fix implicit calls with bind and decorators [[#545](https://github.com/DanielXMoore/Civet/pull/545)]
1064
1144
  * Fix readonly support in interfaces [[#546](https://github.com/DanielXMoore/Civet/pull/546)]
1145
+ * Bump vite from 4.0.4 to 4.3.9 [[#554](https://github.com/DanielXMoore/Civet/pull/554)]
1146
+ * Fixes #552. Don't hoist decs to bare blocks [[#553](https://github.com/DanielXMoore/Civet/pull/553)]
1065
1147
 
1066
1148
  ## 0.6.7 (2023-06-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.6...v0.6.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.7))
1149
+ * Allow for method and constructor overloading in classes. Fixes #538 [[#540](https://github.com/DanielXMoore/Civet/pull/540)]
1067
1150
 
1068
1151
  ## 0.6.6 (2023-05-31, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.5...v0.6.6), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.6))
1152
+ * Use refs for indexed object shorthand. Fixes #415 [[#537](https://github.com/DanielXMoore/Civet/pull/537)]
1069
1153
 
1070
1154
  ## 0.6.5 (2023-05-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.4...v0.6.5), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.5))
1155
+ * refs for object glob left hand side [[#535](https://github.com/DanielXMoore/Civet/pull/535)]
1071
1156
 
1072
1157
  ## 0.6.4 (2023-05-25, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.3...v0.6.4), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.4))
1158
+ * Moving functions from parser.hera into lib.js [[#531](https://github.com/DanielXMoore/Civet/pull/531)]
1159
+ * Add unary expression processing in ampersand blocks. Fixes #528 [[#532](https://github.com/DanielXMoore/Civet/pull/532)]
1073
1160
 
1074
1161
  ## 0.6.3 (2023-05-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.2...v0.6.3), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.3))
1075
1162
  * Small whitespace fix for trailing splat [[#524](https://github.com/DanielXMoore/Civet/pull/524)]
1163
+ * Fix a typo when loading `civetPlugin` [[#526](https://github.com/DanielXMoore/Civet/pull/526)]
1164
+ * post rest trailing commas and elisions. Fixes #525 [[#530](https://github.com/DanielXMoore/Civet/pull/530)]
1165
+ * ref decs for pattern matching. Fixes #523 [[#529](https://github.com/DanielXMoore/Civet/pull/529)]
1076
1166
 
1077
1167
  ## 0.6.2 (2023-05-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.1...v0.6.2), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.2))
1168
+ * handle non-binding multiple pattern alternatives [[#516](https://github.com/DanielXMoore/Civet/pull/516)]
1169
+ * Pattern matching gather duplicate bindings [[#517](https://github.com/DanielXMoore/Civet/pull/517)]
1170
+ * Pattern spread [[#518](https://github.com/DanielXMoore/Civet/pull/518)]
1078
1171
  * Support splats in type tuples [[#521](https://github.com/DanielXMoore/Civet/pull/521)]
1079
1172
 
1080
1173
  ## 0.6.1 (2023-05-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.0...v0.6.1), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.1))
1081
1174
 
1082
1175
  ## 0.6.0 (2023-05-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.94...v0.6.0), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.0))
1176
+ * more pattern matching [[#510](https://github.com/DanielXMoore/Civet/pull/510)]
1083
1177
 
1084
1178
  ## 0.5.94 (2023-04-15, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.93...v0.5.94), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.94))
1179
+ * Configurable and chainable civet esbuild plugin [[#448](https://github.com/DanielXMoore/Civet/pull/448)]
1180
+ * const type parameters. #456 [[#502](https://github.com/DanielXMoore/Civet/pull/502)]
1085
1181
  * x@y and @@x bind shorthand, plus JSX fixes [[#506](https://github.com/DanielXMoore/Civet/pull/506)]
1086
1182
  * JSX unbraced @ and @@ shorthand [[#507](https://github.com/DanielXMoore/Civet/pull/507)]
1087
1183
  * JSX braceless call/member/glob expressions [[#508](https://github.com/DanielXMoore/Civet/pull/508)]
1088
1184
 
1089
1185
  ## 0.5.93 (2023-04-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.92...v0.5.93), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.93))
1186
+ * Fixes #491 [[#494](https://github.com/DanielXMoore/Civet/pull/494)]
1187
+ * Fix #493 [[#496](https://github.com/DanielXMoore/Civet/pull/496)]
1188
+ * Fixes #488 [[#495](https://github.com/DanielXMoore/Civet/pull/495)]
1189
+ * source-map-support dependency [[#497](https://github.com/DanielXMoore/Civet/pull/497)]
1090
1190
  * Call splice method directly [[#499](https://github.com/DanielXMoore/Civet/pull/499)]
1091
1191
  * Fix sourcemap support from CLI [[#498](https://github.com/DanielXMoore/Civet/pull/498)]
1092
1192
  * Remove tsx after ESM transpilation [[#500](https://github.com/DanielXMoore/Civet/pull/500)]
1093
1193
  * Fix implicit async/* in functions with arguments [[#501](https://github.com/DanielXMoore/Civet/pull/501)]
1094
1194
 
1095
1195
  ## 0.5.92 (2023-03-30, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.91...v0.5.92), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.92))
1196
+ * fix #483 [[#484](https://github.com/DanielXMoore/Civet/pull/484)]
1096
1197
 
1097
1198
  ## 0.5.91 (2023-03-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.90...v0.5.91), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.91))
1098
1199
  * Indentation after await operator [[#475](https://github.com/DanielXMoore/Civet/pull/475)]
1099
1200
  * CLI can run ESM scripts via import [[#477](https://github.com/DanielXMoore/Civet/pull/477)]
1100
1201
  * Inline implicit object literals can't end with comma [[#479](https://github.com/DanielXMoore/Civet/pull/479)]
1202
+ * implicit JSX element [[#482](https://github.com/DanielXMoore/Civet/pull/482)]
1101
1203
 
1102
1204
  ## 0.5.90 (2023-03-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.89...v0.5.90), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.90))
1205
+ * Fixes #469 [[#470](https://github.com/DanielXMoore/Civet/pull/470)]
1206
+ * splices and this assignments in conditional bindings [[#471](https://github.com/DanielXMoore/Civet/pull/471)]
1207
+ * Fixes #293. Await ops [[#472](https://github.com/DanielXMoore/Civet/pull/472)]
1103
1208
 
1104
1209
  ## 0.5.89 (2023-03-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.88...v0.5.89), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.89))
1210
+ * Refactor block indentation [[#465](https://github.com/DanielXMoore/Civet/pull/465)]
1211
+ * Fix #452. Ampersand block trailing members [[#468](https://github.com/DanielXMoore/Civet/pull/468)]
1105
1212
 
1106
1213
  ## 0.5.88 (2023-03-19, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.87...v0.5.88), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.88))
1214
+ * Fixes #461 [[#463](https://github.com/DanielXMoore/Civet/pull/463)]
1215
+ * semi-colon suppresses result push [[#464](https://github.com/DanielXMoore/Civet/pull/464)]
1107
1216
 
1108
1217
  ## 0.5.87 (2023-03-16, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.86...v0.5.87), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.87))
1109
1218
  * Link to Civetman [[#450](https://github.com/DanielXMoore/Civet/pull/450)]
1219
+ * Declarations inside conditionals [[#451](https://github.com/DanielXMoore/Civet/pull/451)]
1110
1220
 
1111
1221
  ## 0.5.86 (2023-03-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.85...v0.5.86), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.86))
1222
+ * @ type parameter with other parameters [[#447](https://github.com/DanielXMoore/Civet/pull/447)]
1112
1223
 
1113
1224
  ## 0.5.85 (2023-03-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.84...v0.5.85), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.85))
1114
1225
  * For loop optimizations and generalizations [[#442](https://github.com/DanielXMoore/Civet/pull/442)]
1115
1226
  * Semicolon-separated statements in blocks [[#443](https://github.com/DanielXMoore/Civet/pull/443)]
1227
+ * TypeTemplateLiterals. Fixes #441 [[#445](https://github.com/DanielXMoore/Civet/pull/445)]
1116
1228
 
1117
1229
  ## 0.5.84 (2023-03-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.83...v0.5.84), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.84))
1230
+ * Fixes #436. Fixed regression in TrailingComment [[#437](https://github.com/DanielXMoore/Civet/pull/437)]
1118
1231
 
1119
1232
  ## 0.5.83 (2023-03-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.82...v0.5.83), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.83))
1120
1233
  * Fix regression in indented application from decorators change. Fixes #434 [[#435](https://github.com/DanielXMoore/Civet/pull/435)]
1121
1234
 
1122
1235
  ## 0.5.82 (2023-03-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.81...v0.5.82), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.82))
1236
+ * Implicit `async` and `*` for functions and methods [[#433](https://github.com/DanielXMoore/Civet/pull/433)]
1123
1237
 
1124
1238
  ## 0.5.81 (2023-03-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.80...v0.5.81), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.81))
1239
+ * Codeblocks!!!!! [[#428](https://github.com/DanielXMoore/Civet/pull/428)]
1240
+ * Replace TrailingComment* with _? except after statement delimiters. [[#430](https://github.com/DanielXMoore/Civet/pull/430)]
1241
+ * ♻️ change grammar.hera to parser.hera [[#432](https://github.com/DanielXMoore/Civet/pull/432)]
1242
+ * Ampersand pipes [[#431](https://github.com/DanielXMoore/Civet/pull/431)]
1125
1243
 
1126
1244
  ## 0.5.80 (2023-03-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.79...v0.5.80), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.80))
1127
1245
  * New top-level statement system [[#414](https://github.com/DanielXMoore/Civet/pull/414)]
1246
+ * Fixes #416: Fix handling of backslash escapes inside strings that convert to template strings [[#417](https://github.com/DanielXMoore/Civet/pull/417)]
1247
+ * Fixes #420 Decorate exported class [[#425](https://github.com/DanielXMoore/Civet/pull/425)]
1248
+ * Use a simple deep copy because structuredClone isn't available on node <17 [[#426](https://github.com/DanielXMoore/Civet/pull/426)]
1128
1249
 
1129
1250
  ## 0.5.79 (2023-02-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.78...v0.5.79), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.79))
1251
+ * Decorators with member and calls [[#413](https://github.com/DanielXMoore/Civet/pull/413)]
1130
1252
 
1131
1253
  ## 0.5.78 (2023-02-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.77...v0.5.78), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.78))
1132
1254
  * Call with unparenthesized iteration expression argument [[#411](https://github.com/DanielXMoore/Civet/pull/411)]
@@ -1134,7 +1256,9 @@ as well as a full diff and commit list.
1134
1256
  ## 0.5.77 (2023-02-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.76...v0.5.77), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.77))
1135
1257
  * async do, async for [[#402](https://github.com/DanielXMoore/Civet/pull/402)]
1136
1258
  * Improve ligature toggles [[#404](https://github.com/DanielXMoore/Civet/pull/404)]
1259
+ * Pipe ref [[#403](https://github.com/DanielXMoore/Civet/pull/403)]
1137
1260
  * Leave plain JSX strings alone, including newlines [[#408](https://github.com/DanielXMoore/Civet/pull/408)]
1261
+ * Pattern Matching [[#409](https://github.com/DanielXMoore/Civet/pull/409)]
1138
1262
  * enum support [[#410](https://github.com/DanielXMoore/Civet/pull/410)]
1139
1263
 
1140
1264
  ## 0.5.76 (2023-02-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.75...v0.5.76), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.76))
@@ -1142,19 +1266,33 @@ as well as a full diff and commit list.
1142
1266
 
1143
1267
  ## 0.5.75 (2023-02-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.74...v0.5.75), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.75))
1144
1268
  * Move Philosophy to civet.dev [[#394](https://github.com/DanielXMoore/Civet/pull/394)]
1269
+ * Parent pointer cleanup [[#395](https://github.com/DanielXMoore/Civet/pull/395)]
1145
1270
  * Prevent indented application in Coffee for loops [[#396](https://github.com/DanielXMoore/Civet/pull/396)]
1146
1271
  * Forbid indented application in first line of array literal [[#397](https://github.com/DanielXMoore/Civet/pull/397)]
1147
1272
  * Automatically await/async expressionized statements with await [[#399](https://github.com/DanielXMoore/Civet/pull/399)]
1148
1273
 
1149
1274
  ## 0.5.74 (2023-02-19, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.73...v0.5.74), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.74))
1275
+ * Aggregate duplicate pattern matching bindings [[#375](https://github.com/DanielXMoore/Civet/pull/375)]
1276
+ * duplicate bindings after rest work [[#377](https://github.com/DanielXMoore/Civet/pull/377)]
1150
1277
  * do expressions wrapping in iffe [[#376](https://github.com/DanielXMoore/Civet/pull/376)]
1278
+ * Fixes #383 [[#384](https://github.com/DanielXMoore/Civet/pull/384)]
1279
+ * Docs: Comparison to JavaScript/TypeScript [[#382](https://github.com/DanielXMoore/Civet/pull/382)]
1280
+ * Fixes #369 [[#385](https://github.com/DanielXMoore/Civet/pull/385)]
1151
1281
  * Write an intro to Civet for the front page [[#386](https://github.com/DanielXMoore/Civet/pull/386)]
1282
+ * #387. Improve thick pipe return; pipe after inline arrow expression [[#388](https://github.com/DanielXMoore/Civet/pull/388)]
1283
+ * Fixes #387 [[#389](https://github.com/DanielXMoore/Civet/pull/389)]
1284
+ * Ligatures font toggle [[#390](https://github.com/DanielXMoore/Civet/pull/390)]
1152
1285
  * Update Hero.vue [[#392](https://github.com/DanielXMoore/Civet/pull/392)]
1153
1286
  * TypeScript non-null declarations [[#393](https://github.com/DanielXMoore/Civet/pull/393)]
1154
1287
 
1155
1288
  ## 0.5.73 (2023-02-15, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.72...v0.5.73), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.73))
1289
+ * Namespace and declare support [[#374](https://github.com/DanielXMoore/Civet/pull/374)]
1156
1290
 
1157
1291
  ## 0.5.72 (2023-02-14, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.71...v0.5.72), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.72))
1292
+ * #346 Unwrap amp blocks [[#370](https://github.com/DanielXMoore/Civet/pull/370)]
1293
+ * implicit return and results aggregation in pattern matching [[#372](https://github.com/DanielXMoore/Civet/pull/372)]
1294
+ * pattern matching expression [[#373](https://github.com/DanielXMoore/Civet/pull/373)]
1295
+ * x[..] slice [[#371](https://github.com/DanielXMoore/Civet/pull/371)]
1158
1296
 
1159
1297
  ## 0.5.71 (2023-02-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.70...v0.5.71), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.71))
1160
1298
  * return.value and return = [[#364](https://github.com/DanielXMoore/Civet/pull/364)]
@@ -1163,12 +1301,14 @@ as well as a full diff and commit list.
1163
1301
 
1164
1302
  ## 0.5.70 (2023-02-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.69...v0.5.70), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.70))
1165
1303
  * Allow label argument in break and continue [[#363](https://github.com/DanielXMoore/Civet/pull/363)]
1304
+ * Fix multiple spread object regression [[#360](https://github.com/DanielXMoore/Civet/pull/360)]
1166
1305
 
1167
1306
  ## 0.5.69 (2023-02-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.68...v0.5.69), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.69))
1168
1307
  * Allow assignments and update operators within assignments and update operators ++/-- [[#353](https://github.com/DanielXMoore/Civet/pull/353)]
1169
1308
  * Support for labeling statements [[#354](https://github.com/DanielXMoore/Civet/pull/354)]
1170
1309
  * Cleanup flag stacks, re-allow stuff inside parens/brackets/braces [[#356](https://github.com/DanielXMoore/Civet/pull/356)]
1171
1310
  * Prevent `case:` from implicit object literal [[#357](https://github.com/DanielXMoore/Civet/pull/357)]
1311
+ * Allow newline before type inside parens [[#358](https://github.com/DanielXMoore/Civet/pull/358)]
1172
1312
 
1173
1313
  ## 0.5.68 (2023-02-09, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.67...v0.5.68), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.68))
1174
1314
  * Inner assignments within assignment chains [[#348](https://github.com/DanielXMoore/Civet/pull/348)]
@@ -1181,32 +1321,52 @@ as well as a full diff and commit list.
1181
1321
  * Support hex and other numbers in ranges [[#345](https://github.com/DanielXMoore/Civet/pull/345)]
1182
1322
 
1183
1323
  ## 0.5.66 (2023-02-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.65...v0.5.66), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.66))
1324
+ * Thicc pipe [[#318](https://github.com/DanielXMoore/Civet/pull/318)]
1184
1325
  * xor/^^ and xnor/!^ operators [[#340](https://github.com/DanielXMoore/Civet/pull/340)]
1185
1326
 
1186
1327
  ## 0.5.65 (2023-02-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.64...v0.5.65), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.65))
1328
+ * Fix #337. Correct RegExp character classes. [[#338](https://github.com/DanielXMoore/Civet/pull/338)]
1187
1329
 
1188
1330
  ## 0.5.64 (2023-02-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.63...v0.5.64), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.64))
1331
+ * Optional dot for object glob [[#331](https://github.com/DanielXMoore/Civet/pull/331)]
1332
+ * Make ampersand optional for some common blocks [[#330](https://github.com/DanielXMoore/Civet/pull/330)]
1189
1333
  * Object globs, v2 [[#333](https://github.com/DanielXMoore/Civet/pull/333)]
1190
1334
  * Fix #332 [[#334](https://github.com/DanielXMoore/Civet/pull/334)]
1191
1335
 
1192
1336
  ## 0.5.63 (2023-02-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.62...v0.5.63), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.63))
1193
1337
  * Improve super property support [[#326](https://github.com/DanielXMoore/Civet/pull/326)]
1338
+ * Object glob patterns obj.{a,b} [[#327](https://github.com/DanielXMoore/Civet/pull/327)]
1339
+ * fix crash on empty [] pattern [[#328](https://github.com/DanielXMoore/Civet/pull/328)]
1194
1340
 
1195
1341
  ## 0.5.62 (2023-02-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.61...v0.5.62), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.62))
1196
1342
  * Tagged string literals become tagged template literals [[#322](https://github.com/DanielXMoore/Civet/pull/322)]
1343
+ * Improve LSP queuing behavior [[#321](https://github.com/DanielXMoore/Civet/pull/321)]
1197
1344
  * Function fixes [[#323](https://github.com/DanielXMoore/Civet/pull/323)]
1198
1345
  * typeof shorthand [[#325](https://github.com/DanielXMoore/Civet/pull/325)]
1199
1346
 
1200
1347
  ## 0.5.61 (2023-02-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.60...v0.5.61), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.61))
1348
+ * Fixes #309 by being stricter about snug vs spaced binary ops [[#314](https://github.com/DanielXMoore/Civet/pull/314)]
1349
+ * Fix #310: Allow empty catch block; catch then; catch/finally cleanup [[#316](https://github.com/DanielXMoore/Civet/pull/316)]
1350
+ * Fix #305: Allow thin arrow in types [[#317](https://github.com/DanielXMoore/Civet/pull/317)]
1201
1351
 
1202
1352
  ## 0.5.60 (2023-02-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.59...v0.5.60), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.60))
1203
1353
  * operator= assignment [[#301](https://github.com/DanielXMoore/Civet/pull/301)]
1354
+ * Added a sponsorship segment to the readme [[#302](https://github.com/DanielXMoore/Civet/pull/302)]
1355
+ * buffering change events to prevent stacking transpilations [[#304](https://github.com/DanielXMoore/Civet/pull/304)]
1356
+ * Fix #306: don't rewrite .ts imports in deno [[#307](https://github.com/DanielXMoore/Civet/pull/307)]
1204
1357
 
1205
1358
  ## 0.5.59 (2023-01-28, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.58...v0.5.59), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.59))
1206
1359
 
1207
1360
  ## 0.5.58 (2023-01-28, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.57...v0.5.58), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.58))
1208
1361
 
1209
1362
  ## 0.5.57 (2023-01-27, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.56...v0.5.57), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.57))
1363
+ * Escape `*/` in `###...###`, document `###` and `coffeeBoolean` [[#288](https://github.com/DanielXMoore/Civet/pull/288)]
1364
+ * Refactor StringLiteral vs. TemplateLiteral [[#294](https://github.com/DanielXMoore/Civet/pull/294)]
1365
+ * wip: pattern matching rules [[#239](https://github.com/DanielXMoore/Civet/pull/239)]
1366
+ * Identifier operators [[#295](https://github.com/DanielXMoore/Civet/pull/295)]
1367
+ * wip object pattern matching [[#296](https://github.com/DanielXMoore/Civet/pull/296)]
1368
+ * pushing flagging props to the limit [[#297](https://github.com/DanielXMoore/Civet/pull/297)]
1369
+ * `not op` for custom infix operator `op` [[#298](https://github.com/DanielXMoore/Civet/pull/298)]
1210
1370
 
1211
1371
  ## 0.5.56 (2023-01-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.55...v0.5.56), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.56))
1212
1372
  * `{x[y]}` shorthand for `{[y]: x[y]}` [[#284](https://github.com/DanielXMoore/Civet/pull/284)]
@@ -1214,9 +1374,11 @@ as well as a full diff and commit list.
1214
1374
  * `not instanceof`, `!<?`, reserve `not` [[#286](https://github.com/DanielXMoore/Civet/pull/286)]
1215
1375
 
1216
1376
  ## 0.5.55 (2023-01-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.54...v0.5.55), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.55))
1377
+ * move beyond tc39 to home page, slight reorder [[#282](https://github.com/DanielXMoore/Civet/pull/282)]
1217
1378
  * Integer property access [[#283](https://github.com/DanielXMoore/Civet/pull/283)]
1218
1379
 
1219
1380
  ## 0.5.54 (2023-01-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.53...v0.5.54), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.54))
1381
+ * Move autolet to nearest statement [[#229](https://github.com/DanielXMoore/Civet/pull/229)]
1220
1382
 
1221
1383
  ## 0.5.53 (2023-01-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.52...v0.5.53), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.53))
1222
1384
  * Fix Init being called too late [[#280](https://github.com/DanielXMoore/Civet/pull/280)]
@@ -1229,19 +1391,33 @@ as well as a full diff and commit list.
1229
1391
  * Insert semicolons between lines that JS would combine [[#277](https://github.com/DanielXMoore/Civet/pull/277)]
1230
1392
 
1231
1393
  ## 0.5.51 (2023-01-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.50...v0.5.51), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.51))
1394
+ * Add simple export tests for require/import of package [[#263](https://github.com/DanielXMoore/Civet/pull/263)]
1395
+ * Change `is` operator to `Object.is` call [[#262](https://github.com/DanielXMoore/Civet/pull/262)]
1396
+ * Interface fixes [[#274](https://github.com/DanielXMoore/Civet/pull/274)]
1232
1397
 
1233
1398
  ## 0.5.50 (2023-01-21, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.49...v0.5.50), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.50))
1399
+ * Change `is in` operator to use `includes` method [[#261](https://github.com/DanielXMoore/Civet/pull/261)]
1400
+ * Braceless type = and implicit inline braceless types [[#264](https://github.com/DanielXMoore/Civet/pull/264)]
1234
1401
 
1235
1402
  ## 0.5.49 (2023-01-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.48...v0.5.49), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.49))
1236
1403
  * Contributing document for getting started with Civet [[#255](https://github.com/DanielXMoore/Civet/pull/255)]
1404
+ * Fixes #256. Add readonly to AccessModifier [[#258](https://github.com/DanielXMoore/Civet/pull/258)]
1405
+ * #156. Improve TS declare lexical bindings [[#259](https://github.com/DanielXMoore/Civet/pull/259)]
1237
1406
 
1238
1407
  ## 0.5.48 (2023-01-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.47...v0.5.48), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.48))
1408
+ * Fixes #251 [[#253](https://github.com/DanielXMoore/Civet/pull/253)]
1239
1409
 
1240
1410
  ## 0.5.47 (2023-01-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.46...v0.5.47), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.47))
1411
+ * Bun civet [[#252](https://github.com/DanielXMoore/Civet/pull/252)]
1241
1412
 
1242
1413
  ## 0.5.46 (2023-01-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.45...v0.5.46), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.46))
1414
+ * Fixes #247 [[#249](https://github.com/DanielXMoore/Civet/pull/249)]
1243
1415
 
1244
1416
  ## 0.5.45 (2023-01-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.44...v0.5.45), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.45))
1417
+ * Wrap object expressions with parentheses at statement level [[#241](https://github.com/DanielXMoore/Civet/pull/241)]
1418
+ * `type ... from ...` import shorthand [[#244](https://github.com/DanielXMoore/Civet/pull/244)]
1419
+ * Import assertions [[#245](https://github.com/DanielXMoore/Civet/pull/245)]
1420
+ * Re-order docs to ease people into the Civet mindset [[#246](https://github.com/DanielXMoore/Civet/pull/246)]
1245
1421
 
1246
1422
  ## 0.5.44 (2023-01-16, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.43...v0.5.44), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.44))
1247
1423
 
@@ -1252,92 +1428,193 @@ as well as a full diff and commit list.
1252
1428
  ## 0.5.41 (2023-01-14, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.40...v0.5.41), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.41))
1253
1429
 
1254
1430
  ## 0.5.40 (2023-01-14, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.39...v0.5.40), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.40))
1431
+ * Fixes: #233. Dedented commas should not delimit [[#234](https://github.com/DanielXMoore/Civet/pull/234)]
1255
1432
  * New fast JSX parser [[#235](https://github.com/DanielXMoore/Civet/pull/235)]
1433
+ * Fixes #228. `this` type in function parameters. [[#236](https://github.com/DanielXMoore/Civet/pull/236)]
1256
1434
 
1257
1435
  ## 0.5.39 (2023-01-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.38...v0.5.39), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.39))
1258
1436
  * Fix CLI behavior especially on Unix [[#232](https://github.com/DanielXMoore/Civet/pull/232)]
1437
+ * Fixes #197 [[#231](https://github.com/DanielXMoore/Civet/pull/231)]
1259
1438
 
1260
1439
  ## 0.5.38 (2023-01-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.37...v0.5.38), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.38))
1440
+ * Fixes #220. We weren't popping scope stack at the end of the function :fearful: [[#223](https://github.com/DanielXMoore/Civet/pull/223)]
1441
+ * Fixes #221 [[#224](https://github.com/DanielXMoore/Civet/pull/224)]
1442
+ * Fixes #218. Optional type void => shorthand [[#225](https://github.com/DanielXMoore/Civet/pull/225)]
1443
+ * Fixes #160 [[#226](https://github.com/DanielXMoore/Civet/pull/226)]
1261
1444
 
1262
1445
  ## 0.5.37 (2023-01-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.36...v0.5.37), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.37))
1446
+ * Fixes #209 by not allowing whitespace before TypeArguments [[#210](https://github.com/DanielXMoore/Civet/pull/210)]
1447
+ * `return` from expressionized blocks [[#211](https://github.com/DanielXMoore/Civet/pull/211)]
1448
+ * Support TypeScript `interface extends` [[#219](https://github.com/DanielXMoore/Civet/pull/219)]
1263
1449
 
1264
1450
  ## 0.5.36 (2023-01-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.35...v0.5.36), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.36))
1265
1451
  * Gulp plugin [[#206](https://github.com/DanielXMoore/Civet/pull/206)]
1452
+ * Docs: fix URI to base64 translation [[#208](https://github.com/DanielXMoore/Civet/pull/208)]
1453
+ * Fixes #205 [[#207](https://github.com/DanielXMoore/Civet/pull/207)]
1266
1454
 
1267
1455
  ## 0.5.35 (2023-01-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.34...v0.5.35), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.35))
1456
+ * Docs: Add playground page [[#198](https://github.com/DanielXMoore/Civet/pull/198)]
1457
+ * Docs: Fix playground [[#199](https://github.com/DanielXMoore/Civet/pull/199)]
1458
+ * Docs: fix playground object outputting [[#200](https://github.com/DanielXMoore/Civet/pull/200)]
1459
+ * Fix identifier used only in coffee for loop [[#201](https://github.com/DanielXMoore/Civet/pull/201)]
1460
+ * Fix register and other integration docs [[#204](https://github.com/DanielXMoore/Civet/pull/204)]
1268
1461
 
1269
1462
  ## 0.5.34 (2023-01-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.33...v0.5.34), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.34))
1463
+ * Add type guard function for compile errors [[#183](https://github.com/DanielXMoore/Civet/pull/183)]
1464
+ * Docs: Enhance playground error handling [[#185](https://github.com/DanielXMoore/Civet/pull/185)]
1465
+ * Moved :: behind coffeePrototype config flag [[#188](https://github.com/DanielXMoore/Civet/pull/188)]
1466
+ * Confirm that docs build in CI for PRs [[#189](https://github.com/DanielXMoore/Civet/pull/189)]
1467
+ * Moved CoffeeScript focus into separate document [[#191](https://github.com/DanielXMoore/Civet/pull/191)]
1468
+ * Fixes #192 [[#195](https://github.com/DanielXMoore/Civet/pull/195)]
1469
+ * #175 Added preliminary ':' -> 'as' improvement [[#186](https://github.com/DanielXMoore/Civet/pull/186)]
1470
+ * Fixes #194 [[#196](https://github.com/DanielXMoore/Civet/pull/196)]
1270
1471
 
1271
1472
  ## 0.5.33 (2023-01-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.32...v0.5.33), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.33))
1272
1473
  * Synonyous -> synonymous [[#180](https://github.com/DanielXMoore/Civet/pull/180)]
1474
+ * Docs: add interactive snippets [[#172](https://github.com/DanielXMoore/Civet/pull/172)]
1475
+ * Docs: fix playground server side rendering [[#181](https://github.com/DanielXMoore/Civet/pull/181)]
1476
+ * Docs: Fix mobile playground [[#182](https://github.com/DanielXMoore/Civet/pull/182)]
1477
+ * + extra pipeline example [[#184](https://github.com/DanielXMoore/Civet/pull/184)]
1273
1478
 
1274
1479
  ## 0.5.32 (2023-01-09, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.31...v0.5.32), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.32))
1275
1480
 
1276
1481
  ## 0.5.31 (2023-01-09, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.30...v0.5.31), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.31))
1482
+ * Try expression [[#173](https://github.com/DanielXMoore/Civet/pull/173)]
1483
+ * Fixes #51 [[#178](https://github.com/DanielXMoore/Civet/pull/178)]
1277
1484
 
1278
1485
  ## 0.5.30 (2023-01-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.29...v0.5.30), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.30))
1279
1486
 
1280
1487
  ## 0.5.29 (2023-01-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.28...v0.5.29), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.29))
1488
+ * Fix inline ifs [[#171](https://github.com/DanielXMoore/Civet/pull/171)]
1281
1489
 
1282
1490
  ## 0.5.28 (2023-01-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.27...v0.5.28), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.28))
1491
+ * Function declarations without parentheses [[#159](https://github.com/DanielXMoore/Civet/pull/159)]
1283
1492
  * Create directory in `-o` option if it doesn't exist [[#164](https://github.com/DanielXMoore/Civet/pull/164)]
1493
+ * Fix array parsing bug [[#168](https://github.com/DanielXMoore/Civet/pull/168)]
1284
1494
 
1285
1495
  ## 0.5.27 (2023-01-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.26...v0.5.27), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.27))
1496
+ * Support initializers in type parameters [[#149](https://github.com/DanielXMoore/Civet/pull/149)]
1497
+ * Support `import`/`export` `type`/`{type}` [[#151](https://github.com/DanielXMoore/Civet/pull/151)]
1498
+ * Compilation and AST modes for REPL [[#148](https://github.com/DanielXMoore/Civet/pull/148)]
1499
+ * Improve extends '<' shorthand [[#152](https://github.com/DanielXMoore/Civet/pull/152)]
1500
+ * `yarn build` before building docs locally [[#153](https://github.com/DanielXMoore/Civet/pull/153)]
1286
1501
 
1287
1502
  ## 0.5.26 (2023-01-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.25...v0.5.26), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.26))
1288
1503
  * New Playground tag in docs [[#125](https://github.com/DanielXMoore/Civet/pull/125)]
1504
+ * JSX +- toggles like LiveScript object literals [[#135](https://github.com/DanielXMoore/Civet/pull/135)]
1505
+ * Expanded LiveScript toggles to include ! and added ! to JSX attribute toggle shorthand [[#136](https://github.com/DanielXMoore/Civet/pull/136)]
1289
1506
  * Docs: fix code examples rendering [[#140](https://github.com/DanielXMoore/Civet/pull/140)]
1507
+ * Docs: add sponsors [[#141](https://github.com/DanielXMoore/Civet/pull/141)]
1508
+ * JSX implicit fragments [[#139](https://github.com/DanielXMoore/Civet/pull/139)]
1290
1509
 
1291
1510
  ## 0.5.25 (2023-01-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.24...v0.5.25), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.25))
1511
+ * Avoid object literal calls with class extends [[#131](https://github.com/DanielXMoore/Civet/pull/131)]
1292
1512
  * Fix for nested JSX if else expressions [[#133](https://github.com/DanielXMoore/Civet/pull/133)]
1513
+ * ESM build and refactoring [[#134](https://github.com/DanielXMoore/Civet/pull/134)]
1293
1514
 
1294
1515
  ## 0.5.24 (2023-01-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.23...v0.5.24), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.24))
1516
+ * Document void return to avoid implicit return [[#123](https://github.com/DanielXMoore/Civet/pull/123)]
1517
+ * Add missing NonIdContinue after keywords [[#130](https://github.com/DanielXMoore/Civet/pull/130)]
1518
+ * New operators: is not, is in, is not in, not in [[#124](https://github.com/DanielXMoore/Civet/pull/124)]
1519
+ * Positive modulo operator %% [[#132](https://github.com/DanielXMoore/Civet/pull/132)]
1295
1520
 
1296
1521
  ## 0.5.23 (2023-01-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.22...v0.5.23), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.23))
1522
+ * Several more examples for docs [[#119](https://github.com/DanielXMoore/Civet/pull/119)]
1523
+ * Document how to import and that TS code is valid input [[#121](https://github.com/DanielXMoore/Civet/pull/121)]
1524
+ * CLI support for running script with arguments [[#122](https://github.com/DanielXMoore/Civet/pull/122)]
1297
1525
 
1298
1526
  ## 0.5.22 (2023-01-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.21...v0.5.22), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.22))
1527
+ * Update docs [[#115](https://github.com/DanielXMoore/Civet/pull/115)]
1528
+ * Improve CLI documentation [[#116](https://github.com/DanielXMoore/Civet/pull/116)]
1529
+ * Register fixes [[#117](https://github.com/DanielXMoore/Civet/pull/117)]
1299
1530
 
1300
1531
  ## 0.5.21 (2023-01-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.20...v0.5.21), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.21))
1532
+ * Add docs [[#110](https://github.com/DanielXMoore/Civet/pull/110)]
1533
+ * Document implicit return features [[#111](https://github.com/DanielXMoore/Civet/pull/111)]
1534
+ * Docs update [[#112](https://github.com/DanielXMoore/Civet/pull/112)]
1535
+ * Auto let Fix [[#105](https://github.com/DanielXMoore/Civet/pull/105)]
1301
1536
 
1302
1537
  ## 0.5.20 (2023-01-03, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.19...v0.5.20), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.20))
1538
+ * Document let shorthand [[#107](https://github.com/DanielXMoore/Civet/pull/107)]
1539
+ * Support `|> return` and document pipes [[#106](https://github.com/DanielXMoore/Civet/pull/106)]
1540
+ * Class shorthand optimizations [[#108](https://github.com/DanielXMoore/Civet/pull/108)]
1541
+ * Avoid implicit return via trailing semicolon [[#109](https://github.com/DanielXMoore/Civet/pull/109)]
1303
1542
 
1304
1543
  ## 0.5.19 (2022-12-31, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.18...v0.5.19), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.19))
1544
+ * Insert Final Newline setting for VSCode [[#101](https://github.com/DanielXMoore/Civet/pull/101)]
1545
+ * XML comment support within JSX [[#102](https://github.com/DanielXMoore/Civet/pull/102)]
1305
1546
 
1306
1547
  ## 0.5.18 (2022-12-30, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.16...v0.5.18), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.18))
1548
+ * Fix CLI behavior on Windows [[#96](https://github.com/DanielXMoore/Civet/pull/96)]
1549
+ * Filter combined JSX classes [[#100](https://github.com/DanielXMoore/Civet/pull/100)]
1550
+ * New CLI including REPL [[#99](https://github.com/DanielXMoore/Civet/pull/99)]
1307
1551
 
1308
1552
  ## 0.5.16 (2022-12-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.15...v0.5.16), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.16))
1553
+ * JSX #id and .class shorthands [[#95](https://github.com/DanielXMoore/Civet/pull/95)]
1309
1554
 
1310
1555
  ## 0.5.15 (2022-12-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.14...v0.5.15), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.15))
1556
+ * Use Set to represent uncacheable rules [[#90](https://github.com/DanielXMoore/Civet/pull/90)]
1557
+ * Fix indentation JSX within attributes [[#92](https://github.com/DanielXMoore/Civet/pull/92)]
1558
+ * Better support for multi-tsconfig projects [[#91](https://github.com/DanielXMoore/Civet/pull/91)]
1559
+ * Bump json5 from 2.2.1 to 2.2.2 in /lsp [[#93](https://github.com/DanielXMoore/Civet/pull/93)]
1560
+ * Bump json5 from 2.2.1 to 2.2.2 [[#94](https://github.com/DanielXMoore/Civet/pull/94)]
1311
1561
 
1312
1562
  ## 0.5.14 (2022-12-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.13...v0.5.14), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.14))
1563
+ * JSX arrow functions don't need braces [[#89](https://github.com/DanielXMoore/Civet/pull/89)]
1313
1564
 
1314
1565
  ## 0.5.13 (2022-12-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.12...v0.5.13), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.13))
1566
+ * Don't deploy civet.dev website from forks [[#87](https://github.com/DanielXMoore/Civet/pull/87)]
1315
1567
 
1316
1568
  ## 0.5.12 (2022-12-26, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.11...v0.5.12), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.12))
1569
+ * Fix function application with implicit object [[#84](https://github.com/DanielXMoore/Civet/pull/84)]
1570
+ * Implicit dynamic import() [[#86](https://github.com/DanielXMoore/Civet/pull/86)]
1317
1571
 
1318
1572
  ## 0.5.11 (2022-12-25, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.10...v0.5.11), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.11))
1573
+ * Class enhancements: Support abstract & readonly [[#82](https://github.com/DanielXMoore/Civet/pull/82)]
1574
+ * Add support for |> pipelines [[#83](https://github.com/DanielXMoore/Civet/pull/83)]
1319
1575
 
1320
1576
  ## 0.5.10 (2022-12-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.9...v0.5.10), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.10))
1321
1577
 
1322
1578
  ## 0.5.9 (2022-12-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.8...v0.5.9), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.9))
1579
+ * Support access modifiers (public/protected/private) [[#80](https://github.com/DanielXMoore/Civet/pull/80)]
1323
1580
 
1324
1581
  ## 0.5.8 (2022-12-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.7...v0.5.8), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.8))
1582
+ * Link to GitHub repo from civet.dev [[#78](https://github.com/DanielXMoore/Civet/pull/78)]
1325
1583
 
1326
1584
  ## 0.5.7 (2022-12-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.6...v0.5.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.7))
1327
1585
 
1328
1586
  ## 0.5.6 (2022-12-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.5...v0.5.6), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.6))
1587
+ * Link to starter templates for Solid [Start] [[#69](https://github.com/DanielXMoore/Civet/pull/69)]
1588
+ * Clarify that comma operator works in `for` [[#70](https://github.com/DanielXMoore/Civet/pull/70)]
1589
+ * Link to Vite, esbuild, ESM plugins [[#71](https://github.com/DanielXMoore/Civet/pull/71)]
1590
+ * Super property access [[#73](https://github.com/DanielXMoore/Civet/pull/73)]
1591
+ * Fix autoLet will redeclare the variable explicit declared [[#74](https://github.com/DanielXMoore/Civet/pull/74)]
1592
+ * Allow type annotation in catch clause [[#76](https://github.com/DanielXMoore/Civet/pull/76)]
1593
+ * Allow decorators on static methods/fields and properties [[#77](https://github.com/DanielXMoore/Civet/pull/77)]
1329
1594
 
1330
1595
  ## 0.5.5 (2022-12-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.4...v0.5.5), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.5))
1596
+ * Typed JSX elements/fragments for Solid [[#68](https://github.com/DanielXMoore/Civet/pull/68)]
1331
1597
 
1332
1598
  ## 0.5.4 (2022-12-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.3...v0.5.4), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.4))
1599
+ * Fix multi-line JSX fragments [[#67](https://github.com/DanielXMoore/Civet/pull/67)]
1333
1600
 
1334
1601
  ## 0.5.3 (2022-12-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.2...v0.5.3), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.3))
1602
+ * Refactor ref making [[#63](https://github.com/DanielXMoore/Civet/pull/63)]
1603
+ * Fix singleton TypeParameters compatibility with TSX [[#65](https://github.com/DanielXMoore/Civet/pull/65)]
1604
+ * Support type parameters in JSX tag names [[#66](https://github.com/DanielXMoore/Civet/pull/66)]
1335
1605
 
1336
1606
  ## 0.5.2 (2022-12-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.1...v0.5.2), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.2))
1607
+ * JSX `...foo` shorthand for `{...foo}` [[#62](https://github.com/DanielXMoore/Civet/pull/62)]
1337
1608
 
1338
1609
  ## 0.5.1 (2022-12-16, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.0...v0.5.1), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.1))
1610
+ * support typescript `satisfies` [[#56](https://github.com/DanielXMoore/Civet/pull/56)]
1611
+ * Default to tsx extension for transpiled files [[#57](https://github.com/DanielXMoore/Civet/pull/57)]
1339
1612
 
1340
1613
  ## 0.5.0 (2022-12-14, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.38...v0.5.0), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.0))
1614
+ * README cleanup [[#44](https://github.com/DanielXMoore/Civet/pull/44)]
1615
+ * Support whitespace-free JSX attributes [[#45](https://github.com/DanielXMoore/Civet/pull/45)]
1616
+ * Omit type parameters in js output [[#41](https://github.com/DanielXMoore/Civet/pull/41)]
1617
+ * Add autolet [[#43](https://github.com/DanielXMoore/Civet/pull/43)]
1341
1618
 
1342
1619
  ## 0.4.38 (2022-12-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.37...v0.4.38), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.38))
1343
1620
 
@@ -1346,16 +1623,26 @@ as well as a full diff and commit list.
1346
1623
  ## 0.4.36 (2022-12-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.35...v0.4.36), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.36))
1347
1624
 
1348
1625
  ## 0.4.35 (2022-12-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.34...v0.4.35), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.35))
1626
+ * Document JSX object literal enhancement [[#36](https://github.com/DanielXMoore/Civet/pull/36)]
1627
+ * Support content on same line as <> [[#37](https://github.com/DanielXMoore/Civet/pull/37)]
1628
+ * Support for many unbraced JSX attribute values [[#38](https://github.com/DanielXMoore/Civet/pull/38)]
1629
+ * Support computed JSX attribute names [[#39](https://github.com/DanielXMoore/Civet/pull/39)]
1349
1630
 
1350
1631
  ## 0.4.34 (2022-12-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.33...v0.4.34), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.34))
1632
+ * Support type args in classes [[#34](https://github.com/DanielXMoore/Civet/pull/34)]
1351
1633
 
1352
1634
  ## 0.4.33 (2022-12-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.32...v0.4.33), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.33))
1353
1635
 
1354
1636
  ## 0.4.32 (2022-12-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.31...v0.4.32), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.32))
1355
1637
 
1356
1638
  ## 0.4.31 (2022-12-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.28...v0.4.31), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.31))
1639
+ * LSP: Update other documents asynchronously when content gets updated [[#29](https://github.com/DanielXMoore/Civet/pull/29)]
1640
+ * JSX object shorthand [[#32](https://github.com/DanielXMoore/Civet/pull/32)]
1641
+ * Indentation in middle of arrays [[#33](https://github.com/DanielXMoore/Civet/pull/33)]
1357
1642
 
1358
1643
  ## 0.4.28 (2022-12-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.27...v0.4.28), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.28))
1644
+ * Add Discord link and NPM badges [[#28](https://github.com/DanielXMoore/Civet/pull/28)]
1645
+ * Indentation-based JSX [[#25](https://github.com/DanielXMoore/Civet/pull/25)]
1359
1646
 
1360
1647
  ## 0.4.27 (2022-12-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.26...v0.4.27), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.27))
1361
1648
 
@@ -1364,6 +1651,7 @@ as well as a full diff and commit list.
1364
1651
  ## 0.4.25 (2022-12-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.24...v0.4.25), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.25))
1365
1652
 
1366
1653
  ## 0.4.24 (2022-12-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.23...v0.4.24), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.24))
1654
+ * Indentation flexibility [[#26](https://github.com/DanielXMoore/Civet/pull/26)]
1367
1655
 
1368
1656
  ## 0.4.23 (2022-12-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.22...v0.4.23), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.23))
1369
1657
  * CoffeeScript export to-do [[#22](https://github.com/DanielXMoore/Civet/pull/22)]
@@ -1439,6 +1727,7 @@ as well as a full diff and commit list.
1439
1727
  ## 0.4.8 (2022-10-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.7...v0.4.8), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.8))
1440
1728
 
1441
1729
  ## 0.4.7 (2022-10-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.6...v0.4.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.7))
1730
+ * Implicit returns [[#2](https://github.com/DanielXMoore/Civet/pull/2)]
1442
1731
 
1443
1732
  ## 0.4.6 (2022-10-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.5...v0.4.6), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.6))
1444
1733