Skip to content

LogTape changelog

Version 0.6.0

To be released.

Version 0.5.1

Released on September 10, 2024.

  • Fixed a bug of defaultTextFormatter() function where it rendered embedded values in the message as JSON instead of util.inspect() on Node.js and Bun.

  • Fixed a bug of ansiColorFormatter() function where it failed to colorize embedded values in the message on Node.js and Bun.

Version 0.5.0

Released on August 29, 2024.

  • LogTape now provides contexts for loggers. [#7, #8]

  • The console sink now can take a TextFormatter besides a ConsoleFormatter for formatting log records.

  • Added ansiColorFormatter() function.

  • configure() function's filters option became optional.

    • The type of Config.filters became Record<string, FilterLike> | undefined (was Record<string, FilterLike>).

Version 0.4.3

Released on August 22, 2024.

  • Fixed a bug where getRotatingFileSink() function had failed to create a new log file when there's no log file to rotate yet. [#9]

Version 0.4.2

Released on July 15, 2024.

  • LogTape now works well on edge functions. [#5]

    • The npm version of LogTape no more depends on node:stream/web module.
    • LogTape now works well with JavaScript runtimes that do not support node:fs module.
    • LogTape now works well with JavaScript runtimes that do not support WeakRef class.
    • Got rid of eval() from LogTape.

Version 0.4.1

Released on July 2, 2024.

  • Fixed a bug where LogTape failed to load under Node.js when incorporated in a project from JSR. [#3, #4 by Kitson Kelly]

Version 0.4.0

Released on May 7, 2024.

  • Curly braces can now be escaped with double curly braces. [#1, #2 by Diyar Oktay]

Version 0.3.1

Released on May 7, 2024.

  • Fixed a bug where two or more versions of LogTape were imported in the same runtime, the Logger instances would not be shared between them. This was caused by the Logger instances being stored in a module-level variable.

Version 0.3.0

Released on April 22, 2024.

Version 0.2.3

Released on May 7, 2024.

  • Fixed a bug where two or more versions of LogTape were imported in the same runtime, the Logger instances would not be shared between them. This was caused by the Logger instances being stored in a module-level variable.

Version 0.2.2

Released on April 21, 2024.

  • Fixed a bug where the configured sinks and filters were reset after some inactivity. This was caused by garbage collection of the Logger instances. The Logger instances are now kept alive by an internal set of strong references until explicitly reset() is called.

Version 0.2.1

Released on April 20, 2024.

Version 0.2.0

Released on April 20, 2024.

  • Sinks now can be asynchronously disposed of. This is useful for sinks that need to flush their buffers before being closed.

    • Added dispose() function.
    • The return type of configure() function became Promise<void> (was void).
    • The return type of reset() function became Promise<void> (was void).
    • Configured sinks that implement AsyncDisposable are now disposed of asynchronously when the configuration is reset or the program exits.
  • The return type of getStreamSink() function became Sink & AsyncDisposable (was Sink & Disposable).

  • Added getRotatingFileSink() function.

Version 0.1.2

Released on May 7, 2024.

  • Fixed a bug where two or more versions of LogTape were imported in the same runtime, the Logger instances would not be shared between them. This was caused by the Logger instances being stored in a module-level variable.

Version 0.1.1

Released on April 21, 2024.

  • Fixed a bug where the configured sinks and filters were reset after some inactivity. This was caused by garbage collection of the Logger instances. The Logger instances are now kept alive by an internal set of strong references until explicitly reset() is called.

Version 0.1.0

Initial release. Released on April 19, 2024.