cable_ready 5.0.0.pre8 → 5.0.0.pre9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -542
- data/Gemfile.lock +16 -78
- data/IMPLEMENTATION.md +93 -0
- data/README.md +35 -6
- data/Rakefile +0 -8
- data/app/assets/javascripts/cable_ready.js +959 -0
- data/app/assets/javascripts/cable_ready.min.js +2 -0
- data/app/assets/javascripts/cable_ready.min.js.map +1 -0
- data/app/assets/javascripts/cable_ready.umd.js +910 -0
- data/app/assets/javascripts/cable_ready.umd.min.js +2 -0
- data/app/assets/javascripts/cable_ready.umd.min.js.map +1 -0
- data/app/helpers/cable_ready_helper.rb +2 -1
- data/app/models/concerns/cable_ready/updatable/model_updatable_callbacks.rb +3 -3
- data/app/models/concerns/cable_ready/updatable.rb +55 -10
- data/cable_ready.gemspec +42 -0
- data/lib/cable_ready/engine.rb +40 -0
- data/lib/cable_ready/importmap.rb +2 -0
- data/lib/cable_ready/version.rb +1 -1
- data/lib/cable_ready.rb +1 -18
- data/package.json +51 -0
- data/rollup.config.js +75 -0
- data/test/dummy/app/models/dugong.rb +4 -0
- data/test/dummy/db/migrate/20220329222959_create_dugongs.rb +8 -0
- data/test/dummy/db/migrate/20220329230221_create_active_storage_tables.active_storage.rb +36 -0
- data/test/dummy/db/schema.rb +36 -1
- data/test/dummy/test/models/dugong_test.rb +7 -0
- data/test/lib/cable_ready/updatable_test.rb +23 -0
- data/yarn.lock +2817 -0
- metadata +145 -54
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d049d362cea52c6b1f62d7bee9e6160fd72c04f29105ff36f1aec0c3a9efa0c6
|
4
|
+
data.tar.gz: 4f6881a2e91ceb10cfce6845d83ddabec210bf9c6bf00a2b89986f3d62e3e87b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf90aad69184aa025be1393d18cb333f769ba2d0aaa4f95e4d8a30983659ea65f62223cfe639dca550d0d0c3595fd5cbf3b56a4a949e0ce7cf6d4c3141690d20
|
7
|
+
data.tar.gz: 5f62f60f64a990e1eca93912664a2ece849779561bd8f64152be265f254ac7e1d4c2ae968439ad410b89c61cdcd02f354e9149da73b7567a974457e9d7c03044
|
data/CHANGELOG.md
CHANGED
@@ -1,543 +1,3 @@
|
|
1
|
-
|
1
|
+
## Changelog
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v5.0.0.pre6...v5.0.0.pre7)
|
6
|
-
|
7
|
-
**Merged pull requests:**
|
8
|
-
|
9
|
-
- Add custom header to fetch [\#159](https://github.com/stimulusreflex/cable_ready/pull/159) ([julianrubisch](https://github.com/julianrubisch))
|
10
|
-
|
11
|
-
## [v5.0.0.pre6](https://github.com/stimulusreflex/cable_ready/tree/v5.0.0.pre6) (2021-10-14)
|
12
|
-
|
13
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v5.0.0.pre5...v5.0.0.pre6)
|
14
|
-
|
15
|
-
**Merged pull requests:**
|
16
|
-
|
17
|
-
- Re-export consumer [\#158](https://github.com/stimulusreflex/cable_ready/pull/158) ([julianrubisch](https://github.com/julianrubisch))
|
18
|
-
- Consolidate elements into a base class [\#157](https://github.com/stimulusreflex/cable_ready/pull/157) ([julianrubisch](https://github.com/julianrubisch))
|
19
|
-
|
20
|
-
## [v5.0.0.pre5](https://github.com/stimulusreflex/cable_ready/tree/v5.0.0.pre5) (2021-10-07)
|
21
|
-
|
22
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v5.0.0.pre4...v5.0.0.pre5)
|
23
|
-
|
24
|
-
**Implemented enhancements:**
|
25
|
-
|
26
|
-
- error handling for updates\_for edge cases [\#155](https://github.com/stimulusreflex/cable_ready/pull/155) ([leastbad](https://github.com/leastbad))
|
27
|
-
- post-pre4 updates [\#154](https://github.com/stimulusreflex/cable_ready/pull/154) ([leastbad](https://github.com/leastbad))
|
28
|
-
|
29
|
-
**Fixed bugs:**
|
30
|
-
|
31
|
-
- Given multiple updates\_for blocks with custom urls, only the first is re-fetched [\#153](https://github.com/stimulusreflex/cable_ready/issues/153)
|
32
|
-
|
33
|
-
**Merged pull requests:**
|
34
|
-
|
35
|
-
- Export elements [\#156](https://github.com/stimulusreflex/cable_ready/pull/156) ([julianrubisch](https://github.com/julianrubisch))
|
36
|
-
|
37
|
-
## [v5.0.0.pre4](https://github.com/stimulusreflex/cable_ready/tree/v5.0.0.pre4) (2021-10-01)
|
38
|
-
|
39
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v5.0.0.pre3...v5.0.0.pre4)
|
40
|
-
|
41
|
-
**Implemented enhancements:**
|
42
|
-
|
43
|
-
- Receive morph updates from model/PORO callbacks [\#145](https://github.com/stimulusreflex/cable_ready/pull/145) ([leastbad](https://github.com/leastbad))
|
44
|
-
|
45
|
-
**Closed issues:**
|
46
|
-
|
47
|
-
- Uncaught TypeError: operations.forEach is not a function [\#149](https://github.com/stimulusreflex/cable_ready/issues/149)
|
48
|
-
|
49
|
-
**Merged pull requests:**
|
50
|
-
|
51
|
-
- Optionally debounce updates [\#151](https://github.com/stimulusreflex/cable_ready/pull/151) ([julianrubisch](https://github.com/julianrubisch))
|
52
|
-
- Fix updates for lazy loading [\#150](https://github.com/stimulusreflex/cable_ready/pull/150) ([julianrubisch](https://github.com/julianrubisch))
|
53
|
-
- Bump nokogiri from 1.12.3 to 1.12.5 [\#148](https://github.com/stimulusreflex/cable_ready/pull/148) ([dependabot[bot]](https://github.com/apps/dependabot))
|
54
|
-
- \[Readme\] Make badges link to RubyGems and npm packages [\#147](https://github.com/stimulusreflex/cable_ready/pull/147) ([palkan](https://github.com/palkan))
|
55
|
-
- Fix wrong CableReady import [\#146](https://github.com/stimulusreflex/cable_ready/pull/146) ([n-rodriguez](https://github.com/n-rodriguez))
|
56
|
-
|
57
|
-
## [v5.0.0.pre3](https://github.com/stimulusreflex/cable_ready/tree/v5.0.0.pre3) (2021-08-22)
|
58
|
-
|
59
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v5.0.0.pre2...v5.0.0.pre3)
|
60
|
-
|
61
|
-
**Implemented enhancements:**
|
62
|
-
|
63
|
-
- redirect\_to operation [\#144](https://github.com/stimulusreflex/cable_ready/pull/144) ([leastbad](https://github.com/leastbad))
|
64
|
-
- RFC simplifed JSON payload + named batches [\#142](https://github.com/stimulusreflex/cable_ready/pull/142) ([leastbad](https://github.com/leastbad))
|
65
|
-
|
66
|
-
**Merged pull requests:**
|
67
|
-
|
68
|
-
- Bump path-parse from 1.0.6 to 1.0.7 [\#143](https://github.com/stimulusreflex/cable_ready/pull/143) ([dependabot[bot]](https://github.com/apps/dependabot))
|
69
|
-
|
70
|
-
## [v5.0.0.pre2](https://github.com/stimulusreflex/cable_ready/tree/v5.0.0.pre2) (2021-07-21)
|
71
|
-
|
72
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v5.0.0.pre1...v5.0.0.pre2)
|
73
|
-
|
74
|
-
**Implemented enhancements:**
|
75
|
-
|
76
|
-
- register a CableReady JSON MIME type [\#140](https://github.com/stimulusreflex/cable_ready/pull/140) ([existentialmutt](https://github.com/existentialmutt))
|
77
|
-
- Smart options \(they grow up so fast\) [\#136](https://github.com/stimulusreflex/cable_ready/pull/136) ([leastbad](https://github.com/leastbad))
|
78
|
-
- Support `to_dom_selector` for operation selectors [\#135](https://github.com/stimulusreflex/cable_ready/pull/135) ([jaredcwhite](https://github.com/jaredcwhite))
|
79
|
-
- dom\_id should always be lowercase [\#129](https://github.com/stimulusreflex/cable_ready/pull/129) ([leastbad](https://github.com/leastbad))
|
80
|
-
|
81
|
-
**Fixed bugs:**
|
82
|
-
|
83
|
-
- Improve install experience [\#128](https://github.com/stimulusreflex/cable_ready/pull/128) ([leastbad](https://github.com/leastbad))
|
84
|
-
|
85
|
-
**Closed issues:**
|
86
|
-
|
87
|
-
- Idea: ability to pass any object which responds to `to_dom_selector` as a selector [\#134](https://github.com/stimulusreflex/cable_ready/issues/134)
|
88
|
-
|
89
|
-
**Merged pull requests:**
|
90
|
-
|
91
|
-
- Bump addressable from 2.7.0 to 2.8.0 [\#141](https://github.com/stimulusreflex/cable_ready/pull/141) ([dependabot[bot]](https://github.com/apps/dependabot))
|
92
|
-
- chore: make webpack happy with no sideEffects [\#138](https://github.com/stimulusreflex/cable_ready/pull/138) ([ParamagicDev](https://github.com/ParamagicDev))
|
93
|
-
|
94
|
-
## [v5.0.0.pre1](https://github.com/stimulusreflex/cable_ready/tree/v5.0.0.pre1) (2021-06-02)
|
95
|
-
|
96
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v5.0.0.pre0...v5.0.0.pre1)
|
97
|
-
|
98
|
-
**Merged pull requests:**
|
99
|
-
|
100
|
-
- Include app folder in release [\#133](https://github.com/stimulusreflex/cable_ready/pull/133) ([julianrubisch](https://github.com/julianrubisch))
|
101
|
-
|
102
|
-
## [v5.0.0.pre0](https://github.com/stimulusreflex/cable_ready/tree/v5.0.0.pre0) (2021-05-20)
|
103
|
-
|
104
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.5.0...v5.0.0.pre0)
|
105
|
-
|
106
|
-
**Implemented enhancements:**
|
107
|
-
|
108
|
-
- console\_table operation [\#125](https://github.com/stimulusreflex/cable_ready/pull/125) ([leastbad](https://github.com/leastbad))
|
109
|
-
- Introduce `OperationStore` to add operations on-the-fly [\#124](https://github.com/stimulusreflex/cable_ready/pull/124) ([marcoroth](https://github.com/marcoroth))
|
110
|
-
- cable\_car aka 'Ajax mode' [\#108](https://github.com/stimulusreflex/cable_ready/pull/108) ([leastbad](https://github.com/leastbad))
|
111
|
-
- chainable selectors [\#107](https://github.com/stimulusreflex/cable_ready/pull/107) ([leastbad](https://github.com/leastbad))
|
112
|
-
|
113
|
-
**Closed issues:**
|
114
|
-
|
115
|
-
- Warning in Ruby 3.0 [\#113](https://github.com/stimulusreflex/cable_ready/issues/113)
|
116
|
-
- play\_sound operation hijacks sound controls [\#111](https://github.com/stimulusreflex/cable_ready/issues/111)
|
117
|
-
- Provide a CableReady channel generator [\#94](https://github.com/stimulusreflex/cable_ready/issues/94)
|
118
|
-
- Jest Error [\#85](https://github.com/stimulusreflex/cable_ready/issues/85)
|
119
|
-
- Event Dispatch: help with serialization [\#59](https://github.com/stimulusreflex/cable_ready/issues/59)
|
120
|
-
|
121
|
-
**Merged pull requests:**
|
122
|
-
|
123
|
-
- Remove warning message for already registered custom element [\#126](https://github.com/stimulusreflex/cable_ready/pull/126) ([marcoroth](https://github.com/marcoroth))
|
124
|
-
- Bump lodash from 4.17.20 to 4.17.21 [\#123](https://github.com/stimulusreflex/cable_ready/pull/123) ([dependabot[bot]](https://github.com/apps/dependabot))
|
125
|
-
- Bump handlebars from 4.7.6 to 4.7.7 [\#122](https://github.com/stimulusreflex/cable_ready/pull/122) ([dependabot[bot]](https://github.com/apps/dependabot))
|
126
|
-
- Bump actionpack from 6.1.3.1 to 6.1.3.2 [\#121](https://github.com/stimulusreflex/cable_ready/pull/121) ([dependabot[bot]](https://github.com/apps/dependabot))
|
127
|
-
- Bump rexml from 3.2.4 to 3.2.5 [\#120](https://github.com/stimulusreflex/cable_ready/pull/120) ([dependabot[bot]](https://github.com/apps/dependabot))
|
128
|
-
- broadcast\_later [\#119](https://github.com/stimulusreflex/cable_ready/pull/119) ([julianrubisch](https://github.com/julianrubisch))
|
129
|
-
- set\_meta operation [\#117](https://github.com/stimulusreflex/cable_ready/pull/117) ([leastbad](https://github.com/leastbad))
|
130
|
-
- Setup better finalizer [\#116](https://github.com/stimulusreflex/cable_ready/pull/116) ([hopsoft](https://github.com/hopsoft))
|
131
|
-
- Bump activerecord from 6.1.1 to 6.1.3 [\#115](https://github.com/stimulusreflex/cable_ready/pull/115) ([dependabot[bot]](https://github.com/apps/dependabot))
|
132
|
-
- Bump actionpack from 6.1.1 to 6.1.3 [\#114](https://github.com/stimulusreflex/cable_ready/pull/114) ([dependabot[bot]](https://github.com/apps/dependabot))
|
133
|
-
- sound opt-in [\#112](https://github.com/stimulusreflex/cable_ready/pull/112) ([leastbad](https://github.com/leastbad))
|
134
|
-
- before -\> operate -\> after [\#110](https://github.com/stimulusreflex/cable_ready/pull/110) ([leastbad](https://github.com/leastbad))
|
135
|
-
- restructure client [\#109](https://github.com/stimulusreflex/cable_ready/pull/109) ([leastbad](https://github.com/leastbad))
|
136
|
-
- undefined no more [\#106](https://github.com/stimulusreflex/cable_ready/pull/106) ([leastbad](https://github.com/leastbad))
|
137
|
-
- sanity check + initializer generator [\#105](https://github.com/stimulusreflex/cable_ready/pull/105) ([leastbad](https://github.com/leastbad))
|
138
|
-
- stream\_from [\#104](https://github.com/stimulusreflex/cable_ready/pull/104) ([leastbad](https://github.com/leastbad))
|
139
|
-
- Channel generator [\#95](https://github.com/stimulusreflex/cable_ready/pull/95) ([julianrubisch](https://github.com/julianrubisch))
|
140
|
-
|
141
|
-
## [v4.5.0](https://github.com/stimulusreflex/cable_ready/tree/v4.5.0) (2021-01-26)
|
142
|
-
|
143
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.4.6...v4.5.0)
|
144
|
-
|
145
|
-
**Implemented enhancements:**
|
146
|
-
|
147
|
-
- graft operation [\#103](https://github.com/stimulusreflex/cable_ready/pull/103) ([leastbad](https://github.com/leastbad))
|
148
|
-
- scroll\_into\_view operation [\#102](https://github.com/stimulusreflex/cable_ready/pull/102) ([leastbad](https://github.com/leastbad))
|
149
|
-
- replace\_state and go operations [\#101](https://github.com/stimulusreflex/cable_ready/pull/101) ([leastbad](https://github.com/leastbad))
|
150
|
-
- play\_sound operation [\#98](https://github.com/stimulusreflex/cable_ready/pull/98) ([leastbad](https://github.com/leastbad))
|
151
|
-
|
152
|
-
**Merged pull requests:**
|
153
|
-
|
154
|
-
- Bump nokogiri from 1.10.10 to 1.11.1 [\#97](https://github.com/stimulusreflex/cable_ready/pull/97) ([dependabot[bot]](https://github.com/apps/dependabot))
|
155
|
-
- Global config, simplify threading, custom operations [\#96](https://github.com/stimulusreflex/cable_ready/pull/96) ([hopsoft](https://github.com/hopsoft))
|
156
|
-
- multiple selector element operations [\#92](https://github.com/stimulusreflex/cable_ready/pull/92) ([leastbad](https://github.com/leastbad))
|
157
|
-
- Add `append`, `prepend` and `replace` operations [\#90](https://github.com/stimulusreflex/cable_ready/pull/90) ([marcoroth](https://github.com/marcoroth))
|
158
|
-
- rework custom operations [\#88](https://github.com/stimulusreflex/cable_ready/pull/88) ([leastbad](https://github.com/leastbad))
|
159
|
-
|
160
|
-
## [v4.4.6](https://github.com/stimulusreflex/cable_ready/tree/v4.4.6) (2020-12-18)
|
161
|
-
|
162
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.4.5...v4.4.6)
|
163
|
-
|
164
|
-
**Merged pull requests:**
|
165
|
-
|
166
|
-
- pluggable before/after morph callbacks [\#87](https://github.com/stimulusreflex/cable_ready/pull/87) ([leastbad](https://github.com/leastbad))
|
167
|
-
- Add more detail to the CableReady error message [\#84](https://github.com/stimulusreflex/cable_ready/pull/84) ([marcoroth](https://github.com/marcoroth))
|
168
|
-
|
169
|
-
## [v4.4.5](https://github.com/stimulusreflex/cable_ready/tree/v4.4.5) (2020-12-13)
|
170
|
-
|
171
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.4.4...v4.4.5)
|
172
|
-
|
173
|
-
**Merged pull requests:**
|
174
|
-
|
175
|
-
- changed storage method names, added clear flag [\#86](https://github.com/stimulusreflex/cable_ready/pull/86) ([leastbad](https://github.com/leastbad))
|
176
|
-
|
177
|
-
## [v4.4.4](https://github.com/stimulusreflex/cable_ready/tree/v4.4.4) (2020-12-11)
|
178
|
-
|
179
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.4.3...v4.4.4)
|
180
|
-
|
181
|
-
**Merged pull requests:**
|
182
|
-
|
183
|
-
- Add support for sessionStorage and localStorage [\#83](https://github.com/stimulusreflex/cable_ready/pull/83) ([hopsoft](https://github.com/hopsoft))
|
184
|
-
|
185
|
-
## [v4.4.3](https://github.com/stimulusreflex/cable_ready/tree/v4.4.3) (2020-12-01)
|
186
|
-
|
187
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.4.2...v4.4.3)
|
188
|
-
|
189
|
-
**Merged pull requests:**
|
190
|
-
|
191
|
-
- Fix bug related to channel calling broadcast on the singleton [\#82](https://github.com/stimulusreflex/cable_ready/pull/82) ([hopsoft](https://github.com/hopsoft))
|
192
|
-
|
193
|
-
## [v4.4.2](https://github.com/stimulusreflex/cable_ready/tree/v4.4.2) (2020-11-30)
|
194
|
-
|
195
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.4.1...v4.4.2)
|
196
|
-
|
197
|
-
## [v4.4.1](https://github.com/stimulusreflex/cable_ready/tree/v4.4.1) (2020-11-28)
|
198
|
-
|
199
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.4.0...v4.4.1)
|
200
|
-
|
201
|
-
**Merged pull requests:**
|
202
|
-
|
203
|
-
- Apply setFocus behavior to more element mutations [\#81](https://github.com/stimulusreflex/cable_ready/pull/81) ([hopsoft](https://github.com/hopsoft))
|
204
|
-
|
205
|
-
## [v4.4.0](https://github.com/stimulusreflex/cable_ready/tree/v4.4.0) (2020-11-24)
|
206
|
-
|
207
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.4.0.pre4...v4.4.0)
|
208
|
-
|
209
|
-
## [v4.4.0.pre4](https://github.com/stimulusreflex/cable_ready/tree/v4.4.0.pre4) (2020-11-22)
|
210
|
-
|
211
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.4.0.pre3...v4.4.0.pre4)
|
212
|
-
|
213
|
-
**Fixed bugs:**
|
214
|
-
|
215
|
-
- only compare isEqualNode for non-inputs [\#80](https://github.com/stimulusreflex/cable_ready/pull/80) ([leastbad](https://github.com/leastbad))
|
216
|
-
|
217
|
-
## [v4.4.0.pre3](https://github.com/stimulusreflex/cable_ready/tree/v4.4.0.pre3) (2020-11-13)
|
218
|
-
|
219
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.4.0.pre2...v4.4.0.pre3)
|
220
|
-
|
221
|
-
**Closed issues:**
|
222
|
-
|
223
|
-
- CableReady detected an error in insertAdjacentHtml. Object doesn't support this action - IE11 only [\#76](https://github.com/stimulusreflex/cable_ready/issues/76)
|
224
|
-
- shouldMorph doesn't work well with some form elements [\#70](https://github.com/stimulusreflex/cable_ready/issues/70)
|
225
|
-
- Operations go missing before broadcasting [\#64](https://github.com/stimulusreflex/cable_ready/issues/64)
|
226
|
-
|
227
|
-
**Merged pull requests:**
|
228
|
-
|
229
|
-
- Move package.json to root and prepare for v4.4.0.pre3 [\#79](https://github.com/stimulusreflex/cable_ready/pull/79) ([hopsoft](https://github.com/hopsoft))
|
230
|
-
- method chaining [\#78](https://github.com/stimulusreflex/cable_ready/pull/78) ([leastbad](https://github.com/leastbad))
|
231
|
-
- jquery support [\#75](https://github.com/stimulusreflex/cable_ready/pull/75) ([leastbad](https://github.com/leastbad))
|
232
|
-
- Removed isEqualNode comparison [\#71](https://github.com/stimulusreflex/cable_ready/pull/71) ([adank92](https://github.com/adank92))
|
233
|
-
|
234
|
-
## [v4.4.0.pre2](https://github.com/stimulusreflex/cable_ready/tree/v4.4.0.pre2) (2020-11-02)
|
235
|
-
|
236
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.4.0.pre1...v4.4.0.pre2)
|
237
|
-
|
238
|
-
**Merged pull requests:**
|
239
|
-
|
240
|
-
- use CustomEvent to get IE11 working [\#74](https://github.com/stimulusreflex/cable_ready/pull/74) ([existentialmutt](https://github.com/existentialmutt))
|
241
|
-
|
242
|
-
## [v4.4.0.pre1](https://github.com/stimulusreflex/cable_ready/tree/v4.4.0.pre1) (2020-09-25)
|
243
|
-
|
244
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.4.0.pre0...v4.4.0.pre1)
|
245
|
-
|
246
|
-
**Merged pull requests:**
|
247
|
-
|
248
|
-
- Add support for pushState [\#73](https://github.com/stimulusreflex/cable_ready/pull/73) ([hopsoft](https://github.com/hopsoft))
|
249
|
-
- Bump actionview from 6.0.3.2 to 6.0.3.3 [\#72](https://github.com/stimulusreflex/cable_ready/pull/72) ([dependabot[bot]](https://github.com/apps/dependabot))
|
250
|
-
- set\_focus operation [\#69](https://github.com/stimulusreflex/cable_ready/pull/69) ([leastbad](https://github.com/leastbad))
|
251
|
-
|
252
|
-
## [v4.4.0.pre0](https://github.com/stimulusreflex/cable_ready/tree/v4.4.0.pre0) (2020-09-02)
|
253
|
-
|
254
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.3.0...v4.4.0.pre0)
|
255
|
-
|
256
|
-
**Implemented enhancements:**
|
257
|
-
|
258
|
-
- Add a shared mutex to avoid concurrency issues in Channels [\#65](https://github.com/stimulusreflex/cable_ready/pull/65) ([barrywoolgar](https://github.com/barrywoolgar))
|
259
|
-
|
260
|
-
**Closed issues:**
|
261
|
-
|
262
|
-
- Using morph with a document fragment appears to do a full replace instead of a morph [\#67](https://github.com/stimulusreflex/cable_ready/issues/67)
|
263
|
-
- documentation: Mention cable.yml adapter configuration [\#66](https://github.com/stimulusreflex/cable_ready/issues/66)
|
264
|
-
|
265
|
-
**Merged pull requests:**
|
266
|
-
|
267
|
-
- Provide an async perform method [\#63](https://github.com/stimulusreflex/cable_ready/pull/63) ([julianrubisch](https://github.com/julianrubisch))
|
268
|
-
- Add braces to hash parameter to remove warning [\#61](https://github.com/stimulusreflex/cable_ready/pull/61) ([dabit](https://github.com/dabit))
|
269
|
-
- only pass inner html if childrenOnly is false [\#58](https://github.com/stimulusreflex/cable_ready/pull/58) ([joshleblanc](https://github.com/joshleblanc))
|
270
|
-
|
271
|
-
## [v4.3.0](https://github.com/stimulusreflex/cable_ready/tree/v4.3.0) (2020-07-02)
|
272
|
-
|
273
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.3.0.pre2...v4.3.0)
|
274
|
-
|
275
|
-
## [v4.3.0.pre2](https://github.com/stimulusreflex/cable_ready/tree/v4.3.0.pre2) (2020-06-27)
|
276
|
-
|
277
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.3.0-pre1...v4.3.0.pre2)
|
278
|
-
|
279
|
-
**Implemented enhancements:**
|
280
|
-
|
281
|
-
- Notifications [\#55](https://github.com/stimulusreflex/cable_ready/pull/55) ([leastbad](https://github.com/leastbad))
|
282
|
-
|
283
|
-
**Closed issues:**
|
284
|
-
|
285
|
-
- current\_user concerns? [\#54](https://github.com/stimulusreflex/cable_ready/issues/54)
|
286
|
-
- Update documentation [\#52](https://github.com/stimulusreflex/cable_ready/issues/52)
|
287
|
-
|
288
|
-
**Merged pull requests:**
|
289
|
-
|
290
|
-
- Bump rack from 2.2.2 to 2.2.3 [\#57](https://github.com/stimulusreflex/cable_ready/pull/57) ([dependabot[bot]](https://github.com/apps/dependabot))
|
291
|
-
- Bump actionpack from 6.0.3.1 to 6.0.3.2 [\#56](https://github.com/stimulusreflex/cable_ready/pull/56) ([dependabot[bot]](https://github.com/apps/dependabot))
|
292
|
-
|
293
|
-
## [v4.3.0-pre1](https://github.com/stimulusreflex/cable_ready/tree/v4.3.0-pre1) (2020-06-15)
|
294
|
-
|
295
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.3.0.pre1...v4.3.0-pre1)
|
296
|
-
|
297
|
-
## [v4.3.0.pre1](https://github.com/stimulusreflex/cable_ready/tree/v4.3.0.pre1) (2020-06-15)
|
298
|
-
|
299
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.3.0.pre0...v4.3.0.pre1)
|
300
|
-
|
301
|
-
**Merged pull requests:**
|
302
|
-
|
303
|
-
- text\_content is missing from 4.3.0.pre0 [\#53](https://github.com/stimulusreflex/cable_ready/pull/53) ([leastbad](https://github.com/leastbad))
|
304
|
-
|
305
|
-
## [v4.3.0.pre0](https://github.com/stimulusreflex/cable_ready/tree/v4.3.0.pre0) (2020-06-13)
|
306
|
-
|
307
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.2.0...v4.3.0.pre0)
|
308
|
-
|
309
|
-
**Implemented enhancements:**
|
310
|
-
|
311
|
-
- Make DOMOperations extendable [\#44](https://github.com/stimulusreflex/cable_ready/pull/44) ([n-rodriguez](https://github.com/n-rodriguez))
|
312
|
-
- broadcast\_to method [\#38](https://github.com/stimulusreflex/cable_ready/pull/38) ([leastbad](https://github.com/leastbad))
|
313
|
-
|
314
|
-
**Closed issues:**
|
315
|
-
|
316
|
-
- Make JS DOMOperations extendable [\#43](https://github.com/stimulusreflex/cable_ready/issues/43)
|
317
|
-
|
318
|
-
**Merged pull requests:**
|
319
|
-
|
320
|
-
- Dom id signature fix [\#51](https://github.com/stimulusreflex/cable_ready/pull/51) ([leastbad](https://github.com/leastbad))
|
321
|
-
- add dom\_id helper [\#50](https://github.com/stimulusreflex/cable_ready/pull/50) ([leastbad](https://github.com/leastbad))
|
322
|
-
- Support for multiple CSS classes. [\#49](https://github.com/stimulusreflex/cable_ready/pull/49) ([sarriagada](https://github.com/sarriagada))
|
323
|
-
- Make morph emit after event [\#48](https://github.com/stimulusreflex/cable_ready/pull/48) ([julianrubisch](https://github.com/julianrubisch))
|
324
|
-
- Customize operations via initializer [\#47](https://github.com/stimulusreflex/cable_ready/pull/47) ([leastbad](https://github.com/leastbad))
|
325
|
-
- Correct method 'outerHtml' to 'outer\_html' in documentation [\#39](https://github.com/stimulusreflex/cable_ready/pull/39) ([pskarlas](https://github.com/pskarlas))
|
326
|
-
- Add setStyles [\#37](https://github.com/stimulusreflex/cable_ready/pull/37) ([excid3](https://github.com/excid3))
|
327
|
-
- Fix typo in method name outerHTML -\> outer\_html [\#35](https://github.com/stimulusreflex/cable_ready/pull/35) ([back2war](https://github.com/back2war))
|
328
|
-
|
329
|
-
## [v4.2.0](https://github.com/stimulusreflex/cable_ready/tree/v4.2.0) (2020-06-02)
|
330
|
-
|
331
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.1.2...v4.2.0)
|
332
|
-
|
333
|
-
**Closed issues:**
|
334
|
-
|
335
|
-
- Question: Would you consider this intended behaviour? [\#41](https://github.com/stimulusreflex/cable_ready/issues/41)
|
336
|
-
|
337
|
-
**Merged pull requests:**
|
338
|
-
|
339
|
-
- after-outer-html emitted from new element [\#46](https://github.com/stimulusreflex/cable_ready/pull/46) ([leastbad](https://github.com/leastbad))
|
340
|
-
- Fix `outer_html` notation [\#45](https://github.com/stimulusreflex/cable_ready/pull/45) ([julianrubisch](https://github.com/julianrubisch))
|
341
|
-
- Print out the selector for easier debugging perform errors [\#36](https://github.com/stimulusreflex/cable_ready/pull/36) ([excid3](https://github.com/excid3))
|
342
|
-
- add set\_property method to library [\#34](https://github.com/stimulusreflex/cable_ready/pull/34) ([leastbad](https://github.com/leastbad))
|
343
|
-
|
344
|
-
## [v4.1.2](https://github.com/stimulusreflex/cable_ready/tree/v4.1.2) (2020-04-27)
|
345
|
-
|
346
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.1.1...v4.1.2)
|
347
|
-
|
348
|
-
**Fixed bugs:**
|
349
|
-
|
350
|
-
- Ensure the active text input retains its value and focus after DOM mutations [\#33](https://github.com/stimulusreflex/cable_ready/pull/33) ([hopsoft](https://github.com/hopsoft))
|
351
|
-
|
352
|
-
## [v4.1.1](https://github.com/stimulusreflex/cable_ready/tree/v4.1.1) (2020-04-20)
|
353
|
-
|
354
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.1.0...v4.1.1)
|
355
|
-
|
356
|
-
**Implemented enhancements:**
|
357
|
-
|
358
|
-
- add set\_style method to library [\#32](https://github.com/stimulusreflex/cable_ready/pull/32) ([leastbad](https://github.com/leastbad))
|
359
|
-
|
360
|
-
**Merged pull requests:**
|
361
|
-
|
362
|
-
- Add funding file [\#31](https://github.com/stimulusreflex/cable_ready/pull/31) ([andrewmcodes](https://github.com/andrewmcodes))
|
363
|
-
- update README and package.json [\#30](https://github.com/stimulusreflex/cable_ready/pull/30) ([andrewmcodes](https://github.com/andrewmcodes))
|
364
|
-
|
365
|
-
## [v4.1.0](https://github.com/stimulusreflex/cable_ready/tree/v4.1.0) (2020-04-05)
|
366
|
-
|
367
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.0.9...v4.1.0)
|
368
|
-
|
369
|
-
**Merged pull requests:**
|
370
|
-
|
371
|
-
- Bump acorn from 7.1.0 to 7.1.1 in /javascript [\#29](https://github.com/stimulusreflex/cable_ready/pull/29) ([dependabot[bot]](https://github.com/apps/dependabot))
|
372
|
-
- Set cookie support [\#28](https://github.com/stimulusreflex/cable_ready/pull/28) ([hopsoft](https://github.com/hopsoft))
|
373
|
-
- README.md: Fix typo [\#27](https://github.com/stimulusreflex/cable_ready/pull/27) ([henrik](https://github.com/henrik))
|
374
|
-
- Update event-dispatch.md [\#25](https://github.com/stimulusreflex/cable_ready/pull/25) ([leastbad](https://github.com/leastbad))
|
375
|
-
- Fix typo on Remove Css Class methods [\#24](https://github.com/stimulusreflex/cable_ready/pull/24) ([dark88888](https://github.com/dark88888))
|
376
|
-
|
377
|
-
## [v4.0.9](https://github.com/stimulusreflex/cable_ready/tree/v4.0.9) (2020-01-27)
|
378
|
-
|
379
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.0.8...v4.0.9)
|
380
|
-
|
381
|
-
**Merged pull requests:**
|
382
|
-
|
383
|
-
- Add support to ignore missing DOM elements via options parameter [\#23](https://github.com/stimulusreflex/cable_ready/pull/23) ([leastbad](https://github.com/leastbad))
|
384
|
-
- fix sporadic error - undefined method \<\< for nil, when adding operation [\#21](https://github.com/stimulusreflex/cable_ready/pull/21) ([szTheory](https://github.com/szTheory))
|
385
|
-
|
386
|
-
## [v4.0.8](https://github.com/stimulusreflex/cable_ready/tree/v4.0.8) (2019-11-04)
|
387
|
-
|
388
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.0.7...v4.0.8)
|
389
|
-
|
390
|
-
**Merged pull requests:**
|
391
|
-
|
392
|
-
- Simplify logic to make it more understandable [\#20](https://github.com/stimulusreflex/cable_ready/pull/20) ([hopsoft](https://github.com/hopsoft))
|
393
|
-
|
394
|
-
## [v4.0.7](https://github.com/stimulusreflex/cable_ready/tree/v4.0.7) (2019-10-05)
|
395
|
-
|
396
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.0.6...v4.0.7)
|
397
|
-
|
398
|
-
**Merged pull requests:**
|
399
|
-
|
400
|
-
- Add gh actions [\#17](https://github.com/stimulusreflex/cable_ready/pull/17) ([andrewmcodes](https://github.com/andrewmcodes))
|
401
|
-
- Add Gitbook integration [\#16](https://github.com/stimulusreflex/cable_ready/pull/16) ([andrewmcodes](https://github.com/andrewmcodes))
|
402
|
-
|
403
|
-
## [v4.0.6](https://github.com/stimulusreflex/cable_ready/tree/v4.0.6) (2019-10-03)
|
404
|
-
|
405
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.0.5...v4.0.6)
|
406
|
-
|
407
|
-
**Implemented enhancements:**
|
408
|
-
|
409
|
-
- Add support for redirect/visit [\#10](https://github.com/stimulusreflex/cable_ready/issues/10)
|
410
|
-
|
411
|
-
**Merged pull requests:**
|
412
|
-
|
413
|
-
- Update to format with prettier-standard [\#15](https://github.com/stimulusreflex/cable_ready/pull/15) ([hopsoft](https://github.com/hopsoft))
|
414
|
-
- Add support for permanent nodes [\#14](https://github.com/stimulusreflex/cable_ready/pull/14) ([andreaslillebo](https://github.com/andreaslillebo))
|
415
|
-
|
416
|
-
## [v4.0.5](https://github.com/stimulusreflex/cable_ready/tree/v4.0.5) (2019-09-20)
|
417
|
-
|
418
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.0.4...v4.0.5)
|
419
|
-
|
420
|
-
**Merged pull requests:**
|
421
|
-
|
422
|
-
- Hopsoft/bubble [\#13](https://github.com/stimulusreflex/cable_ready/pull/13) ([hopsoft](https://github.com/hopsoft))
|
423
|
-
|
424
|
-
## [v4.0.4](https://github.com/stimulusreflex/cable_ready/tree/v4.0.4) (2019-09-19)
|
425
|
-
|
426
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.0.3...v4.0.4)
|
427
|
-
|
428
|
-
**Merged pull requests:**
|
429
|
-
|
430
|
-
- Refactor how events are managed [\#12](https://github.com/stimulusreflex/cable_ready/pull/12) ([hopsoft](https://github.com/hopsoft))
|
431
|
-
- Added support for XPath selectors [\#11](https://github.com/stimulusreflex/cable_ready/pull/11) ([leastbad](https://github.com/leastbad))
|
432
|
-
|
433
|
-
## [v4.0.3](https://github.com/stimulusreflex/cable_ready/tree/v4.0.3) (2019-08-17)
|
434
|
-
|
435
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.0.2...v4.0.3)
|
436
|
-
|
437
|
-
## [v4.0.2](https://github.com/stimulusreflex/cable_ready/tree/v4.0.2) (2019-08-10)
|
438
|
-
|
439
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.0.1...v4.0.2)
|
440
|
-
|
441
|
-
## [v4.0.1](https://github.com/stimulusreflex/cable_ready/tree/v4.0.1) (2019-08-10)
|
442
|
-
|
443
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.0.0...v4.0.1)
|
444
|
-
|
445
|
-
**Merged pull requests:**
|
446
|
-
|
447
|
-
- Merge JavaScript NPM package into this repo [\#9](https://github.com/stimulusreflex/cable_ready/pull/9) ([hopsoft](https://github.com/hopsoft))
|
448
|
-
|
449
|
-
## [v4.0.0](https://github.com/stimulusreflex/cable_ready/tree/v4.0.0) (2019-08-09)
|
450
|
-
|
451
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v3.0.1...v4.0.0)
|
452
|
-
|
453
|
-
## [v3.0.1](https://github.com/stimulusreflex/cable_ready/tree/v3.0.1) (2019-05-13)
|
454
|
-
|
455
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v3.0.0...v3.0.1)
|
456
|
-
|
457
|
-
## [v3.0.0](https://github.com/stimulusreflex/cable_ready/tree/v3.0.0) (2019-03-25)
|
458
|
-
|
459
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v2.0.8...v3.0.0)
|
460
|
-
|
461
|
-
**Merged pull requests:**
|
462
|
-
|
463
|
-
- Use outerHTML instead of replace [\#8](https://github.com/stimulusreflex/cable_ready/pull/8) ([hopsoft](https://github.com/hopsoft))
|
464
|
-
|
465
|
-
## [v2.0.8](https://github.com/stimulusreflex/cable_ready/tree/v2.0.8) (2018-11-25)
|
466
|
-
|
467
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v2.0.7...v2.0.8)
|
468
|
-
|
469
|
-
**Merged pull requests:**
|
470
|
-
|
471
|
-
- Dispatch before/after events for DOM activity [\#7](https://github.com/stimulusreflex/cable_ready/pull/7) ([hopsoft](https://github.com/hopsoft))
|
472
|
-
|
473
|
-
## [v2.0.7](https://github.com/stimulusreflex/cable_ready/tree/v2.0.7) (2018-10-26)
|
474
|
-
|
475
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v2.0.6...v2.0.7)
|
476
|
-
|
477
|
-
## [v2.0.6](https://github.com/stimulusreflex/cable_ready/tree/v2.0.6) (2018-10-20)
|
478
|
-
|
479
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v2.0.5...v2.0.6)
|
480
|
-
|
481
|
-
## [v2.0.5](https://github.com/stimulusreflex/cable_ready/tree/v2.0.5) (2018-10-08)
|
482
|
-
|
483
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v2.0.4...v2.0.5)
|
484
|
-
|
485
|
-
**Merged pull requests:**
|
486
|
-
|
487
|
-
- Support morph option for childrenOnly [\#6](https://github.com/stimulusreflex/cable_ready/pull/6) ([hopsoft](https://github.com/hopsoft))
|
488
|
-
|
489
|
-
## [v2.0.4](https://github.com/stimulusreflex/cable_ready/tree/v2.0.4) (2017-11-09)
|
490
|
-
|
491
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v2.0.3...v2.0.4)
|
492
|
-
|
493
|
-
## [v2.0.3](https://github.com/stimulusreflex/cable_ready/tree/v2.0.3) (2017-11-06)
|
494
|
-
|
495
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v2.0.2...v2.0.3)
|
496
|
-
|
497
|
-
**Merged pull requests:**
|
498
|
-
|
499
|
-
- Compress HTML [\#5](https://github.com/stimulusreflex/cable_ready/pull/5) ([hopsoft](https://github.com/hopsoft))
|
500
|
-
|
501
|
-
## [v2.0.2](https://github.com/stimulusreflex/cable_ready/tree/v2.0.2) (2017-11-03)
|
502
|
-
|
503
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v2.0.1...v2.0.2)
|
504
|
-
|
505
|
-
**Merged pull requests:**
|
506
|
-
|
507
|
-
- Make morph a first class operation [\#4](https://github.com/stimulusreflex/cable_ready/pull/4) ([hopsoft](https://github.com/hopsoft))
|
508
|
-
|
509
|
-
## [v2.0.1](https://github.com/stimulusreflex/cable_ready/tree/v2.0.1) (2017-10-15)
|
510
|
-
|
511
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v2.0.0...v2.0.1)
|
512
|
-
|
513
|
-
## [v2.0.0](https://github.com/stimulusreflex/cable_ready/tree/v2.0.0) (2017-10-14)
|
514
|
-
|
515
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v1.1.0...v2.0.0)
|
516
|
-
|
517
|
-
**Merged pull requests:**
|
518
|
-
|
519
|
-
- Improved programmatic interface [\#3](https://github.com/stimulusreflex/cable_ready/pull/3) ([hopsoft](https://github.com/hopsoft))
|
520
|
-
|
521
|
-
## [v1.1.0](https://github.com/stimulusreflex/cable_ready/tree/v1.1.0) (2017-09-24)
|
522
|
-
|
523
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v1.0.0...v1.1.0)
|
524
|
-
|
525
|
-
**Closed issues:**
|
526
|
-
|
527
|
-
- FINISH IT!!! [\#1](https://github.com/stimulusreflex/cable_ready/issues/1)
|
528
|
-
|
529
|
-
**Merged pull requests:**
|
530
|
-
|
531
|
-
- Support more DOM operations/mutations [\#2](https://github.com/stimulusreflex/cable_ready/pull/2) ([hopsoft](https://github.com/hopsoft))
|
532
|
-
|
533
|
-
## [v1.0.0](https://github.com/stimulusreflex/cable_ready/tree/v1.0.0) (2017-09-20)
|
534
|
-
|
535
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v0.1.0...v1.0.0)
|
536
|
-
|
537
|
-
## [v0.1.0](https://github.com/stimulusreflex/cable_ready/tree/v0.1.0) (2017-05-19)
|
538
|
-
|
539
|
-
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/e62800f06e2f436fc66de2b9840313ba1de349bc...v0.1.0)
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
3
|
+
Please see [GitHub](https://github.com/stimulusreflex/cable_ready/releases) for detailed changelogs.
|