@adobe/aem-cli 16.10.17 → 16.10.19

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 CHANGED
@@ -1,3 +1,17 @@
1
+ ## [16.10.19](https://github.com/adobe/helix-cli/compare/v16.10.18...v16.10.19) (2025-04-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **2520:** Provide version information about the current aem-cli ([#2521](https://github.com/adobe/helix-cli/issues/2521)) ([58548df](https://github.com/adobe/helix-cli/commit/58548dfcae26fd6d4e96a432850bd0ba5fdc6836))
7
+
8
+ ## [16.10.18](https://github.com/adobe/helix-cli/compare/v16.10.17...v16.10.18) (2025-04-21)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update dependency open to v10.1.1 ([#2522](https://github.com/adobe/helix-cli/issues/2522)) ([0bdcd37](https://github.com/adobe/helix-cli/commit/0bdcd37056ab1e5338e98456bc25991c9c1d0644))
14
+
1
15
  ## [16.10.17](https://github.com/adobe/helix-cli/compare/v16.10.16...v16.10.17) (2025-04-15)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/aem-cli",
3
- "version": "16.10.17",
3
+ "version": "16.10.19",
4
4
  "description": "AEM CLI",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -65,7 +65,7 @@
65
65
  "jose": "6.0.10",
66
66
  "livereload-js": "4.0.2",
67
67
  "node-fetch": "3.3.2",
68
- "open": "10.1.0",
68
+ "open": "10.1.1",
69
69
  "progress": "2.0.3",
70
70
  "proxy-agent": "6.5.0",
71
71
  "proxy-from-env": "1.1.0",
@@ -63,6 +63,13 @@ export class BaseServer extends EventEmitter {
63
63
  res.send('Goodbye!');
64
64
  this.stop();
65
65
  });
66
+ this._app.get('/.hlx/version', async (req, res) => {
67
+ res.set('Content-Type', 'application/json');
68
+ res.json({
69
+ version: packageJson.version,
70
+ name: packageJson.name,
71
+ });
72
+ });
66
73
  }
67
74
 
68
75
  withPort(port) {