@adobe/aem-cli 16.11.1 → 16.11.3
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 +16 -0
- package/package.json +4 -4
- package/src/import.cmd.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## [16.11.3](https://github.com/adobe/helix-cli/compare/v16.11.2...v16.11.3) (2025-09-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external fixes ([f2cf6e0](https://github.com/adobe/helix-cli/commit/f2cf6e0f507fdaf1cecd3f35ec7af5d336246257))
|
|
7
|
+
* update isomorphic-git import path for v1.32.2 compatibility ([d79fc88](https://github.com/adobe/helix-cli/commit/d79fc883a48a3475f04db78a48eda2473ec85e8c)), closes [#2569](https://github.com/adobe/helix-cli/issues/2569)
|
|
8
|
+
|
|
9
|
+
## [16.11.2](https://github.com/adobe/helix-cli/compare/v16.11.1...v16.11.2) (2025-09-13)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **deps:** update dependency @adobe/helix-shared-config to v11.1.10 ([b301df3](https://github.com/adobe/helix-cli/commit/b301df34f4c49f6d70831cac797c768c993fa308))
|
|
15
|
+
* update package-lock.json for helix-shared-config v11.1.10 ([3e66ca6](https://github.com/adobe/helix-cli/commit/3e66ca627cc7052bb50b7fa0152ab9a04fc0a36c)), closes [#2581](https://github.com/adobe/helix-cli/issues/2581)
|
|
16
|
+
|
|
1
17
|
## [16.11.1](https://github.com/adobe/helix-cli/compare/v16.11.0...v16.11.1) (2025-09-12)
|
|
2
18
|
|
|
3
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/aem-cli",
|
|
3
|
-
"version": "16.11.
|
|
3
|
+
"version": "16.11.3",
|
|
4
4
|
"description": "AEM CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@adobe/fetch": "4.2.2",
|
|
43
43
|
"@adobe/helix-log": "7.0.0",
|
|
44
|
-
"@adobe/helix-shared-config": "11.1.
|
|
44
|
+
"@adobe/helix-shared-config": "11.1.10",
|
|
45
45
|
"@adobe/helix-shared-git": "3.0.20",
|
|
46
46
|
"@adobe/helix-shared-indexer": "2.2.5",
|
|
47
47
|
"camelcase": "8.0.0",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"compression": "1.8.1",
|
|
51
51
|
"cookie": "1.0.2",
|
|
52
52
|
"cookie-parser": "1.4.7",
|
|
53
|
-
"dotenv": "17.2.
|
|
53
|
+
"dotenv": "17.2.1",
|
|
54
54
|
"express": "5.1.0",
|
|
55
55
|
"faye-websocket": "0.11.4",
|
|
56
56
|
"fs-extra": "11.3.0",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"https-proxy-agent": "7.0.6",
|
|
62
62
|
"ignore": "7.0.5",
|
|
63
63
|
"ini": "5.0.0",
|
|
64
|
-
"isomorphic-git": "1.32.
|
|
64
|
+
"isomorphic-git": "1.32.2",
|
|
65
65
|
"jose": "6.0.12",
|
|
66
66
|
"livereload-js": "4.0.2",
|
|
67
67
|
"node-fetch": "3.3.2",
|
package/src/import.cmd.js
CHANGED
|
@@ -13,7 +13,7 @@ import fse from 'fs-extra';
|
|
|
13
13
|
import path from 'path';
|
|
14
14
|
import chalk from 'chalk-template';
|
|
15
15
|
import git from 'isomorphic-git';
|
|
16
|
-
import http from 'isomorphic-git/http/node
|
|
16
|
+
import http from 'isomorphic-git/http/node';
|
|
17
17
|
import GitUtils from './git-utils.js';
|
|
18
18
|
import { HelixImportProject } from './server/HelixImportProject.js';
|
|
19
19
|
import pkgJson from './package.cjs';
|