cable_ready 4.4.3 → 5.0.0.pre1

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 +238 -155
  3. data/Gemfile.lock +144 -100
  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/lib/cable_ready.rb +41 -0
  12. data/lib/cable_ready/broadcaster.rb +3 -4
  13. data/lib/cable_ready/cable_car.rb +17 -0
  14. data/lib/cable_ready/channel.rb +14 -36
  15. data/lib/cable_ready/channels.rb +22 -65
  16. data/lib/cable_ready/compoundable.rb +11 -0
  17. data/lib/cable_ready/config.rb +78 -0
  18. data/lib/cable_ready/identifiable.rb +19 -0
  19. data/lib/cable_ready/operation_builder.rb +69 -0
  20. data/lib/cable_ready/sanity_checker.rb +151 -0
  21. data/lib/cable_ready/stream_identifier.rb +13 -0
  22. data/lib/cable_ready/version.rb +1 -1
  23. data/lib/generators/cable_ready/channel_generator.rb +71 -0
  24. data/lib/generators/cable_ready/initializer_generator.rb +14 -0
  25. data/lib/generators/cable_ready/stream_from_generator.rb +43 -0
  26. data/lib/generators/cable_ready/templates/config/initializers/cable_ready.rb +18 -0
  27. data/test/lib/cable_ready/cable_car_test.rb +28 -0
  28. data/test/lib/cable_ready/identifiable_test.rb +75 -0
  29. data/test/lib/cable_ready/operation_builder_test.rb +128 -0
  30. data/test/lib/generators/cable_ready/channel_generator_test.rb +157 -0
  31. data/test/support/generator_test_helpers.rb +28 -0
  32. data/test/test_helper.rb +15 -0
  33. metadata +66 -15
  34. data/cable_ready.gemspec +0 -25
  35. data/package.json +0 -36
  36. data/tags +0 -57
  37. data/yarn.lock +0 -2552
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d8a5869e532577a273e312f83e5f61eb576c6d873758a0b96588a0aafb903ba
4
- data.tar.gz: 8f945cd61299c9bee1f2bd8d4d3b4310dd8ccd99e309ee84473265c4d7b48dd9
3
+ metadata.gz: 1ea5fbe24e4f1b83076638efc0d58b4e988d7574bae4a87b118a082626a1c97b
4
+ data.tar.gz: d4596c2299625e8982798a05fd49802328da88d19bb677f69173537b3cf0df93
5
5
  SHA512:
6
- metadata.gz: ce5561230f04527527d20e945face070adf1171727bc454e2dcf4fe603ad9cb1eec9f91b62068b5db989633341f4333b80db3b97e96e10c9af7d3320e2f0f898
7
- data.tar.gz: b4ff356e41e4cb04d93a2af3a9742c85cab968fb4726ef2e9d5ed859af2b5cf4fb3fec61f83ab8f5d604dd72744948af947952afbd4a175c8ed2ea0802c0d3c4
6
+ metadata.gz: c283ad94d23983f2acdd5cdc008fa05d8ea89710b3022291378407664a3bb9a48423baa5b2bf3a29de0f96633f2591e854366520b180f80dabbe6d8ae021cf16
7
+ data.tar.gz: ef3d75827a0e2774eb130dde7d56eea234f3dc515652e74800dc785e8327fad9d2619092a7fd5040dbe2095772e9b11d357fccde00eefa31cf40bfa27d8df5c1
data/CHANGELOG.md CHANGED
@@ -1,360 +1,443 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased](https://github.com/hopsoft/cable_ready/tree/HEAD)
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.2...HEAD)
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)
73
+
74
+ **Merged pull requests:**
75
+
76
+ - changed storage method names, added clear flag [\#86](https://github.com/stimulusreflex/cable_ready/pull/86) ([leastbad](https://github.com/leastbad))
77
+
78
+ ## [v4.4.4](https://github.com/stimulusreflex/cable_ready/tree/v4.4.4) (2020-12-11)
79
+
80
+ [Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.4.3...v4.4.4)
81
+
82
+ **Merged pull requests:**
83
+
84
+ - Add support for sessionStorage and localStorage [\#83](https://github.com/stimulusreflex/cable_ready/pull/83) ([hopsoft](https://github.com/hopsoft))
85
+
86
+ ## [v4.4.3](https://github.com/stimulusreflex/cable_ready/tree/v4.4.3) (2020-12-01)
87
+
88
+ [Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/v4.4.2...v4.4.3)
6
89
 
7
90
  **Merged pull requests:**
8
91
 
9
- - 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))
10
93
 
