Skip to content

Commit 5351a3b

Browse files
committed
chore: simplify fixed packages list in changesets config (#418)
# Use wildcard pattern for fixed packages in changesets config This PR updates the `.changeset/config.json` file to use a wildcard pattern `@pgflow/*` for fixed packages instead of listing them individually. This simplifies the configuration and ensures any new packages under the `@pgflow` namespace will automatically be included in the fixed versioning group. Also removes `@pgflow/website` from the changeset that fixes the Supabase CLI version requirement, as the website package doesn't need this change.
1 parent de3165c commit 5351a3b

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

.changeset/config.json

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,7 @@
22
"$schema": "https://unpkg.com/@changesets/config@3.1.1/schema.json",
33
"changelog": "@changesets/cli/changelog",
44
"commit": false,
5-
"fixed": [
6-
[
7-
"@pgflow/client",
8-
"@pgflow/core",
9-
"@pgflow/dsl",
10-
"@pgflow/edge-worker",
11-
"@pgflow/example-flows",
12-
"pgflow"
13-
]
14-
],
5+
"fixed": [["@pgflow/*", "pgflow"]],
156
"linked": [],
167
"access": "public",
178
"baseBranch": "main",

.changeset/correct-cli-version-requirement.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
'@pgflow/client': patch
44
'@pgflow/core': patch
55
'@pgflow/edge-worker': patch
6-
'@pgflow/website': patch
76
---
87

98
Fix incorrect Supabase CLI version requirement from 2.34.3 to 2.50.3. CLI 2.50.3 is the first version to include pgmq 1.5.0+, which is required for pgflow 0.8.0+.

0 commit comments

Comments
 (0)