You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,3 +101,23 @@ pnpm run test # Run all tests
101
101
pnpm --filter @salesforce/b2c-tooling-sdk run test# Test specific package
102
102
pnpm mocha "test/clients/webdav.test.ts"# Single file (no coverage)
103
103
```
104
+
105
+
## Changesets
106
+
107
+
This project uses [Changesets](https://github.com/changesets/changesets) for version management. When making changes that affect users, create a changeset:
108
+
109
+
```bash
110
+
# Create a changeset (interactive prompt)
111
+
pnpm changeset
112
+
113
+
# Check pending changesets
114
+
pnpm changeset status
115
+
```
116
+
117
+
Changeset guidelines:
118
+
- Create a changeset for any user-facing changes (features, bug fixes)
119
+
- Select the appropriate semver bump: `patch` (bug fixes) or `minor` (new features)
120
+
- This is a pre-1.0 preview release, so there are no `major` breaking change bumps
121
+
- Write a clear, concise description of the change for the changelog
122
+
- The three main packages (`@salesforce/b2c-cli`, `@salesforce/b2c-tooling-sdk`, `@salesforce/b2c-dx-mcp`) are version-linked
123
+
- Internal-only changes (tests, docs, refactoring) typically don't need changesets
0 commit comments