Releases: adonisjs/core
Releases · adonisjs/core
Improvements to the list routes command
Fix NODE_ENV issue with test command and Verification token abstract class
6.16.0 (2024-12-05)
- fix: force NODE_ENV=test when running the test command (25a8d8a), closes #4794
- feat: add VerificationToken abstract class (ec313c2)
- chore: update dependencies (befb276)
Full Changelog: v6.15.2...v6.16.0
Support VineJS 3.0
Update dependencies
- chore: update dependencies (4e9464c)
- chore: upgrade install-pkg to 0.5 (21d29b3)
- refactor(stubs): use generators to make service class name (e7d0974)
Full Changelog: v6.15.0...v6.15.1
Release 6.15.0
6.15.0 (2024-11-25)
- fix(commands): use Array#some instead of Array#includes for type-safety (c598b55)
- ci: update node version (8696178)
- chore: update dependencies (3104d11)
- feat(stubs): generate an empty class when creating a service (bf9b2bd)
- doc: update installPackages jsdoc to match current implementation (#4766) (41f5d66), closes #4766
Update dependencies
6.14.1 (2024-10-09)
Full Changelog: v6.14.0...v6.14.1
Add support for dd and dump helpers
The dd
helper can be used like console.log
but it provides a better visual experience and also comes with a HTML printer. The helper throws an exception and self handles itself to render the dumped value inside the browser (during an HTTP request) or in the console (default output).
You can use the dd
helper as follows.
import { dd } from '@adonisjs/core/services/dd'
dd(someValue)
The same helper is available in Edge template as @dd
tag. Also, within Edge templates you may use the @dump
to inspect a value without throwing an exception.
{{-- Dump and halt rendering --}}
@dd(someValue)
{{-- Dump and continue rendering --}}
@dump(someValue)
Bug Fixes
- handle case where stdout.columns can be undefined (437cb2d)
- handle case where whitespace is a negative value (638c457)
- handle NaN value case (619a3a8)
- use poppinss/colors as styleText is not widely supported (2a491ec)
Features
- add dumper and upgrade edge.js with new stacks functionality (f6e05ba)
- improve dd output and add edge plugin (9b18e6a)
Full Changelog: v6.13.1...v6.14.0
Keep APP_KEY as an empty value within the .env.example file
Use Ace Kernel errorHandler when running commands
Features
- use kernel errorHandler to handle errors (daa475e)
What's Changed
- chore: upgrade install-pkg by @benmccann in #4709
New Contributors
- @benmccann made their first contribution in #4709
Full Changelog: v6.12.1...v6.13.0
Allow bun and pnpm@6 when using "ace add" command
- chore: run tests before publishing package (5bf81d0)
- fix: add command to allow bun and pnpm@6 (2e74375)
- chore: update dependencies (8cc09c2)
Full Changelog: v6.12.0...v6.12.1