cable_ready 4.4.6 → 5.0.0.pre2

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