@adobe/aem-cli 16.9.3 → 16.9.5
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 +14 -0
- package/package.json +5 -5
- package/src/up.cmd.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [16.9.5](https://github.com/adobe/helix-cli/compare/v16.9.4...v16.9.5) (2025-01-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Force Selecting Account when logging in via the CLI ([#2484](https://github.com/adobe/helix-cli/issues/2484)) ([c0e9c41](https://github.com/adobe/helix-cli/commit/c0e9c415706302590edc50c4df598d0d70f22cb3))
|
|
7
|
+
|
|
8
|
+
## [16.9.4](https://github.com/adobe/helix-cli/compare/v16.9.3...v16.9.4) (2025-01-28)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update dependency @adobe/helix-shared-config to v11.0.15 ([#2480](https://github.com/adobe/helix-cli/issues/2480)) ([4fb07b1](https://github.com/adobe/helix-cli/commit/4fb07b196129e027eb87a30f2e5277ad86551895))
|
|
14
|
+
|
|
1
15
|
## [16.9.3](https://github.com/adobe/helix-cli/compare/v16.9.2...v16.9.3) (2025-01-20)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/aem-cli",
|
|
3
|
-
"version": "16.9.
|
|
3
|
+
"version": "16.9.5",
|
|
4
4
|
"description": "AEM CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@adobe/fetch": "4.1.11",
|
|
42
42
|
"@adobe/helix-log": "6.0.5",
|
|
43
|
-
"@adobe/helix-shared-config": "11.0.
|
|
43
|
+
"@adobe/helix-shared-config": "11.0.15",
|
|
44
44
|
"@adobe/helix-shared-git": "3.0.17",
|
|
45
45
|
"@adobe/helix-shared-indexer": "2.2.2",
|
|
46
46
|
"camelcase": "8.0.0",
|
|
@@ -82,11 +82,11 @@
|
|
|
82
82
|
"@semantic-release/git": "10.0.1",
|
|
83
83
|
"c8": "10.1.3",
|
|
84
84
|
"eslint": "8.57.1",
|
|
85
|
-
"esmock": "2.
|
|
85
|
+
"esmock": "2.7.0",
|
|
86
86
|
"husky": "9.1.7",
|
|
87
87
|
"junit-report-builder": "5.1.1",
|
|
88
|
-
"lint-staged": "15.4.
|
|
89
|
-
"mocha": "11.0
|
|
88
|
+
"lint-staged": "15.4.3",
|
|
89
|
+
"mocha": "11.1.0",
|
|
90
90
|
"mocha-multi-reporters": "1.5.1",
|
|
91
91
|
"nock": "13.5.6",
|
|
92
92
|
"semantic-release": "24.2.1",
|
package/src/up.cmd.js
CHANGED
|
@@ -106,7 +106,7 @@ export default class UpCommand extends AbstractServerCommand {
|
|
|
106
106
|
.withOrg(org)
|
|
107
107
|
.withSiteLoginUrl(
|
|
108
108
|
// TODO switch to production URL
|
|
109
|
-
`https://admin.hlx.page/login/${org}/${site}/main?client_id=aem-cli&redirect_uri=${encodeURIComponent(`http://localhost:${this._httpPort}/.aem/cli/login/ack`)}`,
|
|
109
|
+
`https://admin.hlx.page/login/${org}/${site}/main?client_id=aem-cli&redirect_uri=${encodeURIComponent(`http://localhost:${this._httpPort}/.aem/cli/login/ack`)}&selectAccount=true`,
|
|
110
110
|
);
|
|
111
111
|
}
|
|
112
112
|
|