Skip to content

Comments

Bump falcon from 0.53.1 to 0.54.2#342

Merged
renatolond merged 1 commit intomainfrom
dependabot/bundler/falcon-0.54.2
Feb 19, 2026
Merged

Bump falcon from 0.53.1 to 0.54.2#342
renatolond merged 1 commit intomainfrom
dependabot/bundler/falcon-0.54.2

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 19, 2026

Bumps falcon from 0.53.1 to 0.54.2.

Changelog

Sourced from falcon's changelog.

Releases

v0.54.1

  • Fix handling of old style supervisors from Async::Container::Supervisor.

v0.54.0

  • Introduce Falcon::CompositeServer for hosting multiple server instances in a single worker.

v0.52.4

  • Relax dependency on async-container-supervisor to allow ~> 0.6.

v0.52.0

  • Modernized codebase and dropped support for Ruby v3.1.
  • Improved Rails integration documentation.
  • Added extra logging of RUBY_DESCRIPTION.
  • Minor documentation improvements.
  • Agent context is now available, via the agent-context gem.

v0.51.0

  • Introduce {ruby Falcon::Environment::Server#make_server} which gives you full control over the server creation process.

Introduce Async::Container::Supervisor.

Async::Container::Supervisor is a new supervisor implementation that replaces Falcon's own supervisor. This allows you to use the same supervisor for all your services, and provides a more consistent interface for managing services. The supervisor is now a separate gem, async-container-supervisor.

By default, the supervisor does not perform any monitoring, but you may add monitoring by defining them in the service definition. For example:

service "hello.localhost" do
	# Configure server...
include Async::Container::Supervisor::Supervised

end
service "supervisor" do
include Async::Container::Supervisor::Environment
monitors do
	[
		# Limit total memory usage to 512MiB:
		Async::Container::Supervisor::MemoryMonitor.new(interval: 10, limit: 1024 * 1024 * 512),
	]
end

end

... (truncated)

Commits

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 [falcon](https://github.com/socketry/falcon) from 0.53.1 to 0.54.2.
- [Release notes](https://github.com/socketry/falcon/releases)
- [Changelog](https://github.com/socketry/falcon/blob/main/releases.md)
- [Commits](socketry/falcon@v0.53.1...v0.54.2)

---
updated-dependencies:
- dependency-name: falcon
  dependency-version: 0.54.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Feb 19, 2026
@renatolond renatolond merged commit 29348e5 into main Feb 19, 2026
1 check passed
@renatolond renatolond deleted the dependabot/bundler/falcon-0.54.2 branch February 19, 2026 14:22
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 ruby Pull requests that update Ruby code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant