Skip to content

Commit

Permalink
docs: extract HEAD changelogs into changesets files
Browse files Browse the repository at this point in the history
  • Loading branch information
JounQin committed Aug 18, 2022
1 parent 15134b7 commit 84f6cea
Show file tree
Hide file tree
Showing 13 changed files with 58 additions and 21 deletions.
5 changes: 5 additions & 0 deletions .changeset/calm-tables-hide.md
@@ -0,0 +1,5 @@
---
"stylelint": patch
---

Fixed: `selector-pseudo-class-allowed-list` end positions and message ([#6262](https://github.com/stylelint/stylelint/pull/6262))
8 changes: 3 additions & 5 deletions .changeset/changelog-stylelint.js
Expand Up @@ -82,13 +82,11 @@ const changelogFunctions = {
: links.user;

const suffix = [
links.pull === null ? '' : ` ${links.pull}`,
users === null ? '' : ` Thanks ${users}!`,
links.pull === null ? '' : ` (${links.pull})`,
users === null ? '' : ` (${users})`,
].join('');

return `\n\n- ${firstLine}${futureLines.map((l) => ` ${l}`).join('\n')}${
suffix ? ' (' + suffix + ')' : ''
}.\n`;
return `\n\n- ${firstLine}${futureLines.map((l) => ` ${l}`).join('\n')}${suffix}.\n`;
},
async getDependencyReleaseLine() {
return '';
Expand Down
5 changes: 5 additions & 0 deletions .changeset/chatty-eagles-act.md
@@ -0,0 +1,5 @@
---
"stylelint": patch
---

Fixed: `selector-no-vendor-prefix` end positions ([#6261](https://github.com/stylelint/stylelint/pull/6261))
5 changes: 5 additions & 0 deletions .changeset/cold-peas-push.md
@@ -0,0 +1,5 @@
---
"stylelint": patch
---

Fixed: `shorthand-property-no-redundant-values` message ([#6272](https://github.com/stylelint/stylelint/pull/6272))
5 changes: 5 additions & 0 deletions .changeset/cool-baboons-cross.md
@@ -0,0 +1,5 @@
---
"stylelint": patch
---

Fixed: `selector-pseudo-element-disallowed-list` end positions and message ([#6270](https://github.com/stylelint/stylelint/pull/6270))
5 changes: 5 additions & 0 deletions .changeset/empty-humans-bake.md
@@ -0,0 +1,5 @@
---
"stylelint": patch
---

Fixed: `selector-pseudo-element-allowed-list` end positions and message ([#6270](https://github.com/stylelint/stylelint/pull/6270))
5 changes: 5 additions & 0 deletions .changeset/modern-plants-nail.md
@@ -0,0 +1,5 @@
---
"stylelint": patch
---

Fixed: `time-min-milliseconds` end positions ([#6273](https://github.com/stylelint/stylelint/pull/6273))
5 changes: 5 additions & 0 deletions .changeset/plenty-timers-learn.md
@@ -0,0 +1,5 @@
---
"stylelint": patch
---

Fixed: `keyframes-name-pattern` false positives for interpolation ([#6265](https://github.com/stylelint/stylelint/pull/6265))
5 changes: 5 additions & 0 deletions .changeset/serious-teachers-juggle.md
@@ -0,0 +1,5 @@
---
"stylelint": patch
---

Fixed: `selector-nested-pattern` end positions ([#6259](https://github.com/stylelint/stylelint/pull/6259))
5 changes: 5 additions & 0 deletions .changeset/shy-clouds-joke.md
@@ -0,0 +1,5 @@
---
"stylelint": patch
---

Fixed: `selector-no-qualifying-type` message, positions, and false positives ([#6260](https://github.com/stylelint/stylelint/pull/6260))
5 changes: 5 additions & 0 deletions .changeset/sour-socks-type.md
@@ -0,0 +1,5 @@
---
"stylelint": patch
---

Fixed: `createPlugin` type definition ([#6264](https://github.com/stylelint/stylelint/pull/6264))
5 changes: 5 additions & 0 deletions .changeset/wise-kiwis-repeat.md
@@ -0,0 +1,5 @@
---
"stylelint": patch
---

Fixed: `selector-pseudo-class-disallowed-list` end positions and message ([#6263](https://github.com/stylelint/stylelint/pull/6263))
16 changes: 0 additions & 16 deletions CHANGELOG.md
@@ -1,21 +1,5 @@
# Changelog

All notable changes to this project are documented in this file.

## Head

- Fixed: `createPlugin` type definition ([#6264](https://github.com/stylelint/stylelint/pull/6264)).
- Fixed: `keyframes-name-pattern` false positives for interpolation ([#6265](https://github.com/stylelint/stylelint/pull/6265)).
- Fixed: `selector-nested-pattern` end positions ([#6259](https://github.com/stylelint/stylelint/pull/6259)).
- Fixed: `selector-no-qualifying-type` message, positions, and false positives ([#6260](https://github.com/stylelint/stylelint/pull/6260)).
- Fixed: `selector-no-vendor-prefix` end positions ([#6261](https://github.com/stylelint/stylelint/pull/6261)).
- Fixed: `selector-pseudo-class-allowed-list` end positions and message ([#6262](https://github.com/stylelint/stylelint/pull/6262)).
- Fixed: `selector-pseudo-class-disallowed-list` end positions and message ([#6263](https://github.com/stylelint/stylelint/pull/6263)).
- Fixed: `selector-pseudo-element-allowed-list` end positions and message ([#6270](https://github.com/stylelint/stylelint/pull/6270)).
- Fixed: `selector-pseudo-element-disallowed-list` end positions and message ([#6270](https://github.com/stylelint/stylelint/pull/6270)).
- Fixed: `shorthand-property-no-redundant-values` message ([#6272](https://github.com/stylelint/stylelint/pull/6272)).
- Fixed: `time-min-milliseconds` end positions ([#6273](https://github.com/stylelint/stylelint/pull/6273)).

## 14.10.0

- Added: rule metadata to public `LinterResult` API ([#6166](https://github.com/stylelint/stylelint/pull/6166)).
Expand Down

0 comments on commit 84f6cea

Please sign in to comment.