cable_ready 4.5.0 → 5.0.0.pre3

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