@danielx/civet 0.7.25 → 0.7.26
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 +5 -1
- package/dist/browser.js +165 -158
- package/dist/main.js +165 -158
- package/dist/main.mjs +165 -158
- package/dist/unplugin/unplugin.js +8 -8
- package/dist/unplugin/unplugin.mjs +8 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ 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.7.26 (2024-08-26, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.25...v0.7.26), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.26))
|
|
8
|
+
* Hyphenated object keys like `Content-Type:` [[#1377](https://github.com/DanielXMoore/Civet/pull/1377)]
|
|
9
|
+
* Fix unplugin `parseOptions`, fix eslint plugin for Node 22 [[#1378](https://github.com/DanielXMoore/Civet/pull/1378)]
|
|
10
|
+
|
|
7
11
|
## 0.7.25 (2024-08-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.24...v0.7.25), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.25))
|
|
8
12
|
* `import operator` bulk import of operators [[#1372](https://github.com/DanielXMoore/Civet/pull/1372)]
|
|
9
13
|
* `continue switch` to fall through at the end of `when` clause [[#1373](https://github.com/DanielXMoore/Civet/pull/1373)]
|
|
@@ -15,7 +19,7 @@ as well as a full diff and commit list.
|
|
|
15
19
|
* Fix placeholder expressions at head of pipeline [[#1366](https://github.com/DanielXMoore/Civet/pull/1366)]
|
|
16
20
|
* Support length shorthand `#` when defining objects [[#1367](https://github.com/DanielXMoore/Civet/pull/1367)]
|
|
17
21
|
* Generate tags for Civet releases [[#1368](https://github.com/DanielXMoore/Civet/pull/1368)]
|
|
18
|
-
* Indented if
|
|
22
|
+
* Indented `if`/`unless` conditions to enable indented function calls (e.g. `(and)`) [[#1364](https://github.com/DanielXMoore/Civet/pull/1364)]
|
|
19
23
|
* Indented calls in `if` conditions with explicit `then` clause (#1090) [[#1369](https://github.com/DanielXMoore/Civet/pull/1369)]
|
|
20
24
|
* Improved release process and changelog generation [[#1370](https://github.com/DanielXMoore/Civet/pull/1370)]
|
|
21
25
|
|