Skip to content

Commit d99da82

Browse files
chore(deploy): Release 23.3.1 ([email protected]) (#6986)
1 parent c3407a2 commit d99da82

File tree

25 files changed

+94
-30
lines changed

25 files changed

+94
-30
lines changed

.changeset/curly-oranges-attack.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/mighty-otters-sin.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/thirty-numbers-lick.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# [](https://github.com/electron-userland/electron-builder/compare/v23.3.0...v) (2022-07-07)
2+
3+
4+
### Bug Fixes
5+
6+
* add product scope to keygen publisher ([#6990](https://github.com/electron-userland/electron-builder/issues/6990)) ([c3407a2](https://github.com/electron-userland/electron-builder/commit/c3407a202d4dc1599b2cb90a7ff3d56e8e32309e))
7+
* parallel release creation with keygen publisher ([#6989](https://github.com/electron-userland/electron-builder/issues/6989)) ([7ad5101](https://github.com/electron-userland/electron-builder/commit/7ad5101b4a72df411b76cc500a6a0dca85bf6540))
8+
9+
10+
### Features
11+
12+
* Add installDir property for NsisUpdater ([#6907](https://github.com/electron-userland/electron-builder/issues/6907)) ([e7f2867](https://github.com/electron-userland/electron-builder/commit/e7f286776643823f9c906738aade1d71eb1bdd9c))
13+
14+
15+
116
# [](https://github.com/electron-userland/electron-builder/compare/v23.2.0...v) (2022-07-04)
217

318

docs/api/electron-builder.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1599,9 +1599,6 @@ return path.join(target.outDir, <code>__${target.name}-${getArtifactArchName(arc
15991599
<p>Currently false to prevent breaking the current API, but it should be changed to default true at some point that breaking changes are allowed.</p>
16001600
</li>
16011601
<li>
1602-
<p><code id="AppUpdater-installDirectory">installDirectory</code> string | “undefined”- <em>NSIS updater only</em> - Install folder for NSIS updater</p>
1603-
</li>
1604-
<li>
16051602
<p><code id="AppUpdater-currentVersion">currentVersion</code> SemVer - The current application version.</p>
16061603
</li>
16071604
<li>
@@ -1850,7 +1847,11 @@ This is different from the normal quit event sequence.</p>
18501847
<h2 id="nsisupdater-%E2%87%90-module%3Aelectron-updater%2Fout%2Fbaseupdater.baseupdater">NsisUpdater ⇐ <code>module:electron-updater/out/BaseUpdater.BaseUpdater</code></h2>
18511848
<p><strong>Kind</strong>: class of <a href="#module_electron-updater"><code>electron-updater</code></a><br/>
18521849
<strong>Extends</strong>: <code>module:electron-updater/out/BaseUpdater.BaseUpdater</code><br>
1853-
<a name="Provider"></a></p>
1850+
<strong>Properties</strong></p>
1851+
<ul>
1852+
<li><strong><code id="NsisUpdater-installDirectory">installDirectory</code></strong> String | “undefined” - Install dir</li>
1853+
</ul>
1854+
<p><a name="Provider"></a></p>
18541855
<h2 id="provider">Provider</h2>
18551856
<p><strong>Kind</strong>: class of <a href="#module_electron-updater"><code>electron-updater</code></a><br/>
18561857
<strong>Properties</strong></p>

packages/app-builder-lib/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# app-builder-lib
22

3+
## 23.3.1
4+
5+
### Patch Changes
6+
7+
- [#6989](https://github.com/electron-userland/electron-builder/pull/6989) [`7ad5101b`](https://github.com/electron-userland/electron-builder/commit/7ad5101b4a72df411b76cc500a6a0dca85bf6540) Thanks [@ezekg](https://github.com/ezekg)! - Fix issue where, upon publishing a new release, electron-builder would attempt to create the same release for each artifact in parallel, resulting in conflict errors.
8+
9+
* [#6990](https://github.com/electron-userland/electron-builder/pull/6990) [`c3407a20`](https://github.com/electron-userland/electron-builder/commit/c3407a202d4dc1599b2cb90a7ff3d56e8e32309e) Thanks [@ezekg](https://github.com/ezekg)! - Fix release conflicts for Keygen publisher when releases share the same version across open/licensed products.
10+
311
## 23.3.0
412

513
### Minor Changes

packages/app-builder-lib/package.json

Lines changed: 1 addition & 1 deletion
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": "23.3.0",
4+
"version": "23.3.1",
55
"main": "out/index.js",
66
"files": [
77
"out",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const PACKAGE_VERSION = "23.3.0"
1+
export const PACKAGE_VERSION = "23.3.1"

packages/dmg-builder/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# dmg-builder
22

3+
## 23.3.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`7ad5101b`](https://github.com/electron-userland/electron-builder/commit/7ad5101b4a72df411b76cc500a6a0dca85bf6540), [`c3407a20`](https://github.com/electron-userland/electron-builder/commit/c3407a202d4dc1599b2cb90a7ff3d56e8e32309e)]:
8+
9+
310
## 23.3.0
411

512
### Patch Changes

packages/dmg-builder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dmg-builder",
3-
"version": "23.3.0",
3+
"version": "23.3.1",
44
"main": "out/dmgUtil.js",
55
"author": "Vladimir Krivosheev",
66
"license": "MIT",

0 commit comments

Comments
 (0)