Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.

Commit ddc97be

Browse files
authored
Merge pull request #69 from wp-graphql/develop
release: next version 📦
2 parents ee2790a + 72ba17d commit ddc97be

15 files changed

+122
-19
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: 'feat: time scalar'
3+
pr: 70
4+
author: jasonbahl
5+
type: feat
6+
breaking: false
7+
branch: milestone/custom-scalars
8+
---
9+
null
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: feat: a scalar
3+
pr: 72
4+
author: jasonbahl
5+
type: feat
6+
breaking: false
7+
branch: milestone/custom-scalars
8+
---
9+
10+
null
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: 'feat: email scalar'
3+
pr: 59
4+
author: jasonbahl
5+
type: feat
6+
breaking: false
7+
branch: milestone/custom-scalars
8+
---
9+
Pretend to add the Email Scalar
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: 'feat: phone scalar'
3+
pr: 60
4+
author: jasonbahl
5+
type: feat
6+
breaking: false
7+
branch: milestone/custom-scalars
8+
---
9+
null
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: 'feat!: breaking change'
3+
pr: 61
4+
author: jasonbahl
5+
type: other
6+
breaking: true
7+
branch: milestone/custom-scalars
8+
---
9+
Simulating a breaking change to test the workflows
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: 'feat: datetime-scalar'
3+
pr: 62
4+
author: jasonbahl
5+
type: feat
6+
breaking: false
7+
branch: milestone/custom-scalars
8+
---
9+
null
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: 'feat: date scalar'
3+
pr: 65
4+
author: jasonbahl
5+
type: feat
6+
breaking: false
7+
branch: milestone/custom-scalars
8+
---
9+
null
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: 'feat: url scalar'
3+
pr: 67
4+
author: jasonbahl
5+
type: feat
6+
breaking: false
7+
branch: milestone/custom-scalars
8+
---
9+
null

.github/workflows/generate-changeset.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -179,15 +179,9 @@ jobs:
179179
# Create a temporary directory for release notes
180180
mkdir -p /tmp/release-notes
181181
182-
# For develop branch, don't filter by branch to include all changesets
183-
if [[ "${{ steps.target_branch.outputs.name }}" == "develop" ]]; then
184-
echo "Generating release notes for develop branch (including milestone branch changesets)"
185-
npm run release:notes > /tmp/release-notes/temp_notes_raw.md
186-
else
187-
# For other branches, filter by branch as before
188-
echo "Generating release notes for ${{ steps.target_branch.outputs.name }} branch"
189-
npm run release:notes -- --branch="${{ steps.target_branch.outputs.name }}" > /tmp/release-notes/temp_notes_raw.md
190-
fi
182+
# Generate release notes with consistent formatting
183+
echo "Generating release notes..."
184+
npm run release:notes > /tmp/release-notes/temp_notes_raw.md
191185
192186
# Process the raw notes consistently
193187
grep -v "^>" /tmp/release-notes/temp_notes_raw.md | sed -n '/^Found/!p' > /tmp/release-notes/temp_notes.md

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## v4.0.5 - 2025-03-15
6+
7+
> ⚠️ **BREAKING CHANGES**: This release contains breaking changes. Please review before upgrading.
8+
9+
### Breaking Changes
10+
11+
- 'feat!: breaking change' ([#61](https://github.com/jasonbahl/automation-tests/pull/61))
12+
13+
### New Features
14+
15+
- 'feat: url scalar' ([#67](https://github.com/jasonbahl/automation-tests/pull/67))
16+
- 'feat: date scalar' ([#65](https://github.com/jasonbahl/automation-tests/pull/65))
17+
- 'feat: datetime-scalar' ([#62](https://github.com/jasonbahl/automation-tests/pull/62))
18+
- 'feat: phone scalar' ([#60](https://github.com/jasonbahl/automation-tests/pull/60))
19+
- 'feat: email scalar' ([#59](https://github.com/jasonbahl/automation-tests/pull/59))
20+
521
## v4.0.4 - 2025-03-14
622

723
> ⚠️ **BREAKING CHANGES**: This release contains breaking changes. Please review before upgrading.

0 commit comments

Comments
 (0)