@salesforce/packaging 0.0.23 → 0.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/lib/utils/packageUtils.d.ts +1 -3
- package/lib/utils/packageUtils.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
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.
|
|
4
4
|
|
|
5
|
+
### [0.0.24](https://github.com/forcedotcom/packaging/compare/v0.0.23...v0.0.24) (2022-08-24)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- correct package alias generation ([c4617bd](https://github.com/forcedotcom/packaging/commit/c4617bd16eac1f2bfe5efadafc1062ea78ee352c))
|
|
10
|
+
|
|
5
11
|
### [0.0.23](https://github.com/forcedotcom/packaging/compare/v0.0.22...v0.0.23) (2022-08-22)
|
|
6
12
|
|
|
7
13
|
### Bug Fixes
|
|
@@ -148,9 +148,7 @@ export declare function pollForStatusWithInterval(id: string, retries: number, p
|
|
|
148
148
|
* @private
|
|
149
149
|
*/
|
|
150
150
|
export declare function generatePackageAliasEntry(connection: Connection, project: SfProject, packageVersionId: string, packageVersionNumber: string, branch: string, packageId: string): Promise<{
|
|
151
|
-
|
|
152
|
-
[p: string]: string;
|
|
153
|
-
};
|
|
151
|
+
[p: string]: string;
|
|
154
152
|
}>;
|
|
155
153
|
export declare function formatDate(date: Date): string;
|
|
156
154
|
export declare function combineSaveErrors(sObject: string, crudOperation: string, errors: SaveError[]): SfError;
|
|
@@ -653,7 +653,7 @@ async function generatePackageAliasEntry(connection, project, packageVersionId,
|
|
|
653
653
|
? `${packageName}@${packageVersionNumber}-${branch}`
|
|
654
654
|
: `${packageName}@${packageVersionNumber}`;
|
|
655
655
|
packageAliases[packageAlias] = packageVersionId;
|
|
656
|
-
return
|
|
656
|
+
return packageAliases;
|
|
657
657
|
}
|
|
658
658
|
exports.generatePackageAliasEntry = generatePackageAliasEntry;
|
|
659
659
|
/**
|