@sentry/craft 0.31.0 → 0.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/README.md +5 -3
- package/dist/craft +339 -336
- package/dist/craft.map +3 -3
- package/package.json +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.33.0
|
|
4
|
+
|
|
5
|
+
### Various fixes & improvements
|
|
6
|
+
|
|
7
|
+
- ref: Allow for all logger levels in Octokit (#390) by @kamilogorek
|
|
8
|
+
- ref: Upload GitHub artifacts in series (#389) by @kamilogorek
|
|
9
|
+
|
|
10
|
+
## 0.32.1
|
|
11
|
+
|
|
12
|
+
### Various fixes & improvements
|
|
13
|
+
|
|
14
|
+
- ref: Remove spinners from github target artifacts upload (#385) by @kamilogorek
|
|
15
|
+
|
|
16
|
+
## 0.32.0
|
|
17
|
+
|
|
18
|
+
### Various fixes & improvements
|
|
19
|
+
|
|
20
|
+
- upgrade(simple-git): Use latest version, 3.6.0 (#381) by @BYK
|
|
21
|
+
- feat(changelog): Limit changes to current project folder (#379) by @BYK
|
|
22
|
+
- ci(lint): Make lint job work for external contributors (#378) by @BYK
|
|
23
|
+
|
|
3
24
|
## 0.31.0
|
|
4
25
|
|
|
5
26
|
### Increase Release Safety and Reliability (ongoing)
|
package/README.md
CHANGED
|
@@ -333,12 +333,14 @@ In `auto` mode, `craft prepare` will use the following logic:
|
|
|
333
333
|
2. Else if there is an entry named `Unreleased`, rename that to the given
|
|
334
334
|
version
|
|
335
335
|
3. Else, create a new section for the version and populate it with the changes
|
|
336
|
-
since the last version. It uses [GitHub
|
|
337
|
-
|
|
336
|
+
since the last version. It uses [GitHub
|
|
337
|
+
Milestones](https://docs.github.com/en/issues/using-labels-and-milestones-to-track-work/about-milestones)
|
|
338
|
+
to provide a concise and rich changelog. If the PRs are associated with a
|
|
338
339
|
milestone, the milestone title and description are used as the changelog
|
|
339
340
|
entry alongside a brief list of associated PRs. Any individual commits and
|
|
340
341
|
PRs are listed under the "Various improvements & fixes" section at the
|
|
341
|
-
bottom. Check out [Craft's own
|
|
342
|
+
bottom. Check out [Craft's own
|
|
343
|
+
releases](https://github.com/getsentry/craft/releases/) as example.
|
|
342
344
|
|
|
343
345
|
**Configuration**
|
|
344
346
|
|