fba-cli 1.6.6 → 1.6.8

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 CHANGED
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
6
 
7
+ ## [1.6.8](https://github.com/mbehr1/fba-cli/compare/v1.6.7...v1.6.8) (2025-03-29)
8
+
9
+ ## [1.6.7](https://github.com/mbehr1/fba-cli/compare/v1.6.6...v1.6.7) (2025-03-02)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * **deps:** bump dlt-logs-utils ([a63a90f](https://github.com/mbehr1/fba-cli/commit/a63a90f4849d282aed1786cfa482702f0261983d))
15
+
7
16
  ## [1.6.6](https://github.com/mbehr1/fba-cli/compare/v1.6.5...v1.6.6) (2025-03-02)
8
17
 
9
18
 
package/README.md CHANGED
@@ -81,6 +81,20 @@ and then use `fba-cli`:
81
81
  fba-cli exec -p 127.0.0.1:7777 -c config.json analysis.fba recorded.dlt recorded_p2.dlt > analysis_report.md
82
82
  ```
83
83
 
84
+ ### Hint for Windows Powershell users
85
+
86
+ Powershell seems to default to utf-16 and not utf-8. If you redirect the output to a file you do need to change the encoding first:
87
+
88
+ ```powershell
89
+ $OutputEncoding = [Console]::InputEncoding = [Console]::OutputEncoding = [System.Text.UTF8Encoding]::new()
90
+
91
+ # fba-cli exec -p host:port -c <config_file> <list of fba files> <list of DLT files>
92
+ # e.g.
93
+ npm.cmd run fba-cli exec -p 127.0.0.1:7777 -c config.json analysis.fba recorded.dlt recorded_p2.dlt > analysis_report.md
94
+ # seems that powershell doesnt allow the binary/scripts to be directly executed. In that case you can start via:
95
+ node dist\index.js exec -p 127.0.0.1:7777 -c config.json analysis.fba recorded.dlt > analysis_report.md
96
+ ```
97
+
84
98
  ### Export filters in DLT-Viewer format:
85
99
 
86
100
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fba-cli",
3
- "version": "1.6.6",
3
+ "version": "1.6.8",
4
4
  "description": "A CLI (command line interface) to execute FBA (fishbone analysis) files with DLT-logs/adlt.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -112,7 +112,7 @@
112
112
  "chalk": "^5.4.1",
113
113
  "cli-progress": "^3.12.0",
114
114
  "commander": "^13.1.0",
115
- "dlt-logs-utils": "0.10.3",
115
+ "dlt-logs-utils": "0.10.4",
116
116
  "filenamify": "^6.0.0",
117
117
  "js-yaml": "^4.1.0",
118
118
  "json5": "2.2.3",