@danielx/civet 0.8.16 → 0.9.0
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 +15 -0
- package/dist/browser.js +432 -328
- package/dist/main.js +432 -328
- package/dist/main.mjs +432 -328
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,21 @@ 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.9.0 (2024-12-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.8.17...v0.9.0), [commits](https://github.com/DanielXMoore/Civet/commits/v0.9.0))
|
|
8
|
+
* Range literal `[a..b]` defaults to increasing; adaptive behavior behind `"civet coffeeRange"` directive [[#1632](https://github.com/DanielXMoore/Civet/pull/1632)]
|
|
9
|
+
* BREAKING CHANGE: `[a..b]` and `[a...b]` no longer creates a decreasing range without an explicit `>` or `>=`; add one where needed.
|
|
10
|
+
* `"""` interpolations require `coffeeInterpolation`, `///` respects `coffeeInterpolation`, `coffeeComment`, `coffeeDiv` [[#1635](https://github.com/DanielXMoore/Civet/pull/1635)]
|
|
11
|
+
* BREAKING CHANGE: `"""` and `///` no longer support `#{expr}` interpolation unless you set `coffeeInterpolation`; `///` no longer supports `#` comments without `coffeeComment`; `///` no longer supports `//` comments with `coffeeDiv`
|
|
12
|
+
|
|
13
|
+
## 0.8.17 (2024-12-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.8.16...v0.8.17), [commits](https://github.com/DanielXMoore/Civet/commits/v0.8.17))
|
|
14
|
+
* `%%` operator types support `bigint` in addition to `number` [[#1620](https://github.com/DanielXMoore/Civet/pull/1620)]
|
|
15
|
+
* Fix `new` expression at start of pipeline [[#1625](https://github.com/DanielXMoore/Civet/pull/1625)]
|
|
16
|
+
* Fix implicit `async` and `*` in methods [[#1627](https://github.com/DanielXMoore/Civet/pull/1627)]
|
|
17
|
+
* Fix object literals and bulleted lists in JSX indented attributes, fix indentation detection [[#1628](https://github.com/DanielXMoore/Civet/pull/1628)]
|
|
18
|
+
* Fix placeholders in `for each` loops [[#1630](https://github.com/DanielXMoore/Civet/pull/1630)]
|
|
19
|
+
* Fix implicit objects in indented arguments after other arguments [[#1629](https://github.com/DanielXMoore/Civet/pull/1629)]
|
|
20
|
+
* Fix mixing access modifiers (e.g. `readonly`) with `@` arguments in constructors [[#1631](https://github.com/DanielXMoore/Civet/pull/1631)]
|
|
21
|
+
|
|
7
22
|
## 0.8.16 (2024-11-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.8.15...v0.8.16), [commits](https://github.com/DanielXMoore/Civet/commits/v0.8.16))
|
|
8
23
|
* `for join` reduction to concatenate strings [[#1604](https://github.com/DanielXMoore/Civet/pull/1604)]
|
|
9
24
|
* Numeric object keys in pattern matching [[#1608](https://github.com/DanielXMoore/Civet/pull/1608)]
|