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