Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump anycable-rails from 1.5.6 to 1.6.0 #10

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 18, 2025

Bumps anycable-rails from 1.5.6 to 1.6.0.

Release notes

Sourced from anycable-rails's releases.

1.6.0

This release adds presence API for channels:

class ChatChannel < ApplicationCable::Channel
  def subscribed
    room = Chat::Room.find(params[:id])
stream_for room
join_presence(id: current_user.id, info: {name: current_user.name})

end
end

See docs.

Changelog

Sourced from anycable-rails's changelog.

1.6.0 (2025-03-18)

  • Update anycable:download generator to support v1.6+. ([@​palkan][])

  • Add #anycable_token_meta_tag helper. ([@​palkan][])

    It generates a meta tag with the AnyCable JWT token (w/o the URL).

  • Add Presence API. ([@​palkan][])

1.5.5 (2024-12-12)

  • Publish RuboCop cops as a separate gem (rubocop-anycable-rails). ([@​palkan][])

  • Upgrade RuboCop cops. ([@​palkan][])

1.5.4 (2024-10-08)

1.5.3 (2024-09-12)

  • Set upper limit on supported Rails versions. ([@​palkan][])

    The current release series is unlikely to not work with Rails 8. Let's prevent using them together.

1.5.2 (2024-07-01)

  • Automatically add Warden::Manager to the AnyCable middleware stack when Devise is present. ([@​lHydra][])

1.5.1 (2024-04-05)

  • Add anycable-rails-core.rb to avoid adding require: ["anycable-rails"] to Gemfiles manually. ([@​palkan][])

  • Mount HTTP RPC independently of the current Action Cable adapter. ([@​palkan][])

    This makes it possible to use it in tests without manually adding the middleware.

1.5.0 (2024-04-01)

  • Allow specifying the whispering stream via #stream_from(..., whisper: true). ([@​palkan][])

    You can use specify the stream to use for whispering (client-initiated broadcasts) by adding whisper: true to the #stream_from (or #stream_for) method call.

    NOTE: This feature is only supported when using AnyCable server and ignored otherwise.

  • Support passing objects to ActionCable.server.broadcast. ([@​palkan][])

... (truncated)

Commits
  • 6e7f3eb Bump 1.6.0
  • 934f1bc Improve AnyCable/PeriodicalTimers cop performance
  • 63bd98b Bump 1.6.0.rc.3
  • 616d9a5 fix: use new repo for 1.6+ releases
  • 19e9a2d feat: #anycable_token_meta_tag
  • f3b72fc feat(generator): show note that action_cable is required
  • a67c57a Bump 1.6.0.rc.2
  • 5b2581d fix: alwasy cast presence id to string
  • e72b9bf refactor: do not overide subscribe_to_channel
  • fdebe60 docs: missing change log entry
  • 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 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)

Bumps [anycable-rails](https://github.com/anycable/anycable-rails) from 1.5.6 to 1.6.0.
- [Release notes](https://github.com/anycable/anycable-rails/releases)
- [Changelog](https://github.com/anycable/anycable-rails/blob/main/CHANGELOG.md)
- [Commits](anycable/anycable-rails@v1.5.6...v1.6.0)

---
updated-dependencies:
- dependency-name: anycable-rails
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Mar 18, 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.

0 participants