Skip to content

Commit

Permalink
chore(deploy): Release 24.8.0 (electron-updater@6.1.6) (#7825)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Oct 19, 2023
1 parent 6e41480 commit 4c9b829
Show file tree
Hide file tree
Showing 34 changed files with 131 additions and 46 deletions.
5 changes: 0 additions & 5 deletions .changeset/bright-toys-camp.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/brown-parents-rest.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/little-drinks-grin.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/mean-baboons-report.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/modern-dingos-sing.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tough-roses-attend.md

This file was deleted.

11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,14 @@
# [](https://github.com/electron-userland/electron-builder/compare/v24.7.0...v) (2023-10-19)


### Bug Fixes

* display product names with an `&` properly ([#7831](https://github.com/electron-userland/electron-builder/issues/7831)) ([6e41480](https://github.com/electron-userland/electron-builder/commit/6e41480e6221693f6fec46ae813d513935e05f66))
* run nsis builds (and portable builds) sequentially ([#7798](https://github.com/electron-userland/electron-builder/issues/7798)) ([526e075](https://github.com/electron-userland/electron-builder/commit/526e075edddf908b9688e108a18fbb76e6f047be))
* support `executableName` in main config ([#7828](https://github.com/electron-userland/electron-builder/issues/7828)) ([7c7db83](https://github.com/electron-userland/electron-builder/commit/7c7db837bdf650228594a30114975f1581c37130))



# [](https://github.com/electron-userland/electron-builder/compare/v24.6.5...v) (2023-09-26)


Expand Down
21 changes: 21 additions & 0 deletions packages/app-builder-lib/CHANGELOG.md
@@ -1,5 +1,26 @@
# app-builder-lib

## 24.8.0

### Minor Changes

- [#7828](https://github.com/electron-userland/electron-builder/pull/7828) [`7c7db837`](https://github.com/electron-userland/electron-builder/commit/7c7db837bdf650228594a30114975f1581c37130) Thanks [@BrandonXLF](https://github.com/BrandonXLF)! - fix: support executableName in main config

### Patch Changes

- [#7813](https://github.com/electron-userland/electron-builder/pull/7813) [`f2a1f1ee`](https://github.com/electron-userland/electron-builder/commit/f2a1f1ee9a1387eb183b9f3b0dfcca29c7891bd1) Thanks [@jgresham](https://github.com/jgresham)! - minor addition to docs for snap. add snap recommended core22 option.

- [#7831](https://github.com/electron-userland/electron-builder/pull/7831) [`6e41480e`](https://github.com/electron-userland/electron-builder/commit/6e41480e6221693f6fec46ae813d513935e05f66) Thanks [@vespasianvs](https://github.com/vespasianvs)! - fix(nsis): display product names with an `&` properly

- [#7814](https://github.com/electron-userland/electron-builder/pull/7814) [`549d07b0`](https://github.com/electron-userland/electron-builder/commit/549d07b0a04b8686cf4998dc102edad390ddd09a) Thanks [@jgresham](https://github.com/jgresham)! - minor addition to docs for snap publishing. add snapcraft link to local and cd auth options

- [#7798](https://github.com/electron-userland/electron-builder/pull/7798) [`526e075e`](https://github.com/electron-userland/electron-builder/commit/526e075edddf908b9688e108a18fbb76e6f047be) Thanks [@iffy](https://github.com/iffy)! - fix: run nsis and portable builds sequentially. fixes #7791

- Updated dependencies [[`549d07b0`](https://github.com/electron-userland/electron-builder/commit/549d07b0a04b8686cf4998dc102edad390ddd09a)]:
- builder-util-runtime@9.2.2
- builder-util@24.8.0
- electron-publish@24.8.0

## 24.7.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/app-builder-lib/package.json
@@ -1,7 +1,7 @@
{
"name": "app-builder-lib",
"description": "electron-builder lib",
"version": "24.7.0",
"version": "24.8.0",
"main": "out/index.js",
"files": [
"out",
Expand Down
4 changes: 2 additions & 2 deletions packages/app-builder-lib/scheme.json
Expand Up @@ -5601,7 +5601,7 @@
},
"SnapStoreOptions": {
"additionalProperties": false,
"description": "[Snap Store](https://snapcraft.io/) options.",
"description": "[Snap Store](https://snapcraft.io/) options. To publish directly to Snapcraft,\n see <a href=\"https://snapcraft.io/docs/snapcraft-authentication\">Snapcraft\n authentication options</a> for local or CI/CD authentication options.",
"properties": {
"channels": {
"anyOf": [
Expand All @@ -5624,7 +5624,7 @@
"description": "The list of channels the snap would be released."
},
"provider": {
"description": "The provider. Must be `snapStore`. To publish directly to Snapcraft,\n see <a href=\"https://snapcraft.io/docs/snapcraft-authentication\">Snapcraft\n authentication options</a> for local or CI/CD authentication options.",
"description": "The provider. Must be `snapStore`.",
"enum": [
"snapStore"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/app-builder-lib/src/targets/nsis/NsisTarget.ts
Expand Up @@ -42,7 +42,7 @@ export class NsisTarget extends Target {

/** @private */
readonly archs: Map<Arch, string> = new Map()
readonly isAsyncSupported = false;
readonly isAsyncSupported = false

constructor(readonly packager: WinPackager, readonly outDir: string, targetName: string, protected readonly packageHelper: AppPackageHelper) {
super(targetName)
Expand Down
2 changes: 1 addition & 1 deletion packages/app-builder-lib/src/version.ts
@@ -1 +1 @@
export const PACKAGE_VERSION = "24.7.0"
export const PACKAGE_VERSION = "24.8.0"
6 changes: 6 additions & 0 deletions packages/builder-util-runtime/CHANGELOG.md
@@ -1,5 +1,11 @@
# builder-util-runtime

## 9.2.2

### Patch Changes

- [#7814](https://github.com/electron-userland/electron-builder/pull/7814) [`549d07b0`](https://github.com/electron-userland/electron-builder/commit/549d07b0a04b8686cf4998dc102edad390ddd09a) Thanks [@jgresham](https://github.com/jgresham)! - minor addition to docs for snap publishing. add snapcraft link to local and cd auth options

## 9.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/builder-util-runtime/package.json
@@ -1,6 +1,6 @@
{
"name": "builder-util-runtime",
"version": "9.2.1",
"version": "9.2.2",
"main": "out/index.js",
"author": "Vladimir Krivosheev",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/builder-util/CHANGELOG.md
@@ -1,5 +1,12 @@
# builder-util

## 24.8.0

### Patch Changes

- Updated dependencies [[`549d07b0`](https://github.com/electron-userland/electron-builder/commit/549d07b0a04b8686cf4998dc102edad390ddd09a)]:
- builder-util-runtime@9.2.2

## 24.5.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/builder-util/package.json
@@ -1,6 +1,6 @@
{
"name": "builder-util",
"version": "24.5.0",
"version": "24.8.0",
"main": "out/util.js",
"author": "Vladimir Krivosheev",
"license": "MIT",
Expand Down
9 changes: 9 additions & 0 deletions packages/dmg-builder/CHANGELOG.md
@@ -1,5 +1,14 @@
# dmg-builder

## 24.8.0

### Patch Changes

- Updated dependencies [[`f2a1f1ee`](https://github.com/electron-userland/electron-builder/commit/f2a1f1ee9a1387eb183b9f3b0dfcca29c7891bd1), [`6e41480e`](https://github.com/electron-userland/electron-builder/commit/6e41480e6221693f6fec46ae813d513935e05f66), [`7c7db837`](https://github.com/electron-userland/electron-builder/commit/7c7db837bdf650228594a30114975f1581c37130), [`549d07b0`](https://github.com/electron-userland/electron-builder/commit/549d07b0a04b8686cf4998dc102edad390ddd09a), [`526e075e`](https://github.com/electron-userland/electron-builder/commit/526e075edddf908b9688e108a18fbb76e6f047be)]:
- app-builder-lib@24.8.0
- builder-util-runtime@9.2.2
- builder-util@24.8.0

## 24.7.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/dmg-builder/package.json
@@ -1,6 +1,6 @@
{
"name": "dmg-builder",
"version": "24.7.0",
"version": "24.8.0",
"main": "out/dmgUtil.js",
"author": "Vladimir Krivosheev",
"license": "MIT",
Expand Down
8 changes: 8 additions & 0 deletions packages/electron-builder-squirrel-windows/CHANGELOG.md
@@ -1,5 +1,13 @@
# electron-builder-squirrel-windows

## 24.8.0

### Patch Changes

- Updated dependencies [[`f2a1f1ee`](https://github.com/electron-userland/electron-builder/commit/f2a1f1ee9a1387eb183b9f3b0dfcca29c7891bd1), [`6e41480e`](https://github.com/electron-userland/electron-builder/commit/6e41480e6221693f6fec46ae813d513935e05f66), [`7c7db837`](https://github.com/electron-userland/electron-builder/commit/7c7db837bdf650228594a30114975f1581c37130), [`549d07b0`](https://github.com/electron-userland/electron-builder/commit/549d07b0a04b8686cf4998dc102edad390ddd09a), [`526e075e`](https://github.com/electron-userland/electron-builder/commit/526e075edddf908b9688e108a18fbb76e6f047be)]:
- app-builder-lib@24.8.0
- builder-util@24.8.0

## 24.7.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/electron-builder-squirrel-windows/package.json
@@ -1,6 +1,6 @@
{
"name": "electron-builder-squirrel-windows",
"version": "24.7.0",
"version": "24.8.0",
"main": "out/SquirrelWindowsTarget.js",
"author": "Vladimir Krivosheev",
"license": "MIT",
Expand Down
10 changes: 10 additions & 0 deletions packages/electron-builder/CHANGELOG.md
@@ -1,5 +1,15 @@
# electron-builder

## 24.8.0

### Patch Changes

- Updated dependencies [[`f2a1f1ee`](https://github.com/electron-userland/electron-builder/commit/f2a1f1ee9a1387eb183b9f3b0dfcca29c7891bd1), [`6e41480e`](https://github.com/electron-userland/electron-builder/commit/6e41480e6221693f6fec46ae813d513935e05f66), [`7c7db837`](https://github.com/electron-userland/electron-builder/commit/7c7db837bdf650228594a30114975f1581c37130), [`549d07b0`](https://github.com/electron-userland/electron-builder/commit/549d07b0a04b8686cf4998dc102edad390ddd09a), [`526e075e`](https://github.com/electron-userland/electron-builder/commit/526e075edddf908b9688e108a18fbb76e6f047be)]:
- app-builder-lib@24.8.0
- builder-util-runtime@9.2.2
- dmg-builder@24.8.0
- builder-util@24.8.0

## 24.7.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/electron-builder/package.json
@@ -1,7 +1,7 @@
{
"name": "electron-builder",
"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",
"version": "24.7.0",
"version": "24.8.0",
"main": "out/index.js",
"files": [
"out"
Expand Down
7 changes: 7 additions & 0 deletions packages/electron-forge-maker-appimage/CHANGELOG.md
@@ -1,5 +1,12 @@
# electron-forge-maker-appimage

## 24.8.0

### Patch Changes

- Updated dependencies [[`f2a1f1ee`](https://github.com/electron-userland/electron-builder/commit/f2a1f1ee9a1387eb183b9f3b0dfcca29c7891bd1), [`6e41480e`](https://github.com/electron-userland/electron-builder/commit/6e41480e6221693f6fec46ae813d513935e05f66), [`7c7db837`](https://github.com/electron-userland/electron-builder/commit/7c7db837bdf650228594a30114975f1581c37130), [`549d07b0`](https://github.com/electron-userland/electron-builder/commit/549d07b0a04b8686cf4998dc102edad390ddd09a), [`526e075e`](https://github.com/electron-userland/electron-builder/commit/526e075edddf908b9688e108a18fbb76e6f047be)]:
- app-builder-lib@24.8.0

## 24.7.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/electron-forge-maker-appimage/package.json
@@ -1,6 +1,6 @@
{
"name": "electron-forge-maker-appimage",
"version": "24.7.0",
"version": "24.8.0",
"main": "main.js",
"author": "Vladimir Krivosheev",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/electron-forge-maker-nsis-web/CHANGELOG.md
@@ -1,5 +1,12 @@
# electron-forge-maker-nsis-web

## 24.8.0

### Patch Changes

- Updated dependencies [[`f2a1f1ee`](https://github.com/electron-userland/electron-builder/commit/f2a1f1ee9a1387eb183b9f3b0dfcca29c7891bd1), [`6e41480e`](https://github.com/electron-userland/electron-builder/commit/6e41480e6221693f6fec46ae813d513935e05f66), [`7c7db837`](https://github.com/electron-userland/electron-builder/commit/7c7db837bdf650228594a30114975f1581c37130), [`549d07b0`](https://github.com/electron-userland/electron-builder/commit/549d07b0a04b8686cf4998dc102edad390ddd09a), [`526e075e`](https://github.com/electron-userland/electron-builder/commit/526e075edddf908b9688e108a18fbb76e6f047be)]:
- app-builder-lib@24.8.0

## 24.7.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/electron-forge-maker-nsis-web/package.json
@@ -1,6 +1,6 @@
{
"name": "electron-forge-maker-nsis-web",
"version": "24.7.0",
"version": "24.8.0",
"main": "main.js",
"author": "Vladimir Krivosheev",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/electron-forge-maker-nsis/CHANGELOG.md
@@ -1,5 +1,12 @@
# electron-forge-maker-nsis

## 24.8.0

### Patch Changes

- Updated dependencies [[`f2a1f1ee`](https://github.com/electron-userland/electron-builder/commit/f2a1f1ee9a1387eb183b9f3b0dfcca29c7891bd1), [`6e41480e`](https://github.com/electron-userland/electron-builder/commit/6e41480e6221693f6fec46ae813d513935e05f66), [`7c7db837`](https://github.com/electron-userland/electron-builder/commit/7c7db837bdf650228594a30114975f1581c37130), [`549d07b0`](https://github.com/electron-userland/electron-builder/commit/549d07b0a04b8686cf4998dc102edad390ddd09a), [`526e075e`](https://github.com/electron-userland/electron-builder/commit/526e075edddf908b9688e108a18fbb76e6f047be)]:
- app-builder-lib@24.8.0

## 24.7.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/electron-forge-maker-nsis/package.json
@@ -1,6 +1,6 @@
{
"name": "electron-forge-maker-nsis",
"version": "24.7.0",
"version": "24.8.0",
"main": "main.js",
"author": "Vladimir Krivosheev",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/electron-forge-maker-snap/CHANGELOG.md
@@ -1,5 +1,12 @@
# electron-forge-maker-snap

## 24.8.0

### Patch Changes

- Updated dependencies [[`f2a1f1ee`](https://github.com/electron-userland/electron-builder/commit/f2a1f1ee9a1387eb183b9f3b0dfcca29c7891bd1), [`6e41480e`](https://github.com/electron-userland/electron-builder/commit/6e41480e6221693f6fec46ae813d513935e05f66), [`7c7db837`](https://github.com/electron-userland/electron-builder/commit/7c7db837bdf650228594a30114975f1581c37130), [`549d07b0`](https://github.com/electron-userland/electron-builder/commit/549d07b0a04b8686cf4998dc102edad390ddd09a), [`526e075e`](https://github.com/electron-userland/electron-builder/commit/526e075edddf908b9688e108a18fbb76e6f047be)]:
- app-builder-lib@24.8.0

## 24.7.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/electron-forge-maker-snap/package.json
@@ -1,6 +1,6 @@
{
"name": "electron-forge-maker-snap",
"version": "24.7.0",
"version": "24.8.0",
"main": "main.js",
"author": "Vladimir Krivosheev",
"license": "MIT",
Expand Down
8 changes: 8 additions & 0 deletions packages/electron-publish/CHANGELOG.md
@@ -1,5 +1,13 @@
# electron-publish

## 24.8.0

### Patch Changes

- Updated dependencies [[`549d07b0`](https://github.com/electron-userland/electron-builder/commit/549d07b0a04b8686cf4998dc102edad390ddd09a)]:
- builder-util-runtime@9.2.2
- builder-util@24.8.0

## 24.5.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/electron-publish/package.json
@@ -1,6 +1,6 @@
{
"name": "electron-publish",
"version": "24.5.0",
"version": "24.8.0",
"main": "out/publisher.js",
"author": "Vladimir Krivosheev",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/electron-updater/CHANGELOG.md
@@ -1,5 +1,12 @@
## 4.3.0

## 6.1.6

### Patch Changes

- Updated dependencies [[`549d07b0`](https://github.com/electron-userland/electron-builder/commit/549d07b0a04b8686cf4998dc102edad390ddd09a)]:
- builder-util-runtime@9.2.2

## 6.1.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/electron-updater/package.json
@@ -1,6 +1,6 @@
{
"name": "electron-updater",
"version": "6.1.5",
"version": "6.1.6",
"description": "Cross platform updater for electron applications",
"main": "out/main.js",
"author": "Vladimir Krivosheev",
Expand Down

0 comments on commit 4c9b829

Please sign in to comment.