11
- ## [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)
12
95
 
13
- [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)
14
97
 
15
- ## [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)
16
99
 
17
- [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)
18
101
 
19
102
  **Merged pull requests:**
20
103
 
21
- - 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))
22
105
 
23
- ## [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)
24
107
 
25
- [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)
26
109
 
27
- ## [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)
28
111
 
29
- [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)
30
113
 
31
114
  **Fixed bugs:**
32
115
 
33
- - 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))
34
117
 
35
- ## [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)
36
119
 
37
- [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)
38
121
 
39
122
  **Closed issues:**
40
123
 
41
- - CableReady detected an error in insertAdjacentHtml. Object doesn't support this action - IE11 only [\#76](https://github.com/hopsoft/cable_ready/issues/76)
42
- - shouldMorph doesn't work well with some form elements [\#70](https://github.com/hopsoft/cable_ready/issues/70)
43
- - 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)
44
127
 
45
128
  **Merged pull requests:**
46
129
 
47
- - 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))
48
- - method chaining [\#78](https://github.com/hopsoft/cable_ready/pull/78) ([leastbad](https://github.com/leastbad))
49
- - jquery support [\#75](https://github.com/hopsoft/cable_ready/pull/75) ([leastbad](https://github.com/leastbad))
50
- - 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))
51
134
 
52
- ## [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)
53
136
 
54
- [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)
55
138
 
56
139
  **Merged pull requests:**
57
140
 
58
- - 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))
59
142
 
60
- ## [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)
61
144
 
62
- [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)
63
146
 
64
147
  **Merged pull requests:**
65
148
 
66
- - Add support for pushState [\#73](https://github.com/hopsoft/cable_ready/pull/73) ([hopsoft](https://github.com/hopsoft))
67
- - 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))
68
- - 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))
69
152
 
70
- ## [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)
71
154
 
72
- [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)
73
156
 
74
157
  **Implemented enhancements:**
75
158
 
76
- - 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))
77
160
 
78
161
  **Closed issues:**
79
162
 
80
- - 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)
81
- - 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)
82
165
 
83
166
  **Merged pull requests:**
84
167
 
85
- - Provide an async perform method [\#63](https://github.com/hopsoft/cable_ready/pull/63) ([julianrubisch](https://github.com/julianrubisch))
86
- - Add braces to hash parameter to remove warning [\#61](https://github.com/hopsoft/cable_ready/pull/61) ([dabit](https://github.com/dabit))
87
- - 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))
88
171
 
89
- ## [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)
90
173
 
91
- [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)
92
175
 
93
- ## [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)
94
177
 
95
- [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)
96
179
 
97
180
  **Implemented enhancements:**
98
181
 
99
- - 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))
100
183
 
101
184
  **Closed issues:**
102
185
 
103
- - current\_user concerns? [\#54](https://github.com/hopsoft/cable_ready/issues/54)
104
- - 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)
105
188
 
106
189
  **Merged pull requests:**
107
190
 
108
- - 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))
109
- - 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))
110
193
 
111
- ## [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)
112
195
 
113
- [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)
114
197
 
115
- ## [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)
116
199
 
117
- [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)
118
201
 
119
202
  **Merged pull requests:**
120
203
 
121
- - 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))
122
205
 
123
- ## [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)
124
207
 
125
- [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)
126
209
 
127
210
  **Implemented enhancements:**
128
211
 
129
- - Make DOMOperations extendable [\#44](https://github.com/hopsoft/cable_ready/pull/44) ([n-rodriguez](https://github.com/n-rodriguez))
130
- - 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))
131
214
 
132
215
  **Closed issues:**
133
216
 
134
- - 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)
135
218
 
136
219
  **Merged pull requests:**
137
220
 
138
- - Dom id signature fix [\#51](https://github.com/hopsoft/cable_ready/pull/51) ([leastbad](https://github.com/leastbad))
139
- - add dom\_id helper [\#50](https://github.com/hopsoft/cable_ready/pull/50) ([leastbad](https://github.com/leastbad))
140
- - Support for multiple CSS classes. [\#49](https://github.com/hopsoft/cable_ready/pull/49) ([sarriagada](https://github.com/sarriagada))
141
- - Make morph emit after event [\#48](https://github.com/hopsoft/cable_ready/pull/48) ([julianrubisch](https://github.com/julianrubisch))
142
- - Customize operations via initializer [\#47](https://github.com/hopsoft/cable_ready/pull/47) ([leastbad](https://github.com/leastbad))
143
- - Correct method 'outerHtml' to 'outer\_html' in documentation [\#39](https://github.com/hopsoft/cable_ready/pull/39) ([pskarlas](https://github.com/pskarlas))
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))
144
229
 
145
- ## [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)
146
231
 
147
- [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)
148
233
 
149
234
  **Closed issues:**
150
235
 
151
- - 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)
152
237
 
153
238
  **Merged pull requests:**
154
239
 
155
- - after-outer-html emitted from new element [\#46](https://github.com/hopsoft/cable_ready/pull/46) ([leastbad](https://github.com/leastbad))
156
- - Fix `outer\_html` notation [\#45](https://github.com/hopsoft/cable_ready/pull/45) ([julianrubisch](https://github.com/julianrubisch))
157
- - Print out the selector for easier debugging perform errors [\#36](https://github.com/hopsoft/cable_ready/pull/36) ([excid3](https://github.com/excid3))
158
- - 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))
159
244
 
160
- ## [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)
161
246
 
162
- [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)
163
248
 
164
249
  **Fixed bugs:**
165
250
 
166
- - 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))
167
252
 
168
- ## [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)
169
254
 
170
- [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)
171
256
 
172
257
  **Implemented enhancements:**
173
258
 
174
- - 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))
175
260
 
176
261
  **Merged pull requests:**
177
262
 
178
- - Fix typo in method name outerHTML -\> outer\_html [\#35](https://github.com/hopsoft/cable_ready/pull/35) ([back2war](https://github.com/back2war))
179
- - Add funding file [\#31](https://github.com/hopsoft/cable_ready/pull/31) ([andrewmcodes](https://github.com/andrewmcodes))
180
- - 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))
181
265
 
182
- ## [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)
183
267
 
184
- [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)
185
269
 
186
270
  **Merged pull requests:**
187
271
 
188
- - Add setStyles [\#37](https://github.com/hopsoft/cable_ready/pull/37) ([excid3](https://github.com/excid3))
189
- - 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))
190
- - Set cookie support [\#28](https://github.com/hopsoft/cable_ready/pull/28) ([hopsoft](https://github.com/hopsoft))
191
- - README.md: Fix typo [\#27](https://github.com/hopsoft/cable_ready/pull/27) ([henrik](https://github.com/henrik))
192
- - Update event-dispatch.md [\#25](https://github.com/hopsoft/cable_ready/pull/25) ([leastbad](https://github.com/leastbad))
193
- - 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))
194
277
 
195
- ## [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)
196
279
 
197
- [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)
198
281
 
199
282
  **Merged pull requests:**
200
283
 
201
- - Add support to ignore missing DOM elements via options parameter [\#23](https://github.com/hopsoft/cable_ready/pull/23) ([leastbad](https://github.com/leastbad))
202
- - 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))
203
286
 
204
- ## [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)
205
288
 
206
- [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)
207
290
 
208
291
  **Merged pull requests:**
209
292
 
210
- - 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))
211
294
 
212
- ## [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)
213
296
 
214
- [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)
215
298
 
216
299
  **Merged pull requests:**
217
300
 
218
- - Add gh actions [\#17](https://github.com/hopsoft/cable_ready/pull/17) ([andrewmcodes](https://github.com/andrewmcodes))
219
- - 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))
220
303
 
221
- ## [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)
222
305
 
223
- [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)
224
307
 
225
308
  **Implemented enhancements:**
226
309
 
227
- - 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)
228
311
 
229
312
  **Merged pull requests:**
230
313
 
231
- - Update to format with prettier-standard [\#15](https://github.com/hopsoft/cable_ready/pull/15) ([hopsoft](https://github.com/hopsoft))
232
- - 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))
233
316
 
234
- ## [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)
235
318
 
236
- [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)
237
320
 
238
321
  **Merged pull requests:**
239
322
 
240
- - 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))
241
324
 
242
- ## [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)
243
326
 
244
- [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)
245
328
 
246
329
  **Merged pull requests:**
247
330
 
248
- - Refactor how events are managed [\#12](https://github.com/hopsoft/cable_ready/pull/12) ([hopsoft](https://github.com/hopsoft))
249
- - 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))
250
333
 
251
- ## [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)
252
335
 
253
- [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)
254
337
 
255
- ## [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)
256
339
 
257
- [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)
258
341
 
259
- ## [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)
260
343
 
261
- [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)
262
345
 
263
346
  **Merged pull requests:**
264
347
 
265
- - 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))
266
349
 
267
- ## [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)
268
351
 
269
- [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)
270
353
 
271
- ## [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)
272
355
 
273
- [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)
274
357
 
275
- ## [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)
276
359
 
277
- [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)
278
361
 
279
362
  **Merged pull requests:**
280
363
 
281
- - 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))
282
365
 
283
- ## [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)
284
367
 
285
- [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)
286
369
 
287
370
  **Merged pull requests:**
288
371
 
289
- - 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))
290
373
 
291
- ## [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)
292
375
 
293
- [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)
294
377
 
295
- ## [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)
296
379
 
297
- [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)
298
381
 
299
- ## [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)
300
383
 
301
- [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)
302
385
 
303
386
  **Merged pull requests:**
304
387
 
305
- - 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))
306
389
 
307
- ## [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)
308
391
 
309
- [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)
310
393
 
311
- ## [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)
312
395
 
313
- [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)
314
397
 
315
398
  **Merged pull requests:**
316
399
 
317
- - 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))
318
401
 
319
- ## [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)
320
403
 
321
- [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)
322
405
 
323
406
  **Merged pull requests:**
324
407
 
325
- - 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))
326
409
 
327
- ## [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)
328
411
 
329
- [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)
330
413
 
331
- ## [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)
332
415
 
333
- [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)
334
417
 
335
418
  **Merged pull requests:**
336
419
 
337
- - 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))
338
421
 
339
- ## [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)
340
423
 
341
- [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)
342
425
 
343
426
  **Closed issues:**
344
427
 
345
- - FINISH IT!!! [\#1](https://github.com/hopsoft/cable_ready/issues/1)
428
+ - FINISH IT!!! [\#1](https://github.com/stimulusreflex/cable_ready/issues/1)
346
429
 
347
430
  **Merged pull requests:**
348
431
 
349
- - 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))
350
433
 
351
- ## [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)
352
435
 
353
- [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)
354
437
 
355
- ## [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)
356
439
 
357
- [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)
358
441
 
359
442
 
360
443