@rockcarver/frodo-cli 0.15.0 → 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 +9 -1
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ 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
+
10
16
  ## [0.15.0] - 2022-10-04
11
17
 
12
18
  ### Added
@@ -602,7 +608,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
602
608
  - Fixed problem with adding connection profiles
603
609
  - Miscellaneous bug fixes
604
610
 
605
- [Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v0.15.0...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
606
614
 
607
615
  [0.15.0]: https://github.com/rockcarver/frodo-cli/compare/v0.14.1...v0.15.0
608
616
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rockcarver/frodo-cli",
3
- "version": "0.15.0",
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.13.1",
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",