Skip to content

Commit 1d7aff5

Browse files
authored
chore(release): v2.63.1 (#23995)
See [CHANGELOG](https://github.com/aws/aws-cdk/blob/patch/v2.63.1/CHANGELOG.v2.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
2 parents 7f4e35e + 499a940 commit 1d7aff5

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.v2.alpha.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [2.63.1-alpha.0](https://github.com/aws/aws-cdk/compare/v2.63.0-alpha.0...v2.63.1-alpha.0) (2023-02-03)
6+
57
## [2.63.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.62.2-alpha.0...v2.63.0-alpha.0) (2023-01-31)
68

79

CHANGELOG.v2.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [2.63.1](https://github.com/aws/aws-cdk/compare/v2.63.0...v2.63.1) (2023-02-03)
6+
7+
8+
### Reverts
9+
10+
* **cdk-assets:** packaging assets is broken on Node older than 14.17 ([#23994](https://github.com/aws/aws-cdk/issues/23994)) ([1976f1a](https://github.com/aws/aws-cdk/commit/1976f1a7f585b1adb582c5cb557b96ed38418fca)), closes [#23859](https://github.com/aws/aws-cdk/issues/23859)
11+
512
## [2.63.0](https://github.com/aws/aws-cdk/compare/v2.62.2...v2.63.0) (2023-01-31)
613

714

packages/cdk-assets/lib/private/archive.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { randomUUID } from 'crypto';
21
import { createWriteStream, promises as fs } from 'fs';
32
import * as path from 'path';
43
import * as glob from 'glob';
@@ -12,7 +11,7 @@ type Logger = (x: string) => void;
1211
export async function zipDirectory(directory: string, outputFile: string, logger: Logger): Promise<void> {
1312
// We write to a temporary file and rename at the last moment. This is so that if we are
1413
// interrupted during this process, we don't leave a half-finished file in the target location.
15-
const temporaryOutputFile = `${outputFile}.${randomUUID()}._tmp`;
14+
const temporaryOutputFile = `${outputFile}._tmp`;
1615
await writeZipFile(directory, temporaryOutputFile);
1716
await moveIntoPlace(temporaryOutputFile, outputFile, logger);
1817
}
@@ -97,4 +96,4 @@ async function pathExists(x: string) {
9796
}
9897
throw e;
9998
}
100-
}
99+
}

version.v2.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "2.63.0",
3-
"alphaVersion": "2.63.0-alpha.0"
2+
"version": "2.63.1",
3+
"alphaVersion": "2.63.1-alpha.0"
44
}

0 commit comments

Comments
 (0)