Skip to content

Releases: adonisjs/logger

Removing factory functions

29 May 17:22
Compare
Choose a tag to compare

This release gets rid of the factory functions to create the logger and instead you can instantiate the class directly.

Earlier

import { getLogger } from '@poppinss/logger'
const logger = getLogger()

Now

import { Logger } from '@poppinss/logger'
const logger = new Logger()

The newer approach is in sync the other repos, where we also export classes directly

  • docs(readme): update badges 1535835
  • docs: update api docs b160b7d
  • docs(readme): update docs 4bb39cb
  • refactor: export exact classes over factory functions def7137
  • chore(package): update dependencie 0215c9f

v1.0.5...v1.1.0

Remove AdonisJs typings

26 May 03:57
Compare
Choose a tag to compare

We will move the AdonisJs typings to @adonisjs/core. This keeps the container bindings and Typescript typings at one place.

  • refactor: remove adonisjs types c9065a2

v1.0.4...v1.0.5

Export config contracts

25 May 07:38
Compare
Choose a tag to compare
  • refactor: export config contracts from all modules 5d633d8

v1.0.3...v1.0.4

Fixes for AdonisJs types

20 May 04:06
Compare
Choose a tag to compare
  • fix: move adonis typings to a directory 5d305f0
  • chore(package): update dependencies 3807d87

v1.0.2...v1.0.3

Fixing AdonisJs typings

19 May 16:47
Compare
Choose a tag to compare
  • refactor: update adonis typings 4ae3af4

v1.0.1...v1.0.2

Fix package by installing ts-essentials

19 May 14:33
Compare
Choose a tag to compare

ts-essentials must be a production dependency, since the module is used by other modules and they need all types related modules when used with Typescript

  • chore(package): add git block d5a2339
  • chore(package): install ts-essentials as a prod dependency 9d7e9e4

v1.0.0...v1.0.1

First release

16 May 13:06
Compare
Choose a tag to compare

Commits

  • chore: generate api docs 00a6e8a
  • docs(README): add usage docs f1e95d2
  • fix: send correct options to fake logger aef23d8
  • feat: add adonis typings 1b0c1d1
  • feat: implement logger 7af1558

Commit Range

5f21a26...master