Skip to content

Releases: adonisjs/core

Small improvements to commands

25 Nov 23:08
Compare
Choose a tag to compare
  • 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

What's Changed

  • doc: update installPackages jsdoc to match current implementation by @brunoziie in #4766

New Contributors

Full Changelog: v6.14.1...v6.15.0

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

Add support for configuring health checks via configure command

16 Jun 06:23
Compare
Choose a tag to compare

Run the following command with the latest release to configure health checks

node ace configure health_checks

Commits

  • feat: add support to configure health checks via configure command (6fc19a3)
  • chore: update dependencies (dede44f)

Fix publish path of health checks module

09 Jun 15:55
Compare
Choose a tag to compare
  • fix: path of health module (d0ad21d)

Full Changelog: v6.10.0...v6.10.1

Add and export health module

09 Jun 15:40
Compare
Choose a tag to compare

This release introduces the new health module. The docs will follow soon.

Commits

  • feat: add and export health module (bce2b76)
  • chore: update dependencies (0cc018e)

Full Changelog: v6.9.1...v6.10.0