@rails/actioncable 6.1.3 → 6.1.4-4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/CHANGELOG.md +0 -60
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rails/actioncable",
3
- "version": "6.1.3",
3
+ "version": "6.1.4-4",
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,60 +0,0 @@
1
- ## Rails 6.1.3 (February 17, 2021) ##
2
-
3
- * No changes.
4
-
5
-
6
- ## Rails 6.1.2.1 (February 10, 2021) ##
7
-
8
- * No changes.
9
-
10
-
11
- ## Rails 6.1.2 (February 09, 2021) ##
12
-
13
- * No changes.
14
-
15
-
16
- ## Rails 6.1.1 (January 07, 2021) ##
17
-
18
- * No changes.
19
-
20
-
21
- ## Rails 6.1.0 (December 09, 2020) ##
22
-
23
- * `ActionCable::Connection::Base` now allows intercepting unhandled exceptions
24
- with `rescue_from` before they are logged, which is useful for error reporting
25
- tools and other integrations.
26
-
27
- *Justin Talbott*
28
-
29
- * Add `ActionCable::Channel#stream_or_reject_for` to stream if record is present, otherwise reject the connection
30
-
31
- *Atul Bhosale*
32
-
33
- * Add `ActionCable::Channel#stop_stream_from` and `#stop_stream_for` to unsubscribe from a specific stream.
34
-
35
- *Zhang Kang*
36
-
37
- * Add PostgreSQL subscription connection identificator.
38
-
39
- Now you can distinguish Action Cable PostgreSQL subscription connections among others.
40
- Also, you can set custom `id` in `cable.yml` configuration.
41
-
42
- ```sql
43
- SELECT application_name FROM pg_stat_activity;
44
- /*
45
- application_name
46
- ------------------------
47
- psql
48
- ActionCable-PID-42
49
- (2 rows)
50
- */
51
- ```
52
-
53
- *Sergey Ponomarev*
54
-
55
- * Subscription confirmations and rejections are now logged at the `DEBUG` level instead of `INFO`.
56
-
57
- *DHH*
58
-
59
-
60
- Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/actioncable/CHANGELOG.md) for previous changes.