@rails/actioncable 6.1.3-2 → 6.1.4-3

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