Skip to content

Commit acc8bc7

Browse files
authored
Merge branch 'main' into starter-qwik-testing-library
2 parents 76910f1 + aa9fefd commit acc8bc7

8 files changed

+12
-18
lines changed

.changeset/changelog-github-custom.cjs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -351,12 +351,9 @@ var changelogFunctions = {
351351
.concat(links.pull || links.commit, ')');
352352
}
353353
emojiFirstline = firstLine
354-
.replace('FEAT:', '✨ ')
355-
.replace('feat:', '✨ ')
356-
.replace('fix:', '🐞🩹')
357-
.replace('FIX:', '🐞🩹')
358-
.replace('DOCS:', '📃')
359-
.replace('docs:', '📃');
354+
.replace(/feat:/i, '✨ ')
355+
.replace(/fix:/i, '🐞🩹')
356+
.replace(/docs:/i, '📃');
360357
return [
361358
2 /*return*/,
362359
'\n\n- '

.changeset/changelog-github-custom.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,9 @@ const changelogFunctions: ChangelogFunctions = {
116116
}
117117

118118
const emojiFirstline = firstLine
119-
.replace('FEAT:', '✨ ')
120-
.replace('feat:', '✨ ')
121-
.replace('fix:', '🐞🩹')
122-
.replace('FIX:', '🐞🩹')
123-
.replace('DOCS:', '📃')
124-
.replace('docs:', '📃');
119+
.replace(/feat:/i, '✨ ')
120+
.replace(/fix:/i, '🐞🩹')
121+
.replace(/docs:/i, '📃');
125122

126123
return `\n\n- ${emojiFirstline} ${suffix}\n${futureLines.map((l) => ` ${l}`).join('\n')}`;
127124
},

.changeset/lazy-worms-attack.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
'@builder.io/qwik-city': patch
33
---
44

5-
MDX content no longer ignores Layout components. See [the MDX docs](https://mdxjs.com/docs/using-mdx/#layout) for more information.
5+
FIX: MDX content no longer ignores Layout components. See [the MDX docs](https://mdxjs.com/docs/using-mdx/#layout) for more information.

.changeset/many-turtles-cough.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
'@builder.io/qwik-city': patch
33
---
44

5-
Fix action redirect regression where searchParams were appended
5+
FIX: Fixed action redirect regression where searchParams were appended

.changeset/real-garlics-argue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
'@builder.io/qwik-city': patch
33
---
44

5-
Fixed MDX layout default export being ignored by transformer.
5+
FIX: Fixed MDX layout default export being ignored by transformer.

.changeset/shaggy-apes-kneel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
'@builder.io/qwik': patch
33
---
44

5-
sync$ QRLs will now be serialized into the HTML in a shorter form
5+
FEAT: sync$ QRLs will now be serialized into the HTML in a shorter form

.changeset/silver-countries-kiss.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
'@builder.io/qwik-city': patch
33
---
44

5-
Prevent unexpected caching for q-data.json
5+
FIX: Prevent unexpected caching for q-data.json

.changeset/unlucky-experts-check.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
'@builder.io/qwik': patch
33
---
44

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

0 commit comments

Comments
 (0)