Skip to content

Commit f43e4f0

Browse files
author
Kevin Tapperson
authored
Merge pull request #58 from acoustic-content-samples/rel4.5.1
release 4.5.1
2 parents b3a4587 + d9612ef commit f43e4f0

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
### 4.5.1 changes since 4.5.0
4+
- Fix concurrency issue in pull with multiple assets referencing the same resource id
5+
36
### 4.5.0 changes since 4.4.0
47
- Fix path determination for server manifests
58
- Fix display output for delete all of default content

CLI/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "wchtools-cli",
33
"description": "Command line tools for Acoustic Content",
4-
"version": "4.5.0",
4+
"version": "4.5.1",
55
"keywords": [
66
"cli"
77
],

authoring-api/lib/assetsFS.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ class AssetsFS extends BaseFS {
507507
deferred.reject(err);
508508
} else {
509509
// Get the file path for a temporary file based on the resource ID.
510-
const tmppath = self.getPath(context, opts) + asset.resource;
510+
const tmppath = self.getPath(context, opts) + asset.resource + "_" + asset.id;
511511
self._getItemWriteStream(context, tmppath, opts)
512512
.then(function (stream) {
513513
stream.on("finish", function () {

authoring-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "wchtools-api",
33
"description": "Tools API for Acoustic Content",
4-
"version": "4.5.0",
4+
"version": "4.5.1",
55
"keywords": [
66
"api",
77
"tools"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "prod-tools",
3-
"version": "4.5.0",
3+
"version": "4.5.1",
44
"author": "Acoustic, L.P.",
55
"license": "Apache-2.0",
66
"bugs": {

0 commit comments

Comments
 (0)