Skip to content

chore(deps): bump @adonisjs/http-server from 7.8.0 to 8.0.0#433

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/adonisjs/http-server-8.0.0
Open

chore(deps): bump @adonisjs/http-server from 7.8.0 to 8.0.0#433
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/adonisjs/http-server-8.0.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 1, 2026

Bumps @adonisjs/http-server from 7.8.0 to 8.0.0.

Release notes

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

Type-safe URL builder, platform-native Request/Response support, response serializers and much more

8.0.0 (2026-02-25)

Features

Platform-native Response support

You can now return platform-native Response objects directly via the response.send() method. This enables seamless integration with libraries that return standard Response objects, such as Vercel's AI SDK.

import { streamText } from 'ai'
async handle({ response }: HttpContext) {
const result = await streamText({
model: openai('gpt-4'),
prompt: 'Write a story'
})
return result.toUIMessageStreamResponse()
}

Custom response serializers

You can now define custom serializers to control how response data is serialized before being sent to the client. This is particularly useful for:

  • Adding custom serialization logic for specific data types
  • Implementing organization-wide response formatting standards
  • Handling special object types

Configuration:

// config/app.ts
{
  http: definedConfig({
    serializeJSON: (value) => {
      return JSON.stringify(value)
    }
  })
}

Other features

  • add form property to url_builder return type (a67d16c)
  • add url_builder client and redoc (6d815d0)
  • uppercase method name when returning from the url_builder (257a264)
  • add appendQueryString helper (ebfd3da)
  • export query string module (6977d3b)
  • format generated types properly (df3a7c8)

... (truncated)

Commits
  • 79993b2 chore(release): 8.0.0
  • 283df13 chore: fix broken build
  • e41fd9b chore: update dependencies
  • c21b6dd chore: publish under latest tag
  • 98dbb78 chore: update dependencies
  • a615862 chore(release): 8.0.0-next.19
  • fbea6c8 chore: allow more version of @​boringnode/encryption
  • 33547bd chore(release): 8.0.0-next.18
  • f4721a7 feat: await ExceptionHandler.report method
  • 588ef40 chore(release): 8.0.0-next.17
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@adonisjs/http-server](https://github.com/adonisjs/http-server) from 7.8.0 to 8.0.0.
- [Release notes](https://github.com/adonisjs/http-server/releases)
- [Commits](adonisjs/http-server@v7.8.0...v8.0.0)

---
updated-dependencies:
- dependency-name: "@adonisjs/http-server"
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

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 Mar 1, 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