Releases: adonisjs/logger
Releases · adonisjs/logger
Updating underlying dependencies
- chore(package): update dependencies 015ee5c
- chore(deps-dev): bump typedoc-plugin-markdown from 1.2.1 to 2.0.10 (#21) 275490a
- Merge branch 'develop' into dependabot/npm_and_yarn/typedoc-plugin-markdown-2.0.10 9f21793
- chore(deps-dev): bump @types/node from 12.0.3 to 12.6.8 (#20) c82a3e1
- chore(deps): bump pino from 5.12.6 to 5.13.0 (#19) b48b4d6
- chore(deps-dev): bump typescript from 3.4.5 to 3.5.3 (#13) d96f07f
- chore(deps): bump ts-essentials from 2.0.7 to 2.0.12 (#12) a007fe7
- chore(deps-dev): bump tslint from 5.16.0 to 5.18.0 (#9) 5f2f5fc
- chore(deps-dev): bump husky from 2.3.0 to 3.0.0 (#8) 9c93222
- Merge pull request #5 from poppinss/dependabot/npm_and_yarn/@types/pino-5.8.8 7819626
- chore(deps-dev): bump ts-node from 8.2.0 to 8.3.0 (#3) b805e63
- chore(deps-dev): bump np from 5.0.2 to 5.0.3 (#1) b3fe0b4
- chore(deps-dev): bump typedoc-plugin-markdown from 1.2.1 to 2.0.10 fedfbb0
- chore(deps-dev): bump @types/node from 12.0.3 to 12.6.8 48c3648
- chore(deps): bump pino from 5.12.6 to 5.13.0 19951bb
- chore(deps-dev): bump typescript from 3.4.5 to 3.5.3 9a9fab9
- chore(deps): bump ts-essentials from 2.0.7 to 2.0.12 2d88acd
- chore(deps-dev): bump tslint from 5.16.0 to 5.18.0 23f7a5f
- chore(deps-dev): bump husky from 2.3.0 to 3.0.0 43c0e12
- chore(deps): bump @types/pino from 5.8.7 to 5.8.8 470bfa4
- chore(deps-dev): bump ts-node from 8.2.0 to 8.3.0 7714cd8
- chore(deps-dev): bump np from 5.0.2 to 5.0.3 9eb2e46
Removing factory functions
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
Remove AdonisJs typings
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
Export config contracts
- refactor: export config contracts from all modules 5d633d8
Fixes for AdonisJs types
Fixing AdonisJs typings
- refactor: update adonis typings 4ae3af4