Skip to content

Releases: yamcodes/pino-nestjs

[email protected]

01 Mar 00:24
1e2f1bd

Choose a tag to compare

Patch Changes

  • Fix parameter order 5a7dbcd @yamcodes

    Fix an issue where the parameter order was incorrect, resulting in missing context.

v0.1.2

28 Feb 19:23
c694c44

Choose a tag to compare

Patch Changes

  • Fix build issue b8445e7 @yamcodes

    Fix build issue by including the dist folder in the package.

v0.1.1

28 Feb 19:17
6843a7d

Choose a tag to compare

Patch Changes

  • Fix package build issue 27e2405 @yamcodes

    Fix an issue with the package build causing the dist folder to be excluded from the package.
    Now, the dist folder is included in the package and installation should work as expected.

v0.1.0

28 Feb 18:50
d9bb84b

Choose a tag to compare

Minor Changes

  • NestJS drop-in compatibility #1 b9306c4 @yamcodes

    Make the logger compatible with NestJS by switching the order of the arguments:

    // With nestjs-pino:
    this.logger.log(context, "message"); // ❌ context first, message second
    
    // With NestJS standard logger and pino-nestjs:
    this.logger.log("message", context); // ✅ message first, context second