genlayer 0.26.0 → 0.28.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.
@@ -19,6 +19,9 @@ jobs:
19
19
  - name: Checkout code
20
20
  uses: actions/checkout@v4
21
21
 
22
+ - name: Install libsecret runtime
23
+ run: sudo apt-get update && sudo apt-get install -y libsecret-1-0
24
+
22
25
  - name: Set up Node.js
23
26
  uses: actions/setup-node@v4
24
27
  with:
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.28.0 (2025-09-03)
4
+
5
+ ### Features
6
+
7
+ * improve how cli shows transactions receipts ([#250](https://github.com/yeagerai/genlayer-cli/issues/250)) ([610831a](https://github.com/yeagerai/genlayer-cli/commit/610831a23d0fc35b6b2d1ec0e1b1d88fb357c4b5))
8
+
9
+ ## 0.27.0 (2025-09-01)
10
+
11
+ ### Features
12
+
13
+ * implement os keychain support for secure private key storage ([#243](https://github.com/yeagerai/genlayer-cli/issues/243)) ([af93c6f](https://github.com/yeagerai/genlayer-cli/commit/af93c6fdd8e3673ffe3e3471bb5a8c6ea565687d))
14
+
3
15
  ## 0.26.0 (2025-08-07)
4
16
 
5
17
  ### Features
package/README.md CHANGED
@@ -12,6 +12,25 @@ Before installing the GenLayer CLI, ensure you have Node.js installed on your sy
12
12
  npm install -g genlayer
13
13
  ```
14
14
 
15
+ ### Linux Dependencies
16
+
17
+ On some Linux distributions with minimal setups (like Debian netinst or Docker images), you may need to manually install libsecret:
18
+
19
+ ```bash
20
+ # Ubuntu/Debian
21
+ sudo apt-get install libsecret-1-0
22
+
23
+ # CentOS/RHEL/Fedora
24
+ sudo yum install libsecret
25
+ # or for newer versions
26
+ sudo dnf install libsecret
27
+
28
+ # Arch Linux
29
+ sudo pacman -S libsecret
30
+ ```
31
+
32
+ The GenLayer CLI uses the `keytar` library for secure key storage, which relies on `libsecret` on Linux systems.
33
+
15
34
  ## Usage
16
35
 
17
36
  Each command includes syntax, usage information, and examples to help you effectively use the CLI for interacting with the GenLayer environment.