Skip to content

Commit

Permalink
chore(deploy): Release 23.0.1 (#6667)
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 Feb 25, 2022
1 parent 3a4b64a commit bf0382e
Show file tree
Hide file tree
Showing 21 changed files with 78 additions and 20 deletions.
5 changes: 0 additions & 5 deletions .changeset/cold-crabs-destroy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eleven-rivers-confess.md

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,13 @@
# [](https://github.com/electron-userland/electron-builder/compare/v23.0.0...v) (2022-02-25)


### Bug Fixes

* **dmg-builder:** the "import" unbound issue for python 2/3 ([#6672](https://github.com/electron-userland/electron-builder/issues/6672)) ([3a4b64a](https://github.com/electron-userland/electron-builder/commit/3a4b64abb58f01e8a80e496b6c4681455b2434ca))
* signing of user-defined binaries on mac when resolved as relative path ([#6660](https://github.com/electron-userland/electron-builder/issues/6660)) ([4c6d154](https://github.com/electron-userland/electron-builder/commit/4c6d1546d4942aa9d9a93b7309e8ed279f6378d2))



# [](https://github.com/electron-userland/electron-builder/compare/v23.0.0-alpha.4...v) (2022-02-19)


Expand Down
2 changes: 1 addition & 1 deletion docs/configuration/win.md
Expand Up @@ -19,7 +19,7 @@ The top-level [win](configuration.md#Configuration-win) key contains set of opti
<li><code id="WindowsConfiguration-sign">sign</code> String | (configuration: CustomWindowsSignTaskConfiguration) =&gt; Promise - The custom function (or path to file or module id) to sign Windows executable.</li>
<li><code id="WindowsConfiguration-certificateFile">certificateFile</code> String | “undefined” - The path to the *.pfx certificate you want to sign with. Please use it only if you cannot use env variable <code>CSC_LINK</code> (<code>WIN_CSC_LINK</code>) for some reason. Please see <a href="/code-signing">Code Signing</a>.</li>
<li><code id="WindowsConfiguration-certificatePassword">certificatePassword</code> String | “undefined” - The password to the certificate provided in <code>certificateFile</code>. Please use it only if you cannot use env variable <code>CSC_KEY_PASSWORD</code> (<code>WIN_CSC_KEY_PASSWORD</code>) for some reason. Please see <a href="/code-signing">Code Signing</a>.</li>
<li><code id="WindowsConfiguration-certificateSubjectName">certificateSubjectName</code> String | “undefined” - The name of the subject of the signing certificate. Required only for EV Code Signing and works only on Windows (or on macOS if <a href="https://www.parallels.com/products/desktop/">Parallels Desktop</a> Windows 10 virtual machines exits).</li>
<li><code id="WindowsConfiguration-certificateSubjectName">certificateSubjectName</code> String | “undefined” - The name of the subject of the signing certificate, which is often labeled with the field name <code>issued to</code>. Required only for EV Code Signing and works only on Windows (or on macOS if <a href="https://www.parallels.com/products/desktop/">Parallels Desktop</a> Windows 10 virtual machines exits).</li>
<li><code id="WindowsConfiguration-certificateSha1">certificateSha1</code> String | “undefined” - The SHA1 hash of the signing certificate. The SHA1 hash is commonly specified when multiple certificates satisfy the criteria specified by the remaining switches. Works only on Windows (or on macOS if <a href="https://www.parallels.com/products/desktop/">Parallels Desktop</a> Windows 10 virtual machines exits).</li>
<li><code id="WindowsConfiguration-additionalCertificateFile">additionalCertificateFile</code> String | “undefined” - The path to an additional certificate file you want to add to the signature block.</li>
<li><code id="WindowsConfiguration-rfc3161TimeStampServer">rfc3161TimeStampServer</code> = <code>http://timestamp.digicert.com</code> String | “undefined” - The URL of the RFC 3161 time stamp server.</li>
Expand Down
6 changes: 6 additions & 0 deletions packages/app-builder-lib/CHANGELOG.md
@@ -1,5 +1,11 @@
# app-builder-lib

## 23.0.1

### Patch Changes

- [#6660](https://github.com/electron-userland/electron-builder/pull/6660) [`4c6d1546`](https://github.com/electron-userland/electron-builder/commit/4c6d1546d4942aa9d9a93b7309e8ed279f6378d2) Thanks [@mifi](https://github.com/mifi)! - Fix error thrown due to duplicated signing of user-defined binaries on mac when resolving relative path

## 23.0.0

### Major 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": "23.0.0",
"version": "23.0.1",
"main": "out/index.js",
"files": [
"out",
Expand Down
2 changes: 1 addition & 1 deletion packages/app-builder-lib/src/version.ts
@@ -1 +1 @@
export const PACKAGE_VERSION = "23.0.0"
export const PACKAGE_VERSION = "23.0.1"
9 changes: 9 additions & 0 deletions packages/dmg-builder/CHANGELOG.md
@@ -1,5 +1,14 @@
# dmg-builder

## 23.0.1

### Patch Changes

- [#6672](https://github.com/electron-userland/electron-builder/pull/6672) [`3a4b64ab`](https://github.com/electron-userland/electron-builder/commit/3a4b64abb58f01e8a80e496b6c4681455b2434ca) Thanks [@pan93412](https://github.com/pan93412)! - fix(dmg-builder): the "import" unbound issue

- Updated dependencies [[`4c6d1546`](https://github.com/electron-userland/electron-builder/commit/4c6d1546d4942aa9d9a93b7309e8ed279f6378d2)]:
- app-builder-lib@23.0.1

## 23.0.0

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

## 23.0.1

### Patch Changes

- Updated dependencies [[`4c6d1546`](https://github.com/electron-userland/electron-builder/commit/4c6d1546d4942aa9d9a93b7309e8ed279f6378d2)]:
- app-builder-lib@23.0.1

## 23.0.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": "23.0.0",
"version": "23.0.1",
"main": "out/SquirrelWindowsTarget.js",
"author": "Vladimir Krivosheev",
"license": "MIT",
Expand Down
8 changes: 8 additions & 0 deletions packages/electron-builder/CHANGELOG.md
@@ -1,5 +1,13 @@
# electron-builder

## 23.0.1

### Patch Changes

- Updated dependencies [[`3a4b64ab`](https://github.com/electron-userland/electron-builder/commit/3a4b64abb58f01e8a80e496b6c4681455b2434ca), [`4c6d1546`](https://github.com/electron-userland/electron-builder/commit/4c6d1546d4942aa9d9a93b7309e8ed279f6378d2)]:
- dmg-builder@23.0.1
- app-builder-lib@23.0.1

## 23.0.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": "23.0.0",
"version": "23.0.1",
"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

## 23.0.1

### Patch Changes

- Updated dependencies [[`4c6d1546`](https://github.com/electron-userland/electron-builder/commit/4c6d1546d4942aa9d9a93b7309e8ed279f6378d2)]:
- app-builder-lib@23.0.1

## 23.0.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": "23.0.0",
"version": "23.0.1",
"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

## 23.0.1

### Patch Changes

- Updated dependencies [[`4c6d1546`](https://github.com/electron-userland/electron-builder/commit/4c6d1546d4942aa9d9a93b7309e8ed279f6378d2)]:
- app-builder-lib@23.0.1

## 23.0.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": "23.0.0",
"version": "23.0.1",
"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

## 23.0.1

### Patch Changes

- Updated dependencies [[`4c6d1546`](https://github.com/electron-userland/electron-builder/commit/4c6d1546d4942aa9d9a93b7309e8ed279f6378d2)]:
- app-builder-lib@23.0.1

## 23.0.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": "23.0.0",
"version": "23.0.1",
"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

## 23.0.1

### Patch Changes

- Updated dependencies [[`4c6d1546`](https://github.com/electron-userland/electron-builder/commit/4c6d1546d4942aa9d9a93b7309e8ed279f6378d2)]:
- app-builder-lib@23.0.1

## 23.0.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": "23.0.0",
"version": "23.0.1",
"main": "main.js",
"author": "Vladimir Krivosheev",
"license": "MIT",
Expand Down

0 comments on commit bf0382e

Please sign in to comment.