Skip to content

chore(deps): bump the adonisjs group across 1 directory with 4 updates#455

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/adonisjs-edea35c133
Open

chore(deps): bump the adonisjs group across 1 directory with 4 updates#455
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/adonisjs-edea35c133

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Jun 3, 2026

Bumps the adonisjs group with 4 updates in the / directory: @adonisjs/application, @adonisjs/events, @adonisjs/http-server and @adonisjs/logger.

Updates @adonisjs/application from 8.4.2 to 9.0.1

Release notes

Sourced from @​adonisjs/application's releases.

Use correct env var for detecting pm2 environment

9.0.1 (2026-05-28)

Bug Fixes

  • Use correct env var for detecting pm2 environment (24861dd), closes #40

Full Changelog: adonisjs/application@v9.0.0...v9.0.1

Helpers to detect AI agent controlled process, tracing channels, and revamped assembler hooks

9.0.0 (2026-02-25)

Check 9.0.0 pre-releases to get a better sense of changes

BREAKING CHANGES

  • Assembler hooks are now defined inside the assembler package and the application package just exposes its types as it is. Also, the hooks have been renamed
  • Remove unstable_assembler property. Was deprecated a long time back.
  • Remove assetsBundler property. It's not used for a long time because of bundled Vite integration.
  • Rename assembler hooks names. They are now defined within the @adonisjs/assembler package and sourced directly from the package. See https://github.com/adonisjs/assembler/releases/tag/v8.0.0-next.0
  • Remove shutdownInReverseOrder experimental flag. As shutdown hooks are now always executed in reverse order.

Features

  • cleanup assembler hooks related code (a656453)
  • remove shutdownInReverseOrder experimental flag, as it is the default behavior (4e6304c)

What's Changed

New Contributors

Full Changelog: adonisjs/application@v8.4.1...v9.0.0

Tracing channels for preload files and generators for inertia page generation

9.0.0-next.16 (2026-02-24)

Features

  • add inertia page name and file name generators (8ab853f)
  • add tracing channels support for preload files (#39) (d0ebd77)
  • convert entity path segments using an overridable helper (0a655ed)

What's Changed

... (truncated)

Commits
  • cd78039 chore(release): 9.0.1
  • 24861dd fix: Use correct env var for detecting pm2 environment
  • fcccd9c chore: update dependencies
  • f491863 chore(release): 9.0.0
  • d2415ce chore: update dependencies
  • c0aaeb5 chore: publish under latest tag
  • afafcf1 chore(release): 9.0.0-next.16
  • 0a655ed feat: convert entity path segments using an overridable helper
  • 8ab853f feat: add inertia page name and file name generators
  • a671271 chore: update dependencies
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​adonisjs/application since your current version.


Updates @adonisjs/events from 9.0.2 to 10.2.0

Release notes

Sourced from @​adonisjs/events's releases.

Using symbol.dispose for disposing fake instance

10.2.0 (2026-03-23)

Features

  • add Symbol.dispose support to EventsBuffer (#26) (b18a8e8)

Tag as latest

10.1.0 (2026-02-25)

What's Changed

New Contributors

Full Changelog: adonisjs/events@v9.0.2...v10.1.0

Fix emitter.off behavior with class-based listeners

10.1.0-next.4 (2026-01-07)

Bug Fixes

  • unsubscribe using class-based listener (ae306a9)

Full Changelog: adonisjs/events@v10.1.0-next.3...v10.1.0-next.4

Update dependencies

10.1.0-next.3 (2025-12-15)

Features

  • setup typedoc ae96740

Full Changelog: adonisjs/events@v10.1.0-next.2...v10.1.0-next.3

Update dependencies

10.1.0-next.2 (2025-08-29)

Full Changelog: adonisjs/events@v10.1.0-next.1...v10.1.0-next.2

Add tracing channel to trace event dispatch calls

10.1.0-next.1 (2025-07-30)

Features

  • add tracing channel to trace event dispatch calls (85fe8e2)

... (truncated)

Commits
  • 46ded58 chore(release): 10.2.0
  • b18a8e8 feat: add Symbol.dispose support to EventsBuffer (#26)
  • 90bf343 chore(release): 10.1.0
  • 258904b chore: update dependencies
  • 98d1187 chore: publish under latest tag
  • c45ea30 chore(release): 10.1.0-next.4
  • 474f0ed chore: update peer dependencies range
  • ae306a9 fix: unsubscribe using class-based listener
  • c4b6f62 chore: update dependencies
  • e62824c chore(release): 10.1.0-next.3
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​adonisjs/events since your current version.


Updates @adonisjs/http-server from 7.8.1 to 9.0.2

Release notes

Sourced from @​adonisjs/http-server's releases.

Make Router class macroable to be extended from outside-in

9.0.2 (2026-05-27)

Bug Fixes

What's Changed

Full Changelog: adonisjs/http-server@v9.0.1...v9.0.2

Use internal host method when returning request authority

9.0.1 (2026-05-25)

Bug Fixes

  • use internal host method when fetching request authority (0a30965)

Full Changelog: adonisjs/http-server@v9.0.0...v9.0.1

HTTP/2 authority support for redirect referrer validation

Added

  • HttpRequest#authority() — returns the HTTP/2 :authority pseudo-header, falling back to the Host header when :authority is absent. Unlike host(), it ignores X-Forwarded-Host and trustProxy, since no proxy convention forwards the original :authority.

Fixed

  • Referrer validation on HTTP/2getPreviousUrl (used by redirect-back) now validates the Referer against request.authority() instead of reading headers['host'] directly. On HTTP/2 the Host header can be absent (authority carried by :authority), which previously broke referrer-host matching.
  • Redirect#getPreviousUrl — throws a clear RuntimeException when the Redirect instance has no HTTP context, instead of a cryptic Cannot read properties of undefined.
  • Test factoriesHttpRequestFactory and HttpResponseFactory now wire an HttpContext, so request.ctx / response.ctx are populated, matching runtime. Factory-created responses can now use response.redirect().back().

Breaking changes

  • getPreviousUrl helper signature changed from (headers, allowedHosts, fallback) to (request, allowedHosts, fallback) — now takes the AdonisJS HttpRequest instance instead of raw IncomingHttpHeaders. Affects only direct importers of the helper; request.getPreviousUrl() and redirect().back() are unchanged.

Full Changelog: adonisjs/http-server@v8.2.0...v9.0.0

... (truncated)

Commits
  • 91b6a61 chore(release): 9.0.2
  • c8da134 fix: Router should be Macroable (#119)
  • 60d56ab chore(release): 9.0.1
  • 0a30965 fix: use internal host method when fetching request authority
  • 5508068 chore(release): 9.0.0
  • f6ba96d fix: wire HTTP context in request and response factories
  • 3a812bd chore: update dependencies
  • 1278253 feat: add authority() and use it for redirect referrer validation
  • 384a5df chore(release): 8.2.0
  • bcdb2f1 style: reformat source code
  • Additional commits viewable in compare view

Updates @adonisjs/logger from 6.0.7 to 7.1.1

Release notes

Sourced from @​adonisjs/logger's releases.

Fix desination typo

7.1.1 (2026-03-16)

Bug Fixes

  • rename desination typo to destination (#75) (1a6dd24)

Tag as latest

7.1.0 (2026-02-25)

Bug Fixes

  • Update file function parameter type for level to suggest defaults (835b706)

What's Changed

New Contributors

Full Changelog: adonisjs/logger@v6.0.6...v7.1.0

Update dependencies

7.1.0-next.3 (2025-12-15)

Full Changelog: adonisjs/logger@v7.1.0-next.2...v7.1.0-next.3

Remove CJS export for destinations

7.1.0-next.2 (2025-10-24)

Features

  • remove cjs destinations bundle (15978a8)

Full Changelog: adonisjs/logger@v7.1.0-next.1...v7.1.0-next.2

Move destinations to its own CJS export

7.1.0-next.1 (2025-10-22)

Bug Fixes

  • move destinations to its own CJS export (fec3697)

Features

... (truncated)

Commits
  • 0631e16 chore(release): 7.1.1
  • 1a6dd24 fix: rename desination typo to destination (#75)
  • be28fcd chore(release): 7.1.0
  • 11b6116 chore: update dependencies
  • 6b5c6b3 chore: publish under latest tag
  • 3a9a1f4 chore: update dependencies
  • ab32d64 chore: update dependencies
  • 835b706 fix: Update file function parameter type for level to suggest defaults
  • 334dd51 chore(release): 7.1.0-next.3
  • d9b8f97 chore: migrate to tsdown
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​adonisjs/logger since your current version.


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the adonisjs group with 4 updates in the / directory: [@adonisjs/application](https://github.com/adonisjs/application), [@adonisjs/events](https://github.com/adonisjs/events), [@adonisjs/http-server](https://github.com/adonisjs/http-server) and [@adonisjs/logger](https://github.com/adonisjs/logger).


Updates `@adonisjs/application` from 8.4.2 to 9.0.1
- [Release notes](https://github.com/adonisjs/application/releases)
- [Commits](adonisjs/application@v8.4.2...v9.0.1)

Updates `@adonisjs/events` from 9.0.2 to 10.2.0
- [Release notes](https://github.com/adonisjs/events/releases)
- [Commits](adonisjs/events@v9.0.2...v10.2.0)

Updates `@adonisjs/http-server` from 7.8.1 to 9.0.2
- [Release notes](https://github.com/adonisjs/http-server/releases)
- [Commits](adonisjs/http-server@v7.8.1...v9.0.2)

Updates `@adonisjs/logger` from 6.0.7 to 7.1.1
- [Release notes](https://github.com/adonisjs/logger/releases)
- [Commits](adonisjs/logger@v6.0.7...v7.1.1)

---
updated-dependencies:
- dependency-name: "@adonisjs/application"
  dependency-version: 9.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: adonisjs
- dependency-name: "@adonisjs/events"
  dependency-version: 10.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: adonisjs
- dependency-name: "@adonisjs/http-server"
  dependency-version: 9.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: adonisjs
- dependency-name: "@adonisjs/logger"
  dependency-version: 7.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: adonisjs
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jun 3, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants