actioncable 6.1.5 → 7.0.0.alpha1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f05b8e42e5c0e16cd0ad063f88977f57aea0db19c1b218eeb9ae7a692dd0ca90
4
- data.tar.gz: e08f6031d387fe50556814c79f5b3192ad7f399bd628184f938e02cd03a92039
3
+ metadata.gz: ae20b4c4ec6fe995164eb0a9701a3f79c92b8859e71aa10d1a95e2fd243a25ad
4
+ data.tar.gz: 69426337d819a6f40f24a4b57b5b0bd75bb0cdd8066da0eff4c8967c68a7a240
5
5
  SHA512:
6
- metadata.gz: 18e6ae12a5c20473486763269dc7289f49a27bf1d6b4dfbb5cfabd1eb45dc72a2774cf8b46e028868c119668544778b4a339f3d4ac236ff73836fa6bfe22bb1d
7
- data.tar.gz: a7f6e6ef179b3b375dc37c4a4c13c552281d5364acab5585705072f9b3a22de5aff9ee32d3f0a2c1fe5258b5f1d03b0cef808c096139656f358d629ae7284677
6
+ metadata.gz: b5f2b7b8028ef108170d53c6287fc652ecdf24e5c0d91bac0075003a56972462369fd0b2a4bcd071b1ee1b8800c4bede4b2b8d12e55f421915304ea8475002ad
7
+ data.tar.gz: 42a713b80aeafdb15c951f691d2a2f29fcbbcc3eb350439cc4d10614b534d6a959315cf990a681458267f06b8f12da8cd211035a0041fcb16b65cc55c0e1e88c
data/CHANGELOG.md CHANGED
@@ -1,130 +1,37 @@
1
- ## Rails 6.1.5 (March 09, 2022) ##
1
+ ## Rails 7.0.0.alpha1 (September 15, 2021) ##
2
2
 
3
- * The Action Cable client now ensures successful channel subscriptions:
3
+ * Compile ESM package that can be used directly in the browser as actioncable.esm.js.
4
4
 
5
- * The client maintains a set of pending subscriptions until either
6
- the server confirms the subscription or the channel is torn down.
7
- * Rectifies the race condition where an unsubscribe is rapidly followed
8
- by a subscribe (on the same channel identifier) and the requests are
9
- handled out of order by the ActionCable server, thereby ignoring the
10
- subscribe command.
11
-
12
- *Daniel Spinosa*
13
-
14
- * Truncate broadcast logging messages.
15
-
16
- *J Smith*
17
-
18
-
19
- ## Rails 6.1.4.7 (March 08, 2022) ##
20
-
21
- * No changes.
22
-
23
-
24
- ## Rails 6.1.4.6 (February 11, 2022) ##
25
-
26
- * No changes.
27
-
28
-
29
- ## Rails 6.1.4.5 (February 11, 2022) ##
30
-
31
- * No changes.
32
-
33
-
34
- ## Rails 6.1.4.4 (December 15, 2021) ##
35
-
36
- * No changes.
37
-
38
-
39
- ## Rails 6.1.4.3 (December 14, 2021) ##
40
-
41
- * No changes.
42
-
43
-
44
- ## Rails 6.1.4.2 (December 14, 2021) ##
45
-
46
- * No changes.
47
-
48
-
49
- ## Rails 6.1.4.1 (August 19, 2021) ##
50
-
51
- * No changes.
52
-
53
-
54
- ## Rails 6.1.4 (June 24, 2021) ##
55
-
56
- * Fix `ArgumentError` with ruby 3.0 on `RemoteConnection#disconnect`.
57
-
58
- *Vladislav*
59
-
60
-
61
- ## Rails 6.1.3.2 (May 05, 2021) ##
62
-
63
- * No changes.
64
-
65
-
66
- ## Rails 6.1.3.1 (March 26, 2021) ##
67
-
68
- * No changes.
69
-
70
-
71
- ## Rails 6.1.3 (February 17, 2021) ##
72
-
73
- * No changes.
74
-
75
-
76
- ## Rails 6.1.2.1 (February 10, 2021) ##
77
-
78
- * No changes.
79
-
80
-
81
- ## Rails 6.1.2 (February 09, 2021) ##
82
-
83
- * No changes.
84
-
85
-
86
- ## Rails 6.1.1 (January 07, 2021) ##
87
-
88
- * No changes.
89
-
90
-
91
- ## Rails 6.1.0 (December 09, 2020) ##
92
-
93
- * `ActionCable::Connection::Base` now allows intercepting unhandled exceptions
94
- with `rescue_from` before they are logged, which is useful for error reporting
95
- tools and other integrations.
5
+ *DHH*
96
6
 
97
- *Justin Talbott*
7
+ * Move action_cable.js to actioncable.js to match naming convention used for other Rails frameworks, and use JS console to communicate the deprecation.
98
8
 
99
- * Add `ActionCable::Channel#stream_or_reject_for` to stream if record is present, otherwise reject the connection
9
+ *DHH*
100
10
 
101
- *Atul Bhosale*
11
+ * Stop transpiling the UMD package generated as actioncable.js and drop the IE11 testing that relied on that.
102
12
 
103
- * Add `ActionCable::Channel#stop_stream_from` and `#stop_stream_for` to unsubscribe from a specific stream.
13
+ *DHH*
104
14
 
105
- *Zhang Kang*
15
+ * Truncate broadcast logging messages.
106
16
 
107
- * Add PostgreSQL subscription connection identificator.
17
+ *J Smith*
108
18
 
109
- Now you can distinguish Action Cable PostgreSQL subscription connections among others.
110
- Also, you can set custom `id` in `cable.yml` configuration.
19
+ * OpenSSL constants are now used for Digest computations.
111
20
 
112
- ```sql
113
- SELECT application_name FROM pg_stat_activity;
114
- /*
115
- application_name
116
- ------------------------
117
- psql
118
- ActionCable-PID-42
119
- (2 rows)
120
- */
121
- ```
21
+ *Dirkjan Bussink*
122
22
 
123
- *Sergey Ponomarev*
23
+ * The Action Cable client now includes safeguards to prevent a "thundering
24
+ herd" of client reconnects after server connectivity loss:
124
25
 
125
- * Subscription confirmations and rejections are now logged at the `DEBUG` level instead of `INFO`.
26
+ * The client will wait a random amount between 1x and 3x of the stale
27
+ threshold after the server's last ping before making the first
28
+ reconnection attempt.
29
+ * Subsequent reconnection attempts now use exponential backoff instead of
30
+ logarithmic backoff. To allow the delay between reconnection attempts to
31
+ increase slowly at first, the default exponentiation base is < 2.
32
+ * Random jitter is applied to each delay between reconnection attempts.
126
33
 
127
- *DHH*
34
+ *Jonathan Hefner*
128
35
 
129
36
 
130
- Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/actioncable/CHANGELOG.md) for previous changes.
37
+ Please check [6-1-stable](https://github.com/rails/rails/blob/6-1-stable/actioncable/CHANGELOG.md) for previous changes.
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015-2022 Basecamp, LLC
1
+ Copyright (c) 2015-2021 Basecamp, LLC
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the