stepzen 0.59.0 → 0.60.0-experimental.10472b2
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/README.md +3 -3
- package/oclif.manifest.json +1 -1
- package/package.json +23 -14
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ $ npm install -g stepzen
|
|
|
36
36
|
$ stepzen COMMAND
|
|
37
37
|
running command...
|
|
38
38
|
$ stepzen (--version|-v)
|
|
39
|
-
stepzen/0.
|
|
39
|
+
stepzen/0.60.0-experimental.10472b2 linux-x64 node-v22.23.1
|
|
40
40
|
$ stepzen --help [COMMAND]
|
|
41
41
|
USAGE
|
|
42
42
|
$ stepzen COMMAND
|
|
@@ -176,7 +176,7 @@ DESCRIPTION
|
|
|
176
176
|
Display help for stepzen.
|
|
177
177
|
```
|
|
178
178
|
|
|
179
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.
|
|
179
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.53/src/commands/help.ts)_
|
|
180
180
|
|
|
181
181
|
## `stepzen import [SOURCE]`
|
|
182
182
|
|
|
@@ -1144,7 +1144,7 @@ FLAG DESCRIPTIONS
|
|
|
1144
1144
|
Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
|
|
1145
1145
|
```
|
|
1146
1146
|
|
|
1147
|
-
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/2.2.
|
|
1147
|
+
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/2.2.50/src/commands/version.ts)_
|
|
1148
1148
|
|
|
1149
1149
|
## `stepzen whoami`
|
|
1150
1150
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stepzen",
|
|
3
3
|
"description": "The StepZen CLI",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.60.0-experimental.10472b2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Darren Waddell <darren@stepzen.com>",
|
|
7
7
|
"contributors": [
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"@oclif/plugin-version": "^2.2.41",
|
|
33
33
|
"@segment/analytics-node": "^2.2.0",
|
|
34
34
|
"@soluble/dsn-parser": "^1.7.5",
|
|
35
|
-
"@stepzen/fetch": "0.
|
|
36
|
-
"@stepzen/graphiql-proxy": "0.
|
|
37
|
-
"@stepzen/sdk": "0.
|
|
38
|
-
"@stepzen/transpiler": "0.
|
|
35
|
+
"@stepzen/fetch": "0.60.0-experimental.10472b2",
|
|
36
|
+
"@stepzen/graphiql-proxy": "0.60.0-experimental.10472b2",
|
|
37
|
+
"@stepzen/sdk": "0.60.0-experimental.10472b2",
|
|
38
|
+
"@stepzen/transpiler": "0.60.0-experimental.10472b2",
|
|
39
39
|
"chalk": "^4.1.2",
|
|
40
40
|
"chokidar": "^3.6.0",
|
|
41
41
|
"compare-versions": "^6.1.1",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"prettier": "^2.8.3",
|
|
52
52
|
"pretty-ms": "^7.0.1",
|
|
53
53
|
"puka": "^1.0.1",
|
|
54
|
-
"shelljs": "^0.
|
|
54
|
+
"shelljs": "^0.10.0",
|
|
55
55
|
"string-argv": "^0.3.2",
|
|
56
56
|
"tty-table": "^4.2.3",
|
|
57
57
|
"uuid": "^14.0.0",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"yaml": "^2.6.1"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@types/chai": "^
|
|
62
|
+
"@types/chai": "^5.0.0",
|
|
63
63
|
"@types/debug": "^4.1.12",
|
|
64
64
|
"@types/detect-port": "^1.3.5",
|
|
65
65
|
"@types/fs-extra": "^11.0.4",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"@types/node-fetch": "^2.6.12",
|
|
71
71
|
"@types/prettier": "^2.7.3",
|
|
72
72
|
"@types/semver": "^7.5.8",
|
|
73
|
-
"@types/shelljs": "^0.
|
|
73
|
+
"@types/shelljs": "^0.10.0",
|
|
74
74
|
"@types/sinon-chai": "3.2.12",
|
|
75
75
|
"@types/uuid": "^10.0.0",
|
|
76
76
|
"@types/ws": "^8.5.13",
|
|
@@ -137,32 +137,41 @@
|
|
|
137
137
|
"overrides": {
|
|
138
138
|
"@oclif/core": {
|
|
139
139
|
"password-prompt": {
|
|
140
|
-
"--comment--": "workaround for CVE-2022-25883",
|
|
141
140
|
"cross-spawn": "^7.0.0"
|
|
141
|
+
},
|
|
142
|
+
"minimatch": {
|
|
143
|
+
"brace-expansion": "^5.0.7"
|
|
142
144
|
}
|
|
143
145
|
},
|
|
144
146
|
"@oclif/plugin-plugins": {
|
|
145
147
|
"npm": "^11.0.0"
|
|
146
148
|
},
|
|
147
149
|
"cacheable-request": {
|
|
148
|
-
"--comment--": "workaround for CVE-2022-25881",
|
|
149
150
|
"http-cache-semantics": "^4.1.1"
|
|
150
151
|
},
|
|
151
152
|
"make-fetch-happen": {
|
|
152
|
-
"--comment--": "workaround for CVE-2022-25881",
|
|
153
153
|
"http-cache-semantics": "^4.1.1"
|
|
154
154
|
},
|
|
155
|
-
"--comment--": "workaround for CVE-2024-4067, CVE-2024-21538, CVE-2025-7783, CVE-2026-4800 and CVE-2026-33671",
|
|
156
155
|
"micromatch": "^4.0.8",
|
|
157
156
|
"cross-spawn": "^7.0.6",
|
|
158
157
|
"lodash": "^4.18.0",
|
|
159
158
|
"picomatch": "^4.0.4",
|
|
160
159
|
"minimatch": {
|
|
161
|
-
"brace-expansion": "^2.
|
|
160
|
+
"brace-expansion": "^2.1.2"
|
|
162
161
|
},
|
|
163
162
|
"@oclif/plugin-version": {
|
|
164
163
|
"@oclif/core": "^4.10.5"
|
|
164
|
+
},
|
|
165
|
+
"nodemon": {
|
|
166
|
+
"minimatch": {
|
|
167
|
+
"brace-expansion": "^5.0.7"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"test-exclude": {
|
|
171
|
+
"minimatch": {
|
|
172
|
+
"brace-expansion": "^5.0.7"
|
|
173
|
+
}
|
|
165
174
|
}
|
|
166
175
|
},
|
|
167
|
-
"gitHead": "
|
|
176
|
+
"gitHead": "10472b2281844aa036b600a91b954c4a32752e1f"
|
|
168
177
|
}
|