@flowcore/cli 2.5.1 → 2.5.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.
- package/CHANGELOG.md +7 -0
- package/README.md +5 -5
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,13 @@
|
|
|
10
10
|
|
|
11
11
|
* added description to start that includes week ([58687a7](https://github.com/flowcore-io/flowcore-cli/commit/58687a7bbb66aaa5d6da26af88e555cbb1e72467))
|
|
12
12
|
|
|
13
|
+
## [2.5.2](https://github.com/flowcore-io/flowcore-cli/compare/v2.5.1...v2.5.2) (2024-02-22)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* update flowcore/cli version to 2.5.1 and flowcore/cli-plugin-scenario version to 2.3.0 ([10d2c34](https://github.com/flowcore-io/flowcore-cli/commit/10d2c346a005a8e707f85ec5bf0772ae283927c0))
|
|
19
|
+
|
|
13
20
|
## [2.5.1](https://github.com/flowcore-io/flowcore-cli/compare/v2.5.0...v2.5.1) (2024-02-21)
|
|
14
21
|
|
|
15
22
|
|
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ $ npm install -g @flowcore/cli
|
|
|
18
18
|
$ flowcore COMMAND
|
|
19
19
|
running command...
|
|
20
20
|
$ flowcore (--version)
|
|
21
|
-
@flowcore/cli/2.5.
|
|
21
|
+
@flowcore/cli/2.5.2 linux-x64 node-v20.11.1
|
|
22
22
|
$ flowcore --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ flowcore COMMAND
|
|
@@ -70,7 +70,7 @@ EXAMPLES
|
|
|
70
70
|
$ flowcore apply -f ./path/to/manifest.yml
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
-
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.5.
|
|
73
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.5.2/src/commands/apply.ts)_
|
|
74
74
|
|
|
75
75
|
## `flowcore autocomplete [SHELL]`
|
|
76
76
|
|
|
@@ -532,7 +532,7 @@ EXAMPLES
|
|
|
532
532
|
$ cat <<EOF | flowcore scenario apply -f -
|
|
533
533
|
```
|
|
534
534
|
|
|
535
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.
|
|
535
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.3.0/src/commands/scenario/apply.ts)_
|
|
536
536
|
|
|
537
537
|
## `flowcore scenario local`
|
|
538
538
|
|
|
@@ -562,7 +562,7 @@ EXAMPLES
|
|
|
562
562
|
$ cat <<EOF | flowcore scenario local -f -
|
|
563
563
|
```
|
|
564
564
|
|
|
565
|
-
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.
|
|
565
|
+
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.3.0/src/commands/scenario/local.ts)_
|
|
566
566
|
|
|
567
567
|
## `flowcore stream STREAM`
|
|
568
568
|
|
|
@@ -600,7 +600,7 @@ EXAMPLES
|
|
|
600
600
|
$ flowcore stream https://flowcore.io/<org>/<data core>/<flow type>/[<event type1>,<event type2>,<event type3>].stream -o log -s 3m
|
|
601
601
|
```
|
|
602
602
|
|
|
603
|
-
_See code: [src/commands/stream.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.5.
|
|
603
|
+
_See code: [src/commands/stream.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.5.2/src/commands/stream.ts)_
|
|
604
604
|
|
|
605
605
|
## `flowcore version`
|
|
606
606
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"@datastructures-js/queue": "^4.2.3",
|
|
8
8
|
"@flowcore/cli-plugin-config": "^1.0.5",
|
|
9
9
|
"@flowcore/cli-plugin-data-core": "^2.0.0",
|
|
10
|
-
"@flowcore/cli-plugin-scenario": "^2.
|
|
10
|
+
"@flowcore/cli-plugin-scenario": "^2.3.0",
|
|
11
11
|
"@flowcore/time-bucket": "^1.1.0",
|
|
12
12
|
"@oclif/core": "^3",
|
|
13
13
|
"@oclif/plugin-autocomplete": "^3.0.2",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"prestart": "npm run build",
|
|
90
90
|
"update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
|
|
91
91
|
},
|
|
92
|
-
"version": "2.5.
|
|
92
|
+
"version": "2.5.2",
|
|
93
93
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
94
94
|
"keywords": [
|
|
95
95
|
"flowcore",
|