Skip to content

Commit bce9e63

Browse files
chore(release): 3.0.0 [skip ci]
# [3.0.0](2.0.0...3.0.0) (2022-12-16) ### Bug Fixes * **deps:** update dependencies to incorporate http proxy bugfix. fixes [#374](#374) ([32c1d39](32c1d39)) * **deps:** update dependencies to incorporate http proxy bugfix. fixes [#374](#374) ([5651847](5651847)) ### chore * reverted version change and will let the bot do this ([2ba0305](2ba0305)) ### BREAKING CHANGES * **deps:** dependent library reference has been updated to a new major version * dependent library reference has been updated to a new major version
1 parent 32c1d39 commit bce9e63

File tree

5 files changed

+34
-15
lines changed

5 files changed

+34
-15
lines changed

CHANGELOG.md

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

3+
# [3.0.0](https://github.com/adobe/aio-lib-cloudmanager/compare/2.0.0...3.0.0) (2022-12-16)
4+
5+
6+
### Bug Fixes
7+
8+
* **deps:** update dependencies to incorporate http proxy bugfix. fixes [#374](https://github.com/adobe/aio-lib-cloudmanager/issues/374) ([32c1d39](https://github.com/adobe/aio-lib-cloudmanager/commit/32c1d3958dc3b26aa9b34616ea5423d588bfaa8b))
9+
* **deps:** update dependencies to incorporate http proxy bugfix. fixes [#374](https://github.com/adobe/aio-lib-cloudmanager/issues/374) ([5651847](https://github.com/adobe/aio-lib-cloudmanager/commit/5651847db096a985d04a21184fdf7e5eebc9427d))
10+
11+
12+
### chore
13+
14+
* reverted version change and will let the bot do this ([2ba0305](https://github.com/adobe/aio-lib-cloudmanager/commit/2ba03057351b08efe64bd06c3139a1db0194365b))
15+
16+
17+
### BREAKING CHANGES
18+
19+
* **deps:** dependent library reference has been updated to a new major version
20+
* dependent library reference has been updated to a new major version
21+
322
# [2.0.0](https://github.com/adobe/aio-lib-cloudmanager/compare/1.14.1...2.0.0) (2022-03-01)
423

524

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -684,15 +684,15 @@ A lightweight representation of a Program
684684
**Kind**: global typedef
685685
**Properties**
686686

687-
| Name | Type | Description |
688-
|-----------|----------------------|---------------------------------------------------------------|
689-
| id | <code>string</code> | Identifier of the program. Unique within the space. |
690-
| name | <code>string</code> | Name of the program |
691-
| enabled | <code>boolean</code> | Whether this Program has been enabled for Cloud Manager usage |
692-
| orgId | <code>string</code> | Org Id |
693-
| status | <code>string</code> | Status of the program |
694-
| createdAt | <code>string</code> | Created time |
695-
| updatedAt | <code>string</code> | Date of last change |
687+
| Name | Type | Description |
688+
| --- | --- | --- |
689+
| id | <code>string</code> | Identifier of the program. Unique within the space. |
690+
| name | <code>string</code> | Name of the program |
691+
| enabled | <code>boolean</code> | Whether this Program has been enabled for Cloud Manager usage |
692+
| tenantId | <code>string</code> | Tenant Id |
693+
| status | <code>string</code> | Status of the program |
694+
| createdAt | <code>string</code> | Created time |
695+
| updatedAt | <code>string</code> | Date of last change |
696696

697697
<a name="Pipeline"></a>
698698

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adobe/aio-lib-cloudmanager",
3-
"version": "2.0.0",
3+
"version": "3.0.0",
44
"description": "Adobe I/O Cloud Manager Library",
55
"repository": {
66
"type": "git",

src/sdktypes.jsdoc.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ governing permissions and limitations under the License.
2424
* @property {string} id - Identifier of the program. Unique within the space.
2525
* @property {string} name - Name of the program
2626
* @property {boolean} enabled - Whether this Program has been enabled for Cloud Manager usage
27-
* @property {string} orgId - Org Id
27+
* @property {string} tenantId - Tenant Id
2828
* @property {string} status - Status of the program
2929
* @property {string} createdAt - Created time
3030
* @property {string} updatedAt - Date of last change
@@ -55,9 +55,9 @@ governing permissions and limitations under the License.
5555
* @typedef {object} PipelinePhase
5656
* @property {string} name - Name of the phase
5757
* @property {string} type - Type of the phase
58-
* @property {string} repositoryId - Identifier of the source repository. The code from this repository will be build at the start of this phase.
58+
* @property {string} repositoryId - Identifier of the source repository. The code from this repository will be build at the start of this phase.
5959
Mandatory if type=BUILD
60-
* @property {string} branch - Name of the tracked branch or a fully qualified git tag (e.g. refs/tags/v1).
60+
* @property {string} branch - Name of the tracked branch or a fully qualified git tag (e.g. refs/tags/v1).
6161
Assumed to be `master` if missing.
6262
* @property {string} environmentId - Identifier of the target environment. Mandatory if type=DEPLOY
6363
* @property {string} environmentType - Type of environment (for example stage or prod, readOnly = true)

types.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ declare class CloudManagerAPI {
298298
* @property id - Identifier of the program. Unique within the space.
299299
* @property name - Name of the program
300300
* @property enabled - Whether this Program has been enabled for Cloud Manager usage
301-
* @property orgId - Org Id
301+
* @property tenantId - Tenant Id
302302
* @property status - Status of the program
303303
* @property createdAt - Created time
304304
* @property updatedAt - Date of last change
@@ -307,7 +307,7 @@ declare type EmbeddedProgram = {
307307
id: string;
308308
name: string;
309309
enabled: boolean;
310-
orgId: string;
310+
tenantId: string;
311311
status: string;
312312
createdAt: string;
313313
updatedAt: string;

0 commit comments

Comments
 (0)