@sentry/craft 1.4.2 → 1.4.4

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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.4.4
4
+
5
+ ### Various fixes & improvements
6
+
7
+ - fix(brew): Replace version in artifact names with '__VERSION__' to access checksums from mustache (#488) by @romtsn
8
+
9
+ ## 1.4.3
10
+
11
+ ### Various fixes & improvements
12
+
13
+ - fix typo (#487) by @asottile-sentry
14
+ - fix branch trigger for image (#486) by @asottile-sentry
15
+ - ref: build docker image using gha (#485) by @asottile-sentry
16
+
3
17
  ## 1.4.2
4
18
 
5
19
  ### Various fixes & improvements
package/README.md CHANGED
@@ -650,7 +650,11 @@ contains the following variables:
650
650
  - `version`: The new version
651
651
  - `revision`: The tag's commit SHA
652
652
  - `checksums`: A map containing sha256 checksums for every release asset. Use
653
- the full filename to access the sha, e.g. `checksums.MyProgram-x86`
653
+ the full filename to access the sha, e.g. `checksums.MyProgram-x86`. If the
654
+ filename contains dots (`.`), they are being replaced with `__`. If the
655
+ filename contains the currently released version, it is replaced with `__VERSION__`.
656
+ For example, `sentry-wizard-v3.9.3.tgz` checksums will be accessible by the key
657
+ `checksums.sentry-wizard-v__VERSION____tgz`.
654
658
 
655
659
  **Environment**
656
660