cable_ready 4.4.3 → 5.0.0.pre1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +238 -155
- data/Gemfile.lock +144 -100
- data/LATEST +1 -0
- data/README.md +13 -13
- data/Rakefile +8 -2
- data/app/channels/cable_ready/stream.rb +12 -0
- data/app/helpers/cable_ready_helper.rb +11 -0
- data/app/jobs/cable_ready_broadcast_job.rb +14 -0
- data/bin/standardize +1 -1
- data/lib/cable_ready.rb +41 -0
- data/lib/cable_ready/broadcaster.rb +3 -4
- data/lib/cable_ready/cable_car.rb +17 -0
- data/lib/cable_ready/channel.rb +14 -36
- data/lib/cable_ready/channels.rb +22 -65
- data/lib/cable_ready/compoundable.rb +11 -0
- data/lib/cable_ready/config.rb +78 -0
- data/lib/cable_ready/identifiable.rb +19 -0
- data/lib/cable_ready/operation_builder.rb +69 -0
- data/lib/cable_ready/sanity_checker.rb +151 -0
- data/lib/cable_ready/stream_identifier.rb +13 -0
- data/lib/cable_ready/version.rb +1 -1
- data/lib/generators/cable_ready/channel_generator.rb +71 -0
- data/lib/generators/cable_ready/initializer_generator.rb +14 -0
- data/lib/generators/cable_ready/stream_from_generator.rb +43 -0
- data/lib/generators/cable_ready/templates/config/initializers/cable_ready.rb +18 -0
- data/test/lib/cable_ready/cable_car_test.rb +28 -0
- data/test/lib/cable_ready/identifiable_test.rb +75 -0
- data/test/lib/cable_ready/operation_builder_test.rb +128 -0
- data/test/lib/generators/cable_ready/channel_generator_test.rb +157 -0
- data/test/support/generator_test_helpers.rb +28 -0
- data/test/test_helper.rb +15 -0
- metadata +66 -15
- data/cable_ready.gemspec +0 -25
- data/package.json +0 -36
- data/tags +0 -57
- data/yarn.lock +0 -2552
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ea5fbe24e4f1b83076638efc0d58b4e988d7574bae4a87b118a082626a1c97b
|
|
4
|
+
data.tar.gz: d4596c2299625e8982798a05fd49802328da88d19bb677f69173537b3cf0df93
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c283ad94d23983f2acdd5cdc008fa05d8ea89710b3022291378407664a3bb9a48423baa5b2bf3a29de0f96633f2591e854366520b180f80dabbe6d8ae021cf16
|
|
7
|
+
data.tar.gz: ef3d75827a0e2774eb130dde7d56eea234f3dc515652e74800dc785e8327fad9d2619092a7fd5040dbe2095772e9b11d357fccde00eefa31cf40bfa27d8df5c1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,360 +1,443 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
42
|
-
- shouldMorph doesn't work well with some form elements [\#70](https://github.com/
|
|
43
|
-
- Operations go missing before broadcasting [\#64](https://github.com/
|
|
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/
|
|
48
|
-
- method chaining [\#78](https://github.com/
|
|
49
|
-
- jquery support [\#75](https://github.com/
|
|
50
|
-
- Removed isEqualNode comparison [\#71](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
67
|
-
- Bump actionview from 6.0.3.2 to 6.0.3.3 [\#72](https://github.com/
|
|
68
|
-
- set\_focus operation [\#69](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
81
|
-
- documentation: Mention cable.yml adapter configuration [\#66](https://github.com/
|
|
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/
|
|
86
|
-
- Add braces to hash parameter to remove warning [\#61](https://github.com/
|
|
87
|
-
- only pass inner html if childrenOnly is false [\#58](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
104
|
-
- Update documentation [\#52](https://github.com/
|
|
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/
|
|
109
|
-
- Bump actionpack from 6.0.3.1 to 6.0.3.2 [\#56](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
130
|
-
- broadcast\_to method [\#38](https://github.com/
|
|
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/
|
|
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/
|
|
139
|
-
- add dom\_id helper [\#50](https://github.com/
|
|
140
|
-
- Support for multiple CSS classes. [\#49](https://github.com/
|
|
141
|
-
- Make morph emit after event [\#48](https://github.com/
|
|
142
|
-
- Customize operations via initializer [\#47](https://github.com/
|
|
143
|
-
- Correct method 'outerHtml' to 'outer\_html' in documentation [\#39](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
156
|
-
- Fix `
|
|
157
|
-
- Print out the selector for easier debugging perform errors [\#36](https://github.com/
|
|
158
|
-
- add set\_property method to library [\#34](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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
|
-
-
|
|
179
|
-
-
|
|
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/
|
|
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/
|
|
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
|
-
-
|
|
189
|
-
-
|
|
190
|
-
-
|
|
191
|
-
-
|
|
192
|
-
-
|
|
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/
|
|
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/
|
|
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/
|
|
202
|
-
- fix sporadic error - undefined method \<\< for nil, when adding operation [\#21](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
219
|
-
- Add Gitbook integration [\#16](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
232
|
-
- Add support for permanent nodes [\#14](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
249
|
-
- Added support for XPath selectors [\#11](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
440
|
+
[Full Changelog](https://github.com/stimulusreflex/cable_ready/compare/e62800f06e2f436fc66de2b9840313ba1de349bc...v0.1.0)
|
|
358
441
|
|
|
359
442
|
|
|
360
443
|
|