Skip to content

Commit

Permalink
Bump 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
palkan committed Apr 1, 2024
1 parent c710549 commit 85ec06e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

## master

## 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.

## 1.5.0.rc.1

- Support passing objects to `ActionCable.server.broadcast`. ([@palkan][])

Make it possible to call `ActionCable.server.broadcast(user, data)` or `ActionCable.server.broadcast([user, :context], data)`. This is a companion functionality for `#signed_stream_name`.
Expand Down
2 changes: 1 addition & 1 deletion anycable-rails-core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = ">= 2.7"

spec.add_dependency "anycable-core", "1.5.0.rc.1"
spec.add_dependency "anycable-core", "~> 1.5.0"
spec.add_dependency "actioncable", ">= 6.0"
spec.add_dependency "globalid"
end
2 changes: 1 addition & 1 deletion anycable-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = ">= 2.7"

spec.add_dependency "anycable-rails-core", AnyCable::Rails::VERSION
spec.add_dependency "anycable", "1.5.0.rc.1"
spec.add_dependency "anycable", "~> 1.5.0"

spec.add_development_dependency "ammeter", "~> 1.1"
spec.add_development_dependency "bundler", ">= 1.10"
Expand Down
2 changes: 1 addition & 1 deletion lib/anycable/rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module AnyCable
module Rails
VERSION = "1.5.0.rc.1"
VERSION = "1.5.0"
end
end

0 comments on commit 85ec06e

Please sign in to comment.