@rails/actioncable 6.1.3-1 → 6.1.4-2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/CHANGELOG.md +0 -65
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rails/actioncable",
3
- "version": "6.1.3-1",
3
+ "version": "6.1.4-2",
4
4
  "description": "WebSocket framework for Ruby on Rails.",
5
5
  "main": "app/assets/javascripts/action_cable.js",
6
6
  "files": [
package/CHANGELOG.md DELETED
@@ -1,65 +0,0 @@
1
- ## Rails 6.1.3.1 (March 26, 2021) ##
2
-
3
- * No changes.
4
-
5
-
6
- ## Rails 6.1.3 (February 17, 2021) ##
7
-
8
- * No changes.
9
-
10
-
11
- ## Rails 6.1.2.1 (February 10, 2021) ##
12
-
13
- * No changes.
14
-
15
-
16
- ## Rails 6.1.2 (February 09, 2021) ##
17
-
18
- * No changes.
19
-
20
-
21
- ## Rails 6.1.1 (January 07, 2021) ##
22
-
23
- * No changes.
24
-
25
-
26
- ## Rails 6.1.0 (December 09, 2020) ##
27
-
28
- * `ActionCable::Connection::Base` now allows intercepting unhandled exceptions
29
- with `rescue_from` before they are logged, which is useful for error reporting
30
- tools and other integrations.
31
-
32
- *Justin Talbott*
33
-
34
- * Add `ActionCable::Channel#stream_or_reject_for` to stream if record is present, otherwise reject the connection
35
-
36
- *Atul Bhosale*
37
-
38
- * Add `ActionCable::Channel#stop_stream_from` and `#stop_stream_for` to unsubscribe from a specific stream.
39
-
40
- *Zhang Kang*
41
-
42
- * Add PostgreSQL subscription connection identificator.
43
-
44
- Now you can distinguish Action Cable PostgreSQL subscription connections among others.
45
- Also, you can set custom `id` in `cable.yml` configuration.
46
-
47
- ```sql
48
- SELECT application_name FROM pg_stat_activity;
49
- /*
50
- application_name
51
- ------------------------
52
- psql
53
- ActionCable-PID-42
54
- (2 rows)
55
- */
56
- ```
57
-
58
- *Sergey Ponomarev*
59
-
60
- * Subscription confirmations and rejections are now logged at the `DEBUG` level instead of `INFO`.
61
-
62
- *DHH*
63
-
64
-
65
- Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/actioncable/CHANGELOG.md) for previous changes.