@lenne.tech/cli 1.37.0 → 1.37.2

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.
@@ -260,10 +260,12 @@ const NewCommand = {
260
260
  info(` - dev domains: dev.${domain} (app) + api.dev.${domain} (api)`);
261
261
  info(` 2. CI/CD variables: TURBOOPS_PROJECT=${project} and TURBOOPS_TOKEN=<token> (masked).`);
262
262
  info(' GitLab: Settings > CI/CD > Variables. GitHub: a repo variable + a repo secret.');
263
- info(' 3. DNS A/AAAA records -> your server IP. A wildcard matches exactly ONE label, so:');
263
+ info(' 3. DNS A/AAAA records -> your server IP:');
264
264
  info(` - ${domain} (apex — NOT covered by a wildcard)`);
265
- info(` - *.${domain} (covers api.${domain} and dev.${domain})`);
266
- info(` - *.dev.${domain} (covers api.dev.${domain})`);
265
+ info(` - *.${domain} (covers api.${domain}, dev.${domain} AND api.dev.${domain}:`);
266
+ info(' a DNS wildcard matches one or MORE labels, RFC 4592)');
267
+ info(` - *.dev.${domain} only needed if dev.${domain} exists as an EXPLICIT record`);
268
+ info(' (an explicit node blocks the parent wildcard for names below it)');
267
269
  info(' 4. Set the stage env vars in TurboOps (per stage), e.g. for production:');
268
270
  info(` NODE_ENV=production, NSC__BASE_URL=https://api.${domain},`);
269
271
  info(' NSC__MONGOOSE__URI, NSC__BETTER_AUTH__SECRET, NSC__AI__ENCRYPTION_SECRET,');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lenne.tech/cli",
3
- "version": "1.37.0",
3
+ "version": "1.37.2",
4
4
  "description": "lenne.Tech CLI: lt",
5
5
  "keywords": [
6
6
  "lenne.Tech",
@@ -61,19 +61,19 @@
61
61
  "bin"
62
62
  ],
63
63
  "dependencies": {
64
- "@aws-sdk/client-s3": "3.1053.0",
64
+ "@aws-sdk/client-s3": "3.1090.0",
65
65
  "@lenne.tech/cli-plugin-helper": "0.0.14",
66
- "axios": "1.16.1",
66
+ "axios": "1.18.1",
67
67
  "bcrypt": "6.0.0",
68
- "defuddle": "0.18.1",
68
+ "defuddle": "0.19.1",
69
69
  "glob": "13.0.6",
70
70
  "gluegun": "5.2.2",
71
71
  "js-sha256": "0.11.1",
72
- "js-yaml": "4.2.0",
72
+ "js-yaml": "4.3.0",
73
73
  "jsdom": "29.1.1",
74
74
  "lodash": "4.18.1",
75
75
  "open": "11.0.0",
76
- "playwright-core": "1.60.0",
76
+ "playwright-core": "1.61.1",
77
77
  "ts-morph": "28.0.0",
78
78
  "ts-node": "10.9.2",
79
79
  "turndown": "7.2.4",
@@ -88,9 +88,9 @@
88
88
  "@types/js-yaml": "4.0.9",
89
89
  "@types/jsdom": "28.0.1",
90
90
  "@types/lodash": "4.17.24",
91
- "@types/node": "25.9.1",
91
+ "@types/node": "26.1.1",
92
92
  "@types/turndown": "5.0.6",
93
- "ejs": "5.0.2",
93
+ "ejs": "6.0.1",
94
94
  "eslint": "9.39.4",
95
95
  "husky": "9.1.7",
96
96
  "jest": "30.4.2",
@@ -100,20 +100,10 @@
100
100
  "ts-jest": "29.4.11"
101
101
  },
102
102
  "//overrides": {
103
- "brace-expansion@5.0.2 - 5.0.5": "Security fix: GHSA-jxxr-4gwj-5jf2 (large numeric range defeats max DoS protection) in brace-expansion 5.0.2-5.0.5 - transitive via minimatch under glob, @ts-morph/common, @typescript-eslint/typescript-estree. Remove once those parents resolve minimatch to a brace-expansion >=5.0.6.",
104
- "semver@*": "Force latest semver 7.x across all sub-deps; gluegun@5.2.2 pins semver@7.7.0 which is stale - remove once gluegun updates its dep.",
105
- "js-yaml": "Security fix: GHSA-h67p-54hq-rp68 (quadratic-complexity DoS in merge-key handling) in js-yaml <=4.1.1. Forces 4.2.0 everywhere, incl. the 3.14.2 pulled transitively by @istanbuljs/load-nyc-config under babel-plugin-istanbul (jest coverage); that loader only runs js-yaml when reading a YAML nyc config, which this project does not use. Remove once the jest toolchain resolves js-yaml >=4.2.0 itself.",
106
- "form-data": "Security fix: GHSA-hmw2-7cc7-3qxx (CRLF injection via unescaped multipart field names) in form-data 4.0.0-4.0.5 - transitive via axios. Remove once axios pins form-data >=4.0.6.",
107
- "@babel/core": "Security fix: GHSA-4x5r-pxfx-6jf8 (arbitrary file read via sourceMappingURL) in @babel/core <=7.29.0 - transitive via the jest toolchain. Remove once jest resolves @babel/core >=7.29.6.",
108
- "undici": "Security fix: GHSA-vmh5-mc38-953g (TLS certificate validation bypass via dropped requestTls in SOCKS5 ProxyAgent) and GHSA-pr7r-676h-xcf6 (cross-user info disclosure via shared cache whitespace bypass) in undici 7.0.0-7.27.2 - transitive via jsdom (jest test environment). Forces 7.28.0, which satisfies jsdom's ^7.25.0 range. Remove once jsdom resolves undici >=7.28.0."
103
+ "semver@*": "Force latest semver 7.x across all sub-deps; gluegun@5.2.2 pins semver@7.7.0 which is stale - remove once gluegun updates its dep."
109
104
  },
110
105
  "overrides": {
111
- "@babel/core": "7.29.7",
112
- "brace-expansion@5.0.2 - 5.0.5": "5.0.6",
113
- "form-data": "4.0.6",
114
- "js-yaml": "4.2.0",
115
- "semver@*": "7.8.1",
116
- "undici": "7.28.0"
106
+ "semver@*": "7.8.5"
117
107
  },
118
108
  "jest": {
119
109
  "testEnvironment": "node",
@@ -130,36 +120,5 @@
130
120
  }
131
121
  ]
132
122
  }
133
- },
134
- "pnpm": {
135
- "overrides": {
136
- "@apollo/server": "5.5.1",
137
- "@babel/plugin-transform-modules-systemjs": "7.29.4",
138
- "@hono/node-server": "1.19.14",
139
- "@protobufjs/utf8": "1.1.1",
140
- "ajv": "8.20.0",
141
- "axios": "1.16.0",
142
- "brace-expansion@<1.1.13": "1.1.14",
143
- "brace-expansion@>=2.0.0 <2.0.3": "2.1.0",
144
- "brace-expansion@>=5.0.0 <5.0.6": "5.0.6",
145
- "effect": "3.21.2",
146
- "fast-uri": "3.1.2",
147
- "hono": "4.12.22",
148
- "lodash": "4.18.1",
149
- "picomatch": "4.0.4",
150
- "qs": "6.15.2",
151
- "uuid": "14.0.0",
152
- "vite": "8.0.10",
153
- "ws@>=8.0.0 <8.20.1": "8.21.0"
154
- },
155
- "onlyBuiltDependencies": [
156
- "@apollo/protobufjs",
157
- "@compodoc/compodoc",
158
- "@nestjs/core",
159
- "@scarf/scarf",
160
- "@swc/core",
161
- "bcrypt",
162
- "esbuild"
163
- ]
164
123
  }
165
124
  }