Releases: airnandez/cluefs
v0.5
This release includes a few features and bug fixes:
- [new] modification of trace event format for several operations to make possible association of events with a previous
open
operation. A new field (the last field in each trace event) was added to the event format of the following operations:open
,read
,write
,flush
,release
,create
andreaddir
. The documentation for those event formats was updated. - [new] make FUSE low level debug messages visually distinct from
cluefs
ones - [new] compile with Go v1.5.1
- [bugfix] correct bug renaming files (thanks to @rfjakob for submitting issue #3 ).
Binary files are available for Linux and Darwin for x86_64
architecture. To install on Linux do:
curl -L https://github.com/airnandez/cluefs/releases/download/v0.5/cluefs-v0.5-linux-x86_64.tar.gz | tar -xz
To install on OS X do:
curl -L https://github.com/airnandez/cluefs/releases/download/v0.5/cluefs-v0.5-darwin-x86_64.tar.gz | tar -xz
You will find the cluefs
self-contained executable in the same directory.
v0.4
This release includes a few features and bug corrections:
- [new] trace event for
open
operation now includes the block size of the file system the file resides on (i.e. the shadow file system) - [new] trace event for
flush
operation now includes both the mode the file was open in (i.e. read-only, read-write, etc.) and the file size - [bugfix] correct a bug making the file size appears as zero in the trace events for
read
operations in certain circumstances.
Binary files are available for Linux and Darwin for x86_64
architecture.
To install the binary files just click on the appropriate link according to your execution platform to download the file. To unpack, you can use a command such as:
tar -xzf cluefs-v0.4-darwin-x86_64.tar.gz
You will find the cluefs
self-contained executable in the same directory.
v0.3
This release includes a few features and bug corrections:
- [new] try to infer the output format from the file extension specified with the
--out=<file name>
argument. If the file name ends in.json
or.csv
the corresponding output format will be used. - [new] use
release
as the operation name in trace events instead ofclose
which was imprecise - [bugfix] correctly populate the size of block for this file system returned by
stat
calls.
Binary files are available for Linux and Darwin for x86_64
architecture.
To install the binary files just click on the appropriate link according to your execution platform to download the file. To unpack, you can use a command such as:
tar -xzf cluefs-v0.3-darwin-x86_64.tar.gz
You will find the cluefs
self-contained executable in the same directory.
v0.2
This release include two fixes:
- By default don't rewrite symbolic links to jail them into the shadow file system
- Don't cache the process path since this does not work when a parent process calls
fork/execv
to create a child process.
Binary files are available for Linux and Darwin for x86_64
architecture.
To install the binary files just click on the appropriate link according to your execution platform to download the file. To unpack, you can use a command such as:
tar -xzf cluefs-v0.2-darwin-x86_64.tar.gz
You will find the cluefs
self-contained executable in the same directory.
v0.1
This is the first release including binaries. Binary files are available for Linux and Darwin for x86_64
architecture.
To install the binary files just click on the appropriate link according to your execution platform to download the file. To unpack, you can use a command such as:
tar -xzf cluefs-v0.1-darwin-x86_64.tar.gz
You will find the cluefs
self-contained executable in the same directory.