Skip to content

Releases: adonisjs/core

Fix NODE_ENV issue with test command and Verification token abstract class

05 Dec 05:22
Compare
Choose a tag to compare

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

01 Dec 05:28
Compare
Choose a tag to compare

6.15.2 (2024-12-01)

  • chore: update dependencies (74287db)

Full Changelog: v6.15.1...v6.15.2

Update dependencies

28 Nov 07:03
Compare
Choose a tag to compare
  • 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

25 Nov 23:08
Compare
Choose a tag to compare

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

09 Oct 17:00
Compare
Choose a tag to compare

6.14.1 (2024-10-09)

Full Changelog: v6.14.0...v6.14.1

Add support for dd and dump helpers

21 Sep 05:10
Compare
Choose a tag to compare

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

11 Sep 13:28
Compare
Choose a tag to compare

What's Changed

  • fix(commands) : make the APP_KEY an empty value for the .env.example file by @AbdelMN in #4722

New Contributors

Full Changelog: v6.13.0...v6.13.1

Use Ace Kernel errorHandler when running commands

05 Sep 18:35
Compare
Choose a tag to compare

Features

  • use kernel errorHandler to handle errors (daa475e)

What's Changed

New Contributors

Full Changelog: v6.12.1...v6.13.0

Allow bun and pnpm@6 when using "ace add" command

22 Jun 04:44
Compare
Choose a tag to compare
  • 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

Update health checks setup and add support for bun to install dependencies

19 Jun 04:38
Compare
Choose a tag to compare
  • chore: upgrade to latest version of health checks (00bbbd6)
  • chore: add bun support for ace add (#4607) (57a81f7)
  • feat: create health checks controller when configuring health checks (f494c52)

What's Changed

New Contributors

Full Changelog: v6.11.0...v6.12.0