Skip to content

Releases: nexusriot/etcd-walker

0.4.0

02 Apr 17:44

Choose a tag to compare

Feature Release.

  • rename support both for keys and folders

0.3.5

25 Dec 15:12
515dd85

Choose a tag to compare

Feature/UX Release.

  • details improvement
  • ability to copy path/value to clipboard
  • improved stability
  • FreeBSD support
screenshot1 screenshot0

0.3.2

25 Dec 11:35

Choose a tag to compare

Feature release.

  • config file support
    /etc/etcd-walker/config.json
{
  "host": "127.0.0.1",
  "port": "2379",
  "protocol": "v3",
  "debug": false,
  "username": "root",
  "password": "supersecretpassword"
}

config is optional

  • auth support (v3)
screenshot

0.2.1

13 Nov 21:29
6473ba4

Choose a tag to compare

Bugfix release.

  • fixed error handling
  • improved stability

0.2.0

11 Nov 08:23
5b419da

Choose a tag to compare

Feature release.

  • Etcd v2 and v3 support (--protocol argument default=v2, to enable v3 use --protocol v3)
  • Implemented values multi-line editing
  • implemented "jump" feature to address values starting with "_ " (e.g. _locks - v2)
multiline-1 multiline-2 jump-1 jump-2

0.1.1

11 Nov 05:22
b4b1c39

Choose a tag to compare

0.1.1 Pre-release
Pre-release

Experimental feature release. Use with caution.

  • implemented "jump" feature to values starting with "_ " (v2)

In etcd v2, keys or directories that begin with an underscore (_) are considered hidden.
When a GET request is made to retrieve the contents of a directory, these hidden items will not be included in the returned list. This feature allows for storing metadata or other internal information without it being explicitly listed alongside the visible key-value pairs or subdirectories.
For example, if you have a directory /my_dir and you create a key /my_dir/_hidden_key, a GET request to /my_dir would return all other keys and subdirectories within /my_dir but would omit hidden_key from the listing.
v2, keys starting with the underscore character (
) are reserved for internal or special purposes, such as the discovery protocol. The documentation for etcd v2 specifically mentions this convention for the discovery service.

reserved

0.1.0

09 Nov 21:28

Choose a tag to compare

0.1.0 Pre-release
Pre-release

Experimental feature release. Use with caution.

  • Added etcd v3 support. Now supporting both v2 and v3.
  • Added --protocol argument (default=v2, to enable v3 use --protocol v3)
  • Added support of .hidden keys. (both for v2/v3)
screenshot-v2

0.0.11

22 Sep 17:02
54db3f9

Choose a tag to compare

UX Release.

  • added a quick hotkeys help
0

0.0.10

21 Sep 14:44
b176f9a

Choose a tag to compare

UX Release.

  • Improved UX
  • Implemented editing folders
  • UI like classic file managers
  • Improved stability (likely)
  • Made new bugs (likely)

0
1

0.0.8

16 Dec 20:52

Choose a tag to compare

  • fixed bug creating nodes with letter "q"