Skip to content

Releases: NarrativeScience-old/log.io

Adds HTTP basic authentication

Choose a tag to compare

@msmathers msmathers released this 22 May 14:11

To enable basic HTTP authentication, add the following keys to ~/.log.io/server.json:

"basicAuth": {
  "realm": "abc123xyz",
  "users": {
    "msmathers": "secretpassword1"
  }
}

realm should be a custom value that you generate.

Add better handling for removing watched files

Choose a tag to compare

@msmathers msmathers released this 24 Apr 15:21

A common log rotation scenario involves moving a watched file to a different path and then creating a new file of the same name. This fix addresses that scenario.

Use chokidar for more robust file watching

Choose a tag to compare

@msmathers msmathers released this 23 Apr 19:28
  • Adds chokidar library for file watching
  • Input configuration supports glob patterns for file matching
  • New files are automatically detected, addresses log rotation issues.

Persist screen binding state

Choose a tag to compare

@msmathers msmathers released this 02 Apr 19:22

All screen bindings are stored in the URL hash, which gets updated as a user binds & unbinds inputs. Allows users to share their specific binding session by sending their URL to other users.

Filter screen messages

Choose a tag to compare

@msmathers msmathers released this 02 Apr 03:03
  • Adds screen control input to filter messages. Matched text gets highlighted.
  • Avoid array slicing on every render cycle. Move message array slicing to reducer to improve performance.

Screen Shot 2020-04-01 at 9 43 42 PM

CircleCI publishing integration

Choose a tag to compare

@msmathers msmathers released this 10 Mar 19:49
  • Automatically publish new versions of log.io and log.io-file-input to NPM when a new version tag is pushed.

Fix errant TCP message handling behavior #2

Choose a tag to compare

@msmathers msmathers released this 14 Feb 15:07
9e798a3
  • Ignore TCP messages that don't include a termination character, as reported by #220, second attempt

Fix errant TCP message handling behavior

Choose a tag to compare

@msmathers msmathers released this 07 Feb 17:49
2a0d760
  • Ignore TCP messages that don't include a termination character, as reported by #220

Handle file deletions

Choose a tag to compare

@msmathers msmathers released this 16 Jan 15:27
91906e4
  • Adds error handling around watched files being deleted off the filesystem. Will gracefully recover if the file reappears.
  • Changes screen message text color.

Scrollbar style fix

Choose a tag to compare

@msmathers msmathers released this 15 Jan 18:44
  • Fixes scrollbar rendering issues caused by overflow-y: scroll;
  • Updates README shields