@adobe/aem-cli 16.20.7 → 16.20.9
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/server/HelixServer.js +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [16.20.9](https://github.com/adobe/helix-cli/compare/v16.20.8...v16.20.9) (2026-07-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* inject hlx:proxyUrl meta for pages served from local content/ ([#2753](https://github.com/adobe/helix-cli/issues/2753)) ([271bfcf](https://github.com/adobe/helix-cli/commit/271bfcfa01316944ce5b4e26e767d59a189b78bc))
|
|
7
|
+
|
|
8
|
+
## [16.20.8](https://github.com/adobe/helix-cli/compare/v16.20.7...v16.20.8) (2026-07-06)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update external fixes ([#2757](https://github.com/adobe/helix-cli/issues/2757)) ([c9fdfd8](https://github.com/adobe/helix-cli/commit/c9fdfd8fca32a222562f32147a7a2b7d89d205b6))
|
|
14
|
+
|
|
1
15
|
## [16.20.7](https://github.com/adobe/helix-cli/compare/v16.20.6...v16.20.7) (2026-07-02)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/aem-cli",
|
|
3
|
-
"version": "16.20.
|
|
3
|
+
"version": "16.20.9",
|
|
4
4
|
"description": "AEM CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"https-proxy-agent": "9.1.0",
|
|
69
69
|
"ignore": "7.0.5",
|
|
70
70
|
"ini": "7.0.0",
|
|
71
|
-
"isomorphic-git": "1.38.
|
|
71
|
+
"isomorphic-git": "1.38.5",
|
|
72
72
|
"jose": "6.2.3",
|
|
73
73
|
"mime": "4.1.0",
|
|
74
74
|
"livereload-js": "4.0.2",
|
|
@@ -79,10 +79,10 @@
|
|
|
79
79
|
"proxy-agent": "8.0.2",
|
|
80
80
|
"proxy-from-env": "2.1.0",
|
|
81
81
|
"rehype-parse": "9.0.1",
|
|
82
|
-
"semver": "7.8.
|
|
82
|
+
"semver": "7.8.5",
|
|
83
83
|
"shelljs": "0.10.0",
|
|
84
84
|
"unified": "11.0.5",
|
|
85
|
-
"uuid": "14.0.
|
|
85
|
+
"uuid": "14.0.1",
|
|
86
86
|
"xdg-basedir": "5.1.0",
|
|
87
87
|
"yargs": "18.0.0"
|
|
88
88
|
},
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"esmock": "2.7.6",
|
|
97
97
|
"husky": "9.1.7",
|
|
98
98
|
"junit-report-builder": "5.1.2",
|
|
99
|
-
"lint-staged": "17.0.
|
|
99
|
+
"lint-staged": "17.0.8",
|
|
100
100
|
"mocha": "11.7.6",
|
|
101
101
|
"mocha-multi-reporters": "1.5.1",
|
|
102
102
|
"nock": "13.5.6",
|
|
@@ -503,6 +503,13 @@ export class HelixServer extends BaseServer {
|
|
|
503
503
|
htmlContent = htmlContent.replace(/<\/head>/i, `${metaTagsHtml}</head>`);
|
|
504
504
|
}
|
|
505
505
|
}
|
|
506
|
+
const proxyPageUrl = new URL(ctx.url, proxyUrl);
|
|
507
|
+
for (const [key, value] of proxyUrl.searchParams.entries()) {
|
|
508
|
+
proxyPageUrl.searchParams.append(key, value);
|
|
509
|
+
}
|
|
510
|
+
htmlContent = utils.injectMeta(htmlContent, {
|
|
511
|
+
'hlx:proxyUrl': proxyPageUrl.href,
|
|
512
|
+
});
|
|
506
513
|
if (liveReload) {
|
|
507
514
|
htmlContent = utils.injectLiveReloadScript(htmlContent, this);
|
|
508
515
|
liveReload.registerFile(ctx.requestId, contentFilePath);
|