Skip to content

Commit 2a9ccbf

Browse files
chore(deploy): Release v25.0.0-alpha.7 (alpha) (electron-userland#8180)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 48e6b14 commit 2a9ccbf

File tree

22 files changed

+109
-12
lines changed

22 files changed

+109
-12
lines changed

.changeset/pre.json

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"chatty-zebras-greet",
2323
"dirty-rats-happen",
2424
"fair-pants-talk",
25+
"fair-rockets-march",
2526
"fast-maps-dress",
2627
"flat-keys-wonder",
2728
"lucky-otters-report",
@@ -32,8 +33,10 @@
3233
"pretty-lemons-trade",
3334
"selfish-experts-wonder",
3435
"serious-nails-shop",
36+
"serious-pumpkins-suffer",
3537
"spotty-foxes-count",
3638
"stale-otters-turn",
39+
"tame-balloons-walk",
3740
"twelve-points-whisper",
3841
"wild-buttons-pretend",
3942
"wild-socks-chew"

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
# [](https://github.com/electron-userland/electron-builder/compare/v25.0.0-alpha.6...v) (2024-05-06)
2+
3+
4+
### Bug Fixes
5+
6+
* **appx:** Update `identityName` validation for windows 10 ([#8203](https://github.com/electron-userland/electron-builder/issues/8203)) ([66d6d6c](https://github.com/electron-userland/electron-builder/commit/66d6d6c73776b8a62ec30d569bf68c0f1eb83ce2))
7+
* disable broken test, needs further debugging. It's broken on all previous versions of electron-builder, seems MacOS related ([ac6d887](https://github.com/electron-userland/electron-builder/commit/ac6d8875463cba89c02a35baf347a1c2f76697e9))
8+
* disable broken test, needs further debugging. It's broken on all previous versions of electron-builder, seems MacOS related ([01a9c08](https://github.com/electron-userland/electron-builder/commit/01a9c08f2ddbd8d1b96c58089771a93fd695c753))
9+
* disable broken test, needs further debugging. It's broken on all previous versions of electron-builder, seems MacOS related ([dbd1fc5](https://github.com/electron-userland/electron-builder/commit/dbd1fc5510dca1da90a199fb34407573e464dba3))
10+
* **docs/multi-platform-build.md:** broken link of build.sh ([#8193](https://github.com/electron-userland/electron-builder/issues/8193)) ([3a2ccdd](https://github.com/electron-userland/electron-builder/commit/3a2ccdd9483afa3134198b3ef56ba6163b2aaec9))
11+
* treat cscLink empty string same as absent ([#8185](https://github.com/electron-userland/electron-builder/issues/8185)) ([5e41c5e](https://github.com/electron-userland/electron-builder/commit/5e41c5e8e440f7c6d139fc0e311efa46bc2846c3))
12+
13+
14+
### Features
15+
16+
* Add Support for a separate Github release token to the auto-update token ([#8173](https://github.com/electron-userland/electron-builder/issues/8173)) ([3ae3589](https://github.com/electron-userland/electron-builder/commit/3ae3589a63c2d915b8456d9dc81a965a1366c73b))
17+
* **linux:** add music mac to linux category ([#8182](https://github.com/electron-userland/electron-builder/issues/8182)) ([b43490a](https://github.com/electron-userland/electron-builder/commit/b43490a274722aba398594bcf0156d1b3687e0d2))
18+
19+
20+
### Reverts
21+
22+
* Revert "fix(appx): Update `identityName` validation for windows 10 (#8203)" (#8205) ([48e6b14](https://github.com/electron-userland/electron-builder/commit/48e6b14b767817f20af47df568423765cc5421d0)), closes [#8203](https://github.com/electron-userland/electron-builder/issues/8203) [#8205](https://github.com/electron-userland/electron-builder/issues/8205)
23+
24+
25+
126
# [](https://github.com/electron-userland/electron-builder/compare/v25.0.0-alpha.5...v) (2024-04-03)
227

328

docs/api/electron-builder.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2241,7 +2241,7 @@ password: certificatePassword == null ? null : certificatePassword.trim(),
22412241
})
22422242
}</p>
22432243
<p>const cscLink = this.getCscLink(“WIN_CSC_LINK”)
2244-
if (cscLink == null) {
2244+
if (cscLink == null || cscLink === “”) {
22452245
return Promise.resolve(null)
22462246
}</p>
22472247
<p>return (
@@ -2285,7 +2285,7 @@ password: certificatePassword == null ? null : certificatePassword.trim(),
22852285
})
22862286
}</p>
22872287
<p>const cscLink = this.getCscLink(“WIN_CSC_LINK”)
2288-
if (cscLink == null) {
2288+
if (cscLink == null || cscLink === “”) {
22892289
return Promise.resolve(null)
22902290
}</p>
22912291
<p>return (

packages/app-builder-lib/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# app-builder-lib
22

3+
## 25.0.0-alpha.7
4+
5+
### Patch Changes
6+
7+
- [#8182](https://github.com/electron-userland/electron-builder/pull/8182) [`b43490a2`](https://github.com/electron-userland/electron-builder/commit/b43490a274722aba398594bcf0156d1b3687e0d2) Thanks [@duzda](https://github.com/duzda)! - feat(linux): add music mac to linux category
8+
9+
- [#8185](https://github.com/electron-userland/electron-builder/pull/8185) [`5e41c5e8`](https://github.com/electron-userland/electron-builder/commit/5e41c5e8e440f7c6d139fc0e311efa46bc2846c3) Thanks [@mifi](https://github.com/mifi)! - fix: Treat cscLink empty string same as null
10+
11+
- Updated dependencies [[`3ae3589a`](https://github.com/electron-userland/electron-builder/commit/3ae3589a63c2d915b8456d9dc81a965a1366c73b)]:
12+
13+
14+
15+
316
## 25.0.0-alpha.6
417

518
### Minor Changes

packages/app-builder-lib/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "app-builder-lib",
33
"description": "electron-builder lib",
4-
"version": "25.0.0-alpha.6",
4+
"version": "25.0.0-alpha.7",
55
"main": "out/index.js",
66
"files": [
77
"out",
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const PACKAGE_VERSION = "25.0.0-alpha.6"
1+
export const PACKAGE_VERSION = "25.0.0-alpha.7"

packages/dmg-builder/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# dmg-builder
22

3+
## 25.0.0-alpha.7
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b43490a2`](https://github.com/electron-userland/electron-builder/commit/b43490a274722aba398594bcf0156d1b3687e0d2), [`5e41c5e8`](https://github.com/electron-userland/electron-builder/commit/5e41c5e8e440f7c6d139fc0e311efa46bc2846c3)]:
8+
9+
310
## 25.0.0-alpha.6
411

512
### Minor Changes

packages/dmg-builder/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dmg-builder",
3-
"version": "25.0.0-alpha.6",
3+
"version": "25.0.0-alpha.7",
44
"main": "out/dmgUtil.js",
55
"author": "Vladimir Krivosheev",
66
"license": "MIT",

packages/electron-builder-squirrel-windows/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# electron-builder-squirrel-windows
22

3+
## 25.0.0-alpha.7
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b43490a2`](https://github.com/electron-userland/electron-builder/commit/b43490a274722aba398594bcf0156d1b3687e0d2), [`5e41c5e8`](https://github.com/electron-userland/electron-builder/commit/5e41c5e8e440f7c6d139fc0e311efa46bc2846c3)]:
8+
9+
310
## 25.0.0-alpha.6
411

512
### Patch Changes

packages/electron-builder-squirrel-windows/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "electron-builder-squirrel-windows",
3-
"version": "25.0.0-alpha.6",
3+
"version": "25.0.0-alpha.7",
44
"main": "out/SquirrelWindowsTarget.js",
55
"author": "Vladimir Krivosheev",
66
"license": "MIT",

packages/electron-builder/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# electron-builder
22

3+
## 25.0.0-alpha.7
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b43490a2`](https://github.com/electron-userland/electron-builder/commit/b43490a274722aba398594bcf0156d1b3687e0d2), [`5e41c5e8`](https://github.com/electron-userland/electron-builder/commit/5e41c5e8e440f7c6d139fc0e311efa46bc2846c3)]:
8+
9+
10+
311
## 25.0.0-alpha.6
412

513
### Minor Changes

packages/electron-builder/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "electron-builder",
33
"description": "A complete solution to package and build a ready for distribution Electron app for MacOS, Windows and Linux with “auto update” support out of the box",
4-
"version": "25.0.0-alpha.6",
4+
"version": "25.0.0-alpha.7",
55
"main": "out/index.js",
66
"files": [
77
"out"

packages/electron-forge-maker-appimage/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# electron-forge-maker-appimage
22

3+
## 25.0.0-alpha.7
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b43490a2`](https://github.com/electron-userland/electron-builder/commit/b43490a274722aba398594bcf0156d1b3687e0d2), [`5e41c5e8`](https://github.com/electron-userland/electron-builder/commit/5e41c5e8e440f7c6d139fc0e311efa46bc2846c3)]:
8+
9+
310
## 25.0.0-alpha.6
411

512
### Patch Changes

packages/electron-forge-maker-appimage/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "electron-forge-maker-appimage",
3-
"version": "25.0.0-alpha.6",
3+
"version": "25.0.0-alpha.7",
44
"main": "main.js",
55
"author": "Vladimir Krivosheev",
66
"license": "MIT",

packages/electron-forge-maker-nsis-web/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# electron-forge-maker-nsis-web
22

3+
## 25.0.0-alpha.7
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b43490a2`](https://github.com/electron-userland/electron-builder/commit/b43490a274722aba398594bcf0156d1b3687e0d2), [`5e41c5e8`](https://github.com/electron-userland/electron-builder/commit/5e41c5e8e440f7c6d139fc0e311efa46bc2846c3)]:
8+
9+
310
## 25.0.0-alpha.6
411

512
### Patch Changes

packages/electron-forge-maker-nsis-web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "electron-forge-maker-nsis-web",
3-
"version": "25.0.0-alpha.6",
3+
"version": "25.0.0-alpha.7",
44
"main": "main.js",
55
"author": "Vladimir Krivosheev",
66
"license": "MIT",

packages/electron-forge-maker-nsis/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# electron-forge-maker-nsis
22

3+
## 25.0.0-alpha.7
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b43490a2`](https://github.com/electron-userland/electron-builder/commit/b43490a274722aba398594bcf0156d1b3687e0d2), [`5e41c5e8`](https://github.com/electron-userland/electron-builder/commit/5e41c5e8e440f7c6d139fc0e311efa46bc2846c3)]:
8+
9+
310
## 25.0.0-alpha.6
411

512
### Patch Changes

packages/electron-forge-maker-nsis/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "electron-forge-maker-nsis",
3-
"version": "25.0.0-alpha.6",
3+
"version": "25.0.0-alpha.7",
44
"main": "main.js",
55
"author": "Vladimir Krivosheev",
66
"license": "MIT",

packages/electron-forge-maker-snap/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# electron-forge-maker-snap
22

3+
## 25.0.0-alpha.7
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b43490a2`](https://github.com/electron-userland/electron-builder/commit/b43490a274722aba398594bcf0156d1b3687e0d2), [`5e41c5e8`](https://github.com/electron-userland/electron-builder/commit/5e41c5e8e440f7c6d139fc0e311efa46bc2846c3)]:
8+
9+
310
## 25.0.0-alpha.6
411

512
### Patch Changes

packages/electron-forge-maker-snap/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "electron-forge-maker-snap",
3-
"version": "25.0.0-alpha.6",
3+
"version": "25.0.0-alpha.7",
44
"main": "main.js",
55
"author": "Vladimir Krivosheev",
66
"license": "MIT",

packages/electron-publish/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# electron-publish
22

3+
## 25.0.0-alpha.7
4+
5+
### Minor Changes
6+
7+
- [#8173](https://github.com/electron-userland/electron-builder/pull/8173) [`3ae3589a`](https://github.com/electron-userland/electron-builder/commit/3ae3589a63c2d915b8456d9dc81a965a1366c73b) Thanks [@AndrewEQ](https://github.com/AndrewEQ)! - feat: Support for a separate Github publish token to the auto-update token
8+
39
## 25.0.0-alpha.6
410

511
### Patch Changes

packages/electron-publish/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "electron-publish",
3-
"version": "25.0.0-alpha.6",
3+
"version": "25.0.0-alpha.7",
44
"main": "out/publisher.js",
55
"author": "Vladimir Krivosheev",
66
"license": "MIT",

0 commit comments

Comments
 (0)