@rails/actioncable 6.1.4-4 → 6.1.4

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