Skip to content

Commit 50e2c48

Browse files
committed
update changelog entry format
1 parent 21f12e1 commit 50e2c48

File tree

69 files changed

+2513
-839
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+2513
-839
lines changed

.github/bin/release-plan/release-plan.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ for (const workspace of needsRelease.values()) {
8787
console.log(`Releasing : ${workspace.name}`);
8888
// Increment the version
8989
workspace.newVersion = await npmVersion(workspace.increment, workspace.path);
90-
workspace.newVersionChangeLogID = workspace.newVersion.replaceAll('.', '-');
90+
workspace.newVersionChangeLogHeadingID = workspace.newVersion.replaceAll('.', '-');
9191

9292
// Update the changelog
9393
const changelog = workspace.changelog.replace(`Unreleased (${workspace.increment})`, `${workspace.newVersion}\n\n_${nowFormatted()}_`);
@@ -120,7 +120,7 @@ for (const workspace of notReleasableNow.values()) {
120120

121121
const dependencyLink = `/${updated.path.replaceAll('\\', '/')}`;
122122
const nameAsLink = `[\`${updated.name}\`](${dependencyLink})`;
123-
const versionAsLink = `[\`${updated.newVersion}\`](${dependencyLink}/CHANGELOG.md#${updated.newVersionChangeLogID})`;
123+
const versionAsLink = `[\`${updated.newVersion}\`](${dependencyLink}/CHANGELOG.md#${updated.newVersionChangeLogHeadingID})`;
124124

125125
if (
126126
packageInfo.dependencies &&

cli/csstools-cli/CHANGELOG.md

+51-17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changes to CSSTools CLI
22

3-
### 2.1.8 (June 21, 2023)
3+
### 2.1.8
4+
5+
_June 21, 2023_
46

57
- Updated `@csstools/postcss-media-minmax` to `1.0.4` (patch)
68
- Updated `@csstools/postcss-media-queries-aspect-ratio-number-values` to `1.0.4` (patch)
@@ -9,14 +11,18 @@
911

1012

1113

12-
### 2.1.7 (June 14, 2023)
14+
### 2.1.7
15+
16+
_June 14, 2023_
1317

1418
- Updated `postcss-nesting` to `11.3.0` (minor)
1519
- Updated `postcss-preset-env` to `8.5.0` (minor)
1620

1721

1822

19-
### 2.1.6 (June 1, 2023)
23+
### 2.1.6
24+
25+
_June 1, 2023_
2026

2127
- Updated `postcss-custom-properties` to `13.2.0` (minor)
2228
- Updated `@csstools/postcss-color-function` to `2.2.3` (patch)
@@ -35,12 +41,16 @@
3541

3642

3743

38-
### 2.1.5 (May 19, 2023)
44+
### 2.1.5
45+
46+
_May 19, 2023_
3947

4048
- Updated `postcss-preset-env` to `8.4.1` (patch)
4149

4250

43-
### 2.1.4 (May 19, 2023)
51+
### 2.1.4
52+
53+
_May 19, 2023_
4454

4555
- Updated `@csstools/postcss-ic-unit` to `2.0.3` (patch)
4656
- Updated `@csstools/postcss-text-decoration-shorthand` to `2.2.4` (patch)
@@ -56,22 +66,28 @@
5666

5767

5868

59-
### 2.1.3 (May 19, 2023)
69+
### 2.1.3
70+
71+
_May 19, 2023_
6072

6173
- Updated `@csstools/postcss-is-pseudo-class` to `3.2.1` (patch)
6274
- Updated `postcss-logical` to `6.2.0` (minor)
6375
- Updated `postcss-preset-env` to `8.3.3` (patch)
6476

6577

6678

67-
### 2.1.2 (April 17, 2023)
79+
### 2.1.2
80+
81+
_April 17, 2023_
6882

6983
- Updated `@csstools/postcss-gradients-interpolation-method` to `3.0.4` (patch)
7084
- Updated `postcss-preset-env` to `8.3.2` (patch)
7185

7286

7387

74-
### 2.1.1 (April 10, 2023)
88+
### 2.1.1
89+
90+
_April 10, 2023_
7591

7692
- Updated `@csstools/postcss-logical-viewport-units` to `1.0.3` (patch)
7793
- Updated `@csstools/postcss-media-minmax` to `1.0.2` (patch)
@@ -89,7 +105,9 @@
89105
- Updated `postcss-lab-function` to `5.2.1` (patch)
90106
- Updated `postcss-preset-env` to `8.3.1` (patch)
91107

92-
### 2.1.0 (April 2, 2023)
108+
### 2.1.0
109+
110+
_April 2, 2023_
93111

94112
- Added `@csstools/postcss-color-mix-function`
95113
- Added `@csstools/postcss-gradients-interpolation-method`
@@ -135,11 +153,15 @@
135153
- Updated `postcss-pseudo-class-any-link` to `8.0.2` (patch)
136154
- Updated `postcss-selector-not` to `7.0.1` (patch)
137155

138-
### 2.0.1 (January 28, 2023)
156+
### 2.0.1
157+
158+
_January 28, 2023_
139159

140160
- Updated `postcss-preset-env` to`8.0.0`
141161

142-
### 2.0.0 (January 24, 2023)
162+
### 2.0.0
163+
164+
_January 24, 2023_
143165

144166
- Updated: Support for Node v14+ (major).
145167
- Remove `postcss-env-function` (breaking).
@@ -183,7 +205,9 @@
183205
- Updated `postcss-pseudo-class-any-link` to `8.0.0` (major)
184206
- Updated `postcss-selector-not` to `7.0.0` (major)
185207

186-
### 1.4.0 (June 3, 2022)
208+
### 1.4.0
209+
210+
_June 3, 2022_
187211

188212
- Added `@csstools/postcss-cascade-layers`
189213
- Added `@csstools/postcss-trigonometric-functions`
@@ -193,13 +217,17 @@
193217
- Added `postcss-selector-not`
194218
- Updated `postcss-preset-env` to `7.7.1` (minor)
195219

196-
### 1.3.0 (May 2, 2022)
220+
### 1.3.0
221+
222+
_May 2, 2022_
197223

198224
- Added `@csstools/postcss-unset-value` (minor)
199225
- Added `@csstools/postcss-stepped-value-functions` (minor)
200226
- Updated `postcss-preset-env` to `7.5.0` (minor)
201227

202-
### 1.2.1 (April 26, 2022)
228+
### 1.2.1
229+
230+
_April 26, 2022_
203231

204232
- Updated `@csstools/postcss-is-pseudo-class` to `2.0.2` (patch)
205233
- Updated `postcss-custom-properties` to `12.1.7` (patch)
@@ -210,7 +238,9 @@
210238
- Updated `postcss-preset-env` to `7.4.3` (patch)
211239
- Updated `postcss-pseudo-class-any-link` to `7.1.2` (patch)
212240

213-
### 1.2.0 (February 16, 2022)
241+
### 1.2.0
242+
243+
_February 16, 2022_
214244

215245
- Added `@csstools/color-function`.
216246
- Added `@csstools/ic-unit`.
@@ -238,7 +268,9 @@
238268
- Updated `postcss-preset-env` to `7.4.0` (minor)
239269
- Updated `postcss-pseudo-class-any-link` to `7.1.1` (patch)
240270

241-
### 1.1.0 (January 31, 2022)
271+
### 1.1.0
272+
273+
_January 31, 2022_
242274

243275
- Emit warnings from plugins
244276
- Added `@csstools/postcss-font-format-keywords`
@@ -275,6 +307,8 @@ npx -y @csstools/cli postcss-normalize-display-values
275307
- Updated `postcss-preset-env` to `7.3.0` (minor)
276308
- Updated `postcss-pseudo-class-any-link` to `7.1.0` (minor)
277309

278-
### 1.0.0 (January 2, 2022)
310+
### 1.0.0
311+
312+
_January 2, 2022_
279313

280314
- Initial version

experimental/css-has-pseudo/CHANGELOG.md

+36-12
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,31 @@
11
# Changes to CSS Has Pseudo
22

3-
### 0.6.0 (July 8, 2022)
3+
### 0.6.0
4+
5+
_July 8, 2022_
46

57
- `@csstools/css-has-pseudo-experimental` is no longer supported. Please use `css-has-pseudo` instead.
68
All issues have been resolved in the main plugin and the experimental plugin is no longer maintained.
79

810
⚠️ This experimental plugin no longer has any effect on the output of your CSS.
911

10-
### 0.5.2 (June 4, 2022)
12+
### 0.5.2
13+
14+
_June 4, 2022_
1115

1216
- Update `@csstools/selector-specificity` (major)
1317

14-
### 0.5.1 (April 29, 2022)
18+
### 0.5.1
19+
20+
_April 29, 2022_
1521

1622
- Use `@csstools/selector-specificity` for specificity calculations.
1723
- Update `querySelector(:has())` polyfill, ensuring temporary html attributes are correctly removed.
1824
- Improve documentation
1925

20-
### 0.5.0 (April 24, 2022)
26+
### 0.5.0
27+
28+
_April 24, 2022_
2129

2230
- Rules within `@supports` selector check for `:has` won't be transformed. This respects stylesheet author of making the selector conditional:
2331

@@ -28,23 +36,33 @@ All issues have been resolved in the main plugin and the experimental plugin is
2836
}
2937
```
3038

31-
### 0.4.0 (April 5, 2022)
39+
### 0.4.0
40+
41+
_April 5, 2022_
3242

3343
- Update `querySelector(:has())` polyfill, disallowing nested `:has` (`:has(.foo, :has(.bar))`)
3444

35-
### 0.3.1 (April 4, 2022)
45+
### 0.3.1
46+
47+
_April 4, 2022_
3648

3749
- Improving selector specificity calculation.
3850

39-
### 0.3.0 (February 24, 2022)
51+
### 0.3.0
52+
53+
_February 24, 2022_
4054

4155
- Use base36 encoding to fix support for upper case characters in selectors.
4256

43-
### 0.2.1 (February 6, 2022)
57+
### 0.2.1
58+
59+
_February 6, 2022_
4460

4561
- Do not leak visitedness via `:has` pseudo-class.
4662

47-
### 0.2.0 (January 12, 2022)
63+
### 0.2.0
64+
65+
_January 12, 2022_
4866

4967
- Added : documentation and tests for CORS.
5068
- Added : documentation for selector specificity.
@@ -60,16 +78,22 @@ postcss([
6078
]).process(YOUR_CSS /*, processOptions */);
6179
```
6280

63-
### 0.1.2 (January 7, 2022)
81+
### 0.1.2
82+
83+
_January 7, 2022_
6484

6585
- Improved : selector specificity calculation
6686

67-
### 0.1.1 (January 5, 2022)
87+
### 0.1.1
88+
89+
_January 5, 2022_
6890

6991
- Added : support for id and tag selector specificity.
7092
- Changed : hover tracking now also uses `leave` events for correct style re-calcs.
7193

72-
### 0.1.0 (January 4, 2022)
94+
### 0.1.0
95+
96+
_January 4, 2022_
7397

7498
Tracking initial implementation of `:has()` pseudo-class in Safari Technology Preview.
7599
This is a breaking change and affects both the generated CSS and the client side polyfill.
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
# Changes to PostCSS Gradient Stop Increments
22

3-
### 1.0.1 (April 10, 2023)
3+
### 1.0.1
4+
5+
_April 10, 2023_
46

57
- Updated `@csstools/css-tokenizer` to `2.1.1` (patch)
68
- Updated `@csstools/css-parser-algorithms` to `2.1.1` (patch)
79
- Updated `@csstools/css-calc` to `1.1.1` (patch)
810

9-
### 1.0.0 (March 21, 2023)
11+
### 1.0.0
12+
13+
_March 21, 2023_
1014

1115
- Initial version

experimental/postcss-nesting/CHANGELOG.md

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changes to PostCSS Nesting Experimental
22

3-
### 2.0.0 (January 24, 2023)
3+
### 2.0.0
4+
5+
_January 24, 2023_
46

57
- Fix: Change how `&` is handled in functional pseudo classes in a non-nested context.
68

@@ -15,7 +17,9 @@
1517

1618
- Updated: Support for Node v14+ (major).
1719

18-
### 1.1.1 (November 16, 2022)
20+
### 1.1.1
21+
22+
_November 16, 2022_
1923

2024
- Fix: Do not throw when a selector is invalid, show a warning instead.
2125
- Fix: Correctly handle declarations after nested rules.
@@ -38,7 +42,9 @@ article {
3842
- }
3943
```
4044

41-
### 1.1.0 (November 3, 2022)
45+
### 1.1.0
46+
47+
_November 3, 2022_
4248

4349
- match Chrome's behavior for pseudo elements.
4450
- add support for `&` everywhere.
@@ -53,7 +59,9 @@ article {
5359
.foo ::before {}
5460
```
5561

56-
### 1.0.0 (October 29, 2022)
62+
### 1.0.0
63+
64+
_October 29, 2022_
5765

5866
Implement the 28 October version of [css-nestng-1](https://drafts.csswg.org/css-nesting/)
5967

Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
# Changes to Cascade Layer Name Parser
22

3-
### 1.0.2 (April 10, 2023)
3+
### 1.0.2
4+
5+
_April 10, 2023_
46

57
- Updated `@csstools/css-tokenizer` to `2.1.1` (patch)
68
- Updated `@csstools/css-parser-algorithms` to `2.1.1` (patch)
79

810

911

10-
### 1.0.1 (January 28, 2023)
12+
### 1.0.1
13+
14+
_January 28, 2023_
1115

1216
- Improve `types` declaration in `package.json`
1317

14-
### 1.0.0 (January 19, 2023)
18+
### 1.0.0
19+
20+
_January 19, 2023_
1521

1622
- Initial version

0 commit comments

Comments
 (0)