Skip to content

Commit

Permalink
enhanced changesets notes
Browse files Browse the repository at this point in the history
  • Loading branch information
shairez committed Oct 29, 2024
1 parent eb4ca93 commit aa9fefd
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 18 deletions.
9 changes: 3 additions & 6 deletions .changeset/changelog-github-custom.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -351,12 +351,9 @@ var changelogFunctions = {
.concat(links.pull || links.commit, ')');
}
emojiFirstline = firstLine
.replace('FEAT:', '✨ ')
.replace('feat:', '✨ ')
.replace('fix:', '🐞🩹')
.replace('FIX:', '🐞🩹')
.replace('DOCS:', '📃')
.replace('docs:', '📃');
.replace(/feat:/i, '✨ ')
.replace(/fix:/i, '🐞🩹')
.replace(/docs:/i, '📃');
return [
2 /*return*/,
'\n\n- '
Expand Down
9 changes: 3 additions & 6 deletions .changeset/changelog-github-custom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,9 @@ const changelogFunctions: ChangelogFunctions = {
}

const emojiFirstline = firstLine
.replace('FEAT:', '✨ ')
.replace('feat:', '✨ ')
.replace('fix:', '🐞🩹')
.replace('FIX:', '🐞🩹')
.replace('DOCS:', '📃')
.replace('docs:', '📃');
.replace(/feat:/i, '✨ ')
.replace(/fix:/i, '🐞🩹')
.replace(/docs:/i, '📃');

return `\n\n- ${emojiFirstline} ${suffix}\n${futureLines.map((l) => ` ${l}`).join('\n')}`;
},
Expand Down
2 changes: 1 addition & 1 deletion .changeset/lazy-worms-attack.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
'@builder.io/qwik-city': patch
---

MDX content no longer ignores Layout components. See [the MDX docs](https://mdxjs.com/docs/using-mdx/#layout) for more information.
FIX: MDX content no longer ignores Layout components. See [the MDX docs](https://mdxjs.com/docs/using-mdx/#layout) for more information.
2 changes: 1 addition & 1 deletion .changeset/many-turtles-cough.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
'@builder.io/qwik-city': patch
---

Fix action redirect regression where searchParams were appended
FIX: Fixed action redirect regression where searchParams were appended
2 changes: 1 addition & 1 deletion .changeset/real-garlics-argue.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
'@builder.io/qwik-city': patch
---

Fixed MDX layout default export being ignored by transformer.
FIX: Fixed MDX layout default export being ignored by transformer.
2 changes: 1 addition & 1 deletion .changeset/shaggy-apes-kneel.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
'@builder.io/qwik': patch
---

sync$ QRLs will now be serialized into the HTML in a shorter form
FEAT: sync$ QRLs will now be serialized into the HTML in a shorter form
2 changes: 1 addition & 1 deletion .changeset/silver-countries-kiss.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
'@builder.io/qwik-city': patch
---

Prevent unexpected caching for q-data.json
FIX: Prevent unexpected caching for q-data.json
2 changes: 1 addition & 1 deletion .changeset/unlucky-experts-check.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
'@builder.io/qwik': patch
---

Allow setting `linkFetchPriority` for modulepreload links in the prefetch strategy. Also fix the links in dev mode
FEAT: Allow setting `linkFetchPriority` for modulepreload links in the prefetch strategy. Also fix the links in dev mode

0 comments on commit aa9fefd

Please sign in to comment.