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: docs/CONTRIBUTING.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
@@ -92,6 +92,26 @@ A changeset is a piece of information about changes made in a branch or commit.
92
92
- What version we are releasing packages at (using a semver bump type)
93
93
- A changelog entry for the released packages
94
94
95
+
The first of the changeset description is used as the changelog entry title, the rest of the description is used as the changelog entry body. For example:
96
+
97
+
```markdown
98
+
---
99
+
'@clerk/nextjs': minor
100
+
---
101
+
102
+
Introduce `debug` prop in `authMiddleware`
103
+
A new `debug` prop has been added to the `authMiddleware` function. When set to `true`, the middleware will log the request and response to the console.
104
+
```
105
+
106
+
Will generate the following changelog entry:
107
+
108
+
```markdown
109
+
## Minor Changes
110
+
111
+
- Introduce `debug` prop in `authMiddleware` (#123) by @johndoe
112
+
A new `debug` prop has been added to the `authMiddleware` function. When set to `true`, the middleware will log the request and response to the console.
113
+
```
114
+
95
115
Tips:
96
116
97
117
- Changesets are just markdown files. Feel free to add as much markdown as you want to better describe the change.
0 commit comments