Skip to content

v3.0.0

Compare
Choose a tag to compare
@pi0 pi0 released this 11 Apr 01:16
· 80 commits to main since this release

Thank you everyone for trusting and using Consola 🐨 ❤️

This is the first stable version for consola v3, with a new codebase, typescript rewrite, fewer dependencies (no more chalk and dayjs bundled), first-class ESM support, new consola.prompt() and lots of other improvements!

image

Migration from v2

Consola v3 tries to be backward compatible as much as possible for the main interface. For a proper upgrade, switch to named exports.

// ESM
import { consola, createConsola } from "consola";

// CommonJS
const { consola, createConsola } = require("consola");

compare changes

🚀 Enhancements

  • Default logLevel to 1 in test environments (#134)
  • Support literal for logLevels (#133)
  • Expose createConsola and named exports (ef6e5e5)
  • consola.prompt util (#170)
  • consola.fail log level (#153)
  • Pass formatOptions and other options to reporters (d77286a)
  • Show stack trace with consola.trace (#151)

🔥 Performance

  • Switch from chalk to colorette (271b4db)
  • Remove dayjs dependency (d6a3776)

🩹 Fixes

  • Add .raw to mocked functions (987dadc)
  • Type consola instance with built-in type functions (1a4b893)
  • Default value for color format utils (ec9be78)
  • fancy: Show time and tag on right when width cannot be determined (#128)
  • Pass level from CONSOLA_LEVEL to the defaults (#129)
  • consola: Type defaults overrides generic defaults (d3d3c05)
  • fancy: Improve colors (99c2a4f)
  • prompt: Options is optional (817626f)

💅 Refactors

  • Rewrite consola with typescript (4479d2f)
  • Rename global to globalThis (bd03098)
  • Strict typechecks (63bbd56)
  • Remove globalThis usage (4e7b909)
  • Drop json and winston reporters (5af0e99)
  • Move all options to consola.options without duplication (2d31ef4)
  • Move spam logic into _lastLog object (cabd04f)
  • Remove global async option (edd1bb9)
  • types: Merge LogTypeLiteral and logtype types to LogType (da1bc73)
  • Move log levels and types to constants (514f5b3)
  • Improve types and exports (b380d21)
  • Improve fancy reporter (bc90db8)
  • fancy: Better start() color and icon (5a01d53)

📖 Documentation

  • Fix links to the source files (#172)

📦 Build

  • Use backward compatible CJS wrapper for default export (e2e6aa6)

🏡 Chore

  • Make example/index.js working (#110)
  • Add LICENSE (#121)

🎨 Styles

  • Prefer object spread instead of Object.assign (c03268a)

❤️ Contributors