@rockcarver/frodo-cli 0.14.1 → 0.15.1-0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +19 -1
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.15.1-0] - 2022-10-04
11
+
12
+ ### Added
13
+
14
+ - \#70: Added ability to create custom logging noise filters
15
+
16
+ ## [0.15.0] - 2022-10-04
17
+
18
+ ### Added
19
+
20
+ - New `frodo journey` sub-commands:
21
+ - `frodo journey enable -i 'journeyId'` to enable a journey by name/id
22
+ - `frodo journey disable -i 'journeyId'` to disable a journey by name/id
23
+
10
24
  ## [0.14.1] - 2022-10-03
11
25
 
12
26
  ### Fixed
@@ -594,7 +608,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
594
608
  - Fixed problem with adding connection profiles
595
609
  - Miscellaneous bug fixes
596
610
 
597
- [Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v0.14.1...HEAD
611
+ [Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v0.15.1-0...HEAD
612
+
613
+ [0.15.1-0]: https://github.com/rockcarver/frodo-cli/compare/v0.15.0...v0.15.1-0
614
+
615
+ [0.15.0]: https://github.com/rockcarver/frodo-cli/compare/v0.14.1...v0.15.0
598
616
 
599
617
  [0.14.1]: https://github.com/rockcarver/frodo-cli/compare/v0.14.0...v0.14.1
600
618
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rockcarver/frodo-cli",
3
- "version": "0.14.1",
3
+ "version": "0.15.1-0",
4
4
  "type": "module",
5
5
  "description": "A command line interface to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.",
6
6
  "keywords": [
@@ -30,6 +30,7 @@
30
30
  "main": "esm/app.js",
31
31
  "scripts": {
32
32
  "test": "npx tsc && node --experimental-vm-modules node_modules/jest/bin/jest.js",
33
+ "test:local": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js",
33
34
  "test:list": "node --experimental-vm-modules node_modules/jest/bin/jest.js --listTests",
34
35
  "test:e2e": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand e2e",
35
36
  "test:e2e:list": "node --experimental-vm-modules node_modules/jest/bin/jest.js --listTests e2e",
@@ -87,7 +88,7 @@
87
88
  ]
88
89
  },
89
90
  "dependencies": {
90
- "@rockcarver/frodo-lib": "0.12.7",
91
+ "@rockcarver/frodo-lib": "0.13.2-0",
91
92
  "cli-progress": "^3.11.2",
92
93
  "cli-table3": "^0.6.2",
93
94
  "colors": "^1.4.0",