Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Oct 15, 2025

Bumps falcon from 0.51.1 to 0.52.4.

Changelog

Sourced from falcon's changelog.

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

We retain the falcon:supervisor:restart task, but you may prefer to use async:container:supervisor:restart directly.

v0.50.0

  • Add {ruby Falcon::Environment::Server#endpoint_options} to allow configuration of the endpoint options more easily.

v0.49.0

Falcon Server Container Health Checks

... (truncated)

Commits
  • 83b179e Bump patch version.
  • 35444d5 Update after_gem_release_version_increment.
  • b5d7dd0 Add release notes.
  • a043321 Modernize code.
  • 765f09f Fix require path for websocket rack adapter.
  • 6cc4e91 Bump patch version.
  • a4f8710 Update agent context.
  • 95f30ca Add Kubernetes and systemd integration examples.
  • 43686c5 Bump patch version.
  • fc67077 Fix context/index.yaml schema.
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 15, 2025
Bumps [falcon](https://github.com/socketry/falcon) from 0.51.1 to 0.52.4.
- [Release notes](https://github.com/socketry/falcon/releases)
- [Changelog](https://github.com/socketry/falcon/blob/main/releases.md)
- [Commits](socketry/falcon@v0.51.1...v0.52.4)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added ruby Pull requests that update ruby code dependencies Pull requests that update a dependency file labels Oct 15, 2025
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