stimulus_reflex 3.5.0.pre6 → 3.5.0.pre9

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of stimulus_reflex might be problematic. Click here for more details.

Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +2 -1177
  3. data/Gemfile.lock +123 -100
  4. data/README.md +47 -6
  5. data/app/assets/javascripts/stimulus_reflex.js +969 -0
  6. data/app/assets/javascripts/stimulus_reflex.min.js +2 -0
  7. data/app/assets/javascripts/stimulus_reflex.min.js.map +1 -0
  8. data/app/assets/javascripts/stimulus_reflex.umd.js +904 -0
  9. data/app/assets/javascripts/stimulus_reflex.umd.min.js +905 -0
  10. data/app/assets/javascripts/stimulus_reflex.umd.min.js.map +1 -0
  11. data/app/channels/stimulus_reflex/channel.rb +21 -2
  12. data/lib/stimulus_reflex/broadcasters/nothing_broadcaster.rb +1 -0
  13. data/lib/stimulus_reflex/engine.rb +29 -0
  14. data/lib/stimulus_reflex/importmap.rb +4 -0
  15. data/lib/stimulus_reflex/open_struct_fix.rb +29 -0
  16. data/lib/stimulus_reflex/reflex.rb +10 -3
  17. data/lib/stimulus_reflex/reflex_data.rb +8 -0
  18. data/lib/stimulus_reflex/reflex_factory.rb +3 -1
  19. data/lib/stimulus_reflex/utils/logger.rb +2 -0
  20. data/lib/stimulus_reflex/utils/sanity_checker.rb +0 -58
  21. data/lib/stimulus_reflex/version.rb +1 -1
  22. data/lib/stimulus_reflex.rb +2 -6
  23. data/package.json +67 -0
  24. data/rollup.config.js +85 -0
  25. data/stimulus_reflex.gemspec +63 -0
  26. data/test/broadcasters/broadcaster_test_case.rb +1 -1
  27. data/test/broadcasters/nothing_broadcaster_test.rb +3 -1
  28. data/test/broadcasters/page_broadcaster_test.rb +4 -2
  29. data/test/broadcasters/selector_broadcaster_test.rb +12 -6
  30. data/test/callbacks_test.rb +23 -23
  31. data/test/reflex_test.rb +2 -2
  32. data/test/tmp/app/reflexes/application_reflex.rb +3 -10
  33. data/test/tmp/app/reflexes/{demo_reflex.rb → user_reflex.rb} +10 -2
  34. data/web-test-runner.config.mjs +12 -0
  35. data/yarn-error.log +4964 -0
  36. data/yarn.lock +4520 -0
  37. metadata +118 -38
  38. data/lib/generators/USAGE +0 -14
  39. data/lib/generators/stimulus_reflex/templates/app/javascript/controllers/%file_name%_controller.js.tt +0 -101
  40. data/lib/generators/stimulus_reflex/templates/app/javascript/controllers/application_controller.js.tt +0 -60
  41. data/lib/generators/stimulus_reflex/templates/app/reflexes/%file_name%_reflex.rb.tt +0 -41
  42. data/lib/generators/stimulus_reflex/templates/app/reflexes/application_reflex.rb.tt +0 -19
  43. data/lib/tasks/stimulus_reflex/install.rake +0 -116
data/CHANGELOG.md CHANGED
@@ -1,1178 +1,3 @@
1
- # Changelog
1
+ ## Changelog
2
2
 
3
- ## [Unreleased](https://github.com/stimulusreflex/stimulus_reflex/tree/HEAD)
4
-
5
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.5.0.pre3...HEAD)
6
-
7
- **Closed issues:**
8
-
9
- - Rails 7 Alpha Incompatibility [\#552](https://github.com/stimulusreflex/stimulus_reflex/issues/552)
10
-
11
- ## [v3.5.0.pre3](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.5.0.pre3) (2021-10-01)
12
-
13
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.5.0.pre2...v3.5.0.pre3)
14
-
15
- **Implemented enhancements:**
16
-
17
- - Allow to skip stages in the generator [\#541](https://github.com/stimulusreflex/stimulus_reflex/issues/541)
18
- - document body connection status classes [\#547](https://github.com/stimulusreflex/stimulus_reflex/pull/547) ([leastbad](https://github.com/leastbad))
19
- - overhaul Reflex logging [\#546](https://github.com/stimulusreflex/stimulus_reflex/pull/546) ([leastbad](https://github.com/leastbad))
20
- - reverse merge params into locals [\#542](https://github.com/stimulusreflex/stimulus_reflex/pull/542) ([leastbad](https://github.com/leastbad))
21
- - specify env headers for page morph controller [\#538](https://github.com/stimulusreflex/stimulus_reflex/pull/538) ([leastbad](https://github.com/leastbad))
22
- - New CR wire format + reworked server message events [\#536](https://github.com/stimulusreflex/stimulus_reflex/pull/536) ([leastbad](https://github.com/leastbad))
23
- - reflex render layout defaults to false [\#534](https://github.com/stimulusreflex/stimulus_reflex/pull/534) ([leastbad](https://github.com/leastbad))
24
-
25
- **Closed issues:**
26
-
27
- - Controller action being re-run is different from expected. [\#540](https://github.com/stimulusreflex/stimulus_reflex/issues/540)
28
- - The ActionCable channel subscription for StimulusReflex gets rejected when interacting too fast [\#539](https://github.com/stimulusreflex/stimulus_reflex/issues/539)
29
- - Stimulus reflex not working making server to stop on ruby on rails [\#533](https://github.com/stimulusreflex/stimulus_reflex/issues/533)
30
-
31
- **Merged pull requests:**
32
-
33
- - Bump nokogiri from 1.12.3 to 1.12.5 [\#548](https://github.com/stimulusreflex/stimulus_reflex/pull/548) ([dependabot[bot]](https://github.com/apps/dependabot))
34
- - Add test for param behavior [\#545](https://github.com/stimulusreflex/stimulus_reflex/pull/545) ([julianrubisch](https://github.com/julianrubisch))
35
- - Add generator options to skip reflex and stimulus [\#543](https://github.com/stimulusreflex/stimulus_reflex/pull/543) ([nachiket87](https://github.com/nachiket87))
36
- - Fix comment [\#537](https://github.com/stimulusreflex/stimulus_reflex/pull/537) ([julianrubisch](https://github.com/julianrubisch))
37
- - add first line of stacktrace to console.log error in dev environment [\#532](https://github.com/stimulusreflex/stimulus_reflex/pull/532) ([RolandStuder](https://github.com/RolandStuder))
38
- - Add test for `data-reflex-dataset="descendants"` [\#531](https://github.com/stimulusreflex/stimulus_reflex/pull/531) ([assuntaw](https://github.com/assuntaw))
39
- - Provide proxy methods boolean and numeric on Element [\#528](https://github.com/stimulusreflex/stimulus_reflex/pull/528) ([julianrubisch](https://github.com/julianrubisch))
40
-
41
- ## [v3.5.0.pre2](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.5.0.pre2) (2021-07-21)
42
-
43
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.5.0.pre1...v3.5.0.pre2)
44
-
45
- **Implemented enhancements:**
46
-
47
- - Optionally provide innerHtml and textContent on StimulusReflex::Element [\#517](https://github.com/stimulusreflex/stimulus_reflex/pull/517) ([julianrubisch](https://github.com/julianrubisch))
48
-
49
- **Fixed bugs:**
50
-
51
- - Sanity checker should not abort stimulus\_reflex install task [\#508](https://github.com/stimulusreflex/stimulus_reflex/issues/508)
52
- - Improve install experience [\#510](https://github.com/stimulusreflex/stimulus_reflex/pull/510) ([leastbad](https://github.com/leastbad))
53
-
54
- **Closed issues:**
55
-
56
- - Calling Reflex with data-action and data-reflex-dataset='combined' send combined dataset with event.currentTarget only [\#525](https://github.com/stimulusreflex/stimulus_reflex/issues/525)
57
- - HAML code with form tag connect controller twice [\#520](https://github.com/stimulusreflex/stimulus_reflex/issues/520)
58
- - Web Components Breaking In Stimulus Reflex Morph [\#511](https://github.com/stimulusreflex/stimulus_reflex/issues/511)
59
-
60
- **Merged pull requests:**
61
-
62
- - Specify form selector [\#527](https://github.com/stimulusreflex/stimulus_reflex/pull/527) ([julianrubisch](https://github.com/julianrubisch))
63
- - Fix two minor typos [\#526](https://github.com/stimulusreflex/stimulus_reflex/pull/526) ([julianrubisch](https://github.com/julianrubisch))
64
- - chore: add sideEffects false to make Webpack happy [\#523](https://github.com/stimulusreflex/stimulus_reflex/pull/523) ([ParamagicDev](https://github.com/ParamagicDev))
65
- - Morph stimulus reflex element AKA "single element page morph" [\#522](https://github.com/stimulusreflex/stimulus_reflex/pull/522) ([julianrubisch](https://github.com/julianrubisch))
66
- - Add localization example to ApplicationReflex template [\#521](https://github.com/stimulusreflex/stimulus_reflex/pull/521) ([erlingur](https://github.com/erlingur))
67
- - refactor stream\_name [\#519](https://github.com/stimulusreflex/stimulus_reflex/pull/519) ([leastbad](https://github.com/leastbad))
68
- - Schema object with getters [\#505](https://github.com/stimulusreflex/stimulus_reflex/pull/505) ([leastbad](https://github.com/leastbad))
69
-
70
- ## [v3.5.0.pre1](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.5.0.pre1) (2021-06-02)
71
-
72
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.5.0.pre0...v3.5.0.pre1)
73
-
74
- **Fixed bugs:**
75
-
76
- - handle operations that have string-defined selector argument [\#509](https://github.com/stimulusreflex/stimulus_reflex/pull/509) ([leastbad](https://github.com/leastbad))
77
-
78
- **Closed issues:**
79
-
80
- - How to \(better\) use Stimulus Reflex with Cypress? [\#512](https://github.com/stimulusreflex/stimulus_reflex/issues/512)
81
-
82
- **Merged pull requests:**
83
-
84
- - Update reflexes.js [\#515](https://github.com/stimulusreflex/stimulus_reflex/pull/515) ([julianrubisch](https://github.com/julianrubisch))
85
- - Fix cross-tab errors for piggybacked operations [\#514](https://github.com/stimulusreflex/stimulus_reflex/pull/514) ([julianrubisch](https://github.com/julianrubisch))
86
- - Bump ws from 7.4.5 to 7.4.6 [\#513](https://github.com/stimulusreflex/stimulus_reflex/pull/513) ([dependabot[bot]](https://github.com/apps/dependabot))
87
-
88
- ## [v3.5.0.pre0](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.5.0.pre0) (2021-05-21)
89
-
90
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.4.1...v3.5.0.pre0)
91
-
92
- **Breaking changes:**
93
-
94
- - isolation mode should be enabled by default [\#423](https://github.com/stimulusreflex/stimulus_reflex/issues/423)
95
- - form serialization should be optional [\#422](https://github.com/stimulusreflex/stimulus_reflex/issues/422)
96
-
97
- **Implemented enhancements:**
98
-
99
- - tab\_id accessor [\#506](https://github.com/stimulusreflex/stimulus_reflex/pull/506) ([leastbad](https://github.com/leastbad))
100
- - Stop adding whitespace when parsing our html [\#492](https://github.com/stimulusreflex/stimulus_reflex/pull/492) ([lmatiolis](https://github.com/lmatiolis))
101
- - Log the full exception trace [\#491](https://github.com/stimulusreflex/stimulus_reflex/pull/491) ([rmckayfleming](https://github.com/rmckayfleming))
102
- - delegate dom\_id to CableReady::Identifiable [\#485](https://github.com/stimulusreflex/stimulus_reflex/pull/485) ([leastbad](https://github.com/leastbad))
103
- - report failed basic auth [\#454](https://github.com/stimulusreflex/stimulus_reflex/pull/454) ([leastbad](https://github.com/leastbad))
104
- - deprecation warnings \(consumer, form serialization, isolation mode\) [\#438](https://github.com/stimulusreflex/stimulus_reflex/pull/438) ([leastbad](https://github.com/leastbad))
105
- - implicit dom\_id for morph selectors [\#436](https://github.com/stimulusreflex/stimulus_reflex/pull/436) ([leastbad](https://github.com/leastbad))
106
- - version check [\#434](https://github.com/stimulusreflex/stimulus_reflex/pull/434) ([leastbad](https://github.com/leastbad))
107
-
108
- **Fixed bugs:**
109
-
110
- - Nokogiri usage to process HTML adds whitespace nodes, causing unneeded morphdom updates [\#487](https://github.com/stimulusreflex/stimulus_reflex/issues/487)
111
- - reflexData missing on element in beforeReflex [\#443](https://github.com/stimulusreflex/stimulus_reflex/issues/443)
112
- - cable\_ready method in Reflex class should support custom operations [\#419](https://github.com/stimulusreflex/stimulus_reflex/issues/419)
113
- - convert symbol keys, ensure fragment html exists [\#503](https://github.com/stimulusreflex/stimulus_reflex/pull/503) ([leastbad](https://github.com/leastbad))
114
- - only run piggybacked operations after SR is finished, and isolate them [\#482](https://github.com/stimulusreflex/stimulus_reflex/pull/482) ([leastbad](https://github.com/leastbad))
115
- - refactor declarative reflex observer [\#440](https://github.com/stimulusreflex/stimulus_reflex/pull/440) ([leastbad](https://github.com/leastbad))
116
-
117
- **Deprecated:**
118
-
119
- - data-reflex-dataset and data-reflex-dataset-all [\#478](https://github.com/stimulusreflex/stimulus_reflex/pull/478) ([leastbad](https://github.com/leastbad))
120
-
121
- **Removed:**
122
-
123
- - refactor stimulus\_reflex.js [\#444](https://github.com/stimulusreflex/stimulus_reflex/pull/444) ([leastbad](https://github.com/leastbad))
124
-
125
- **Closed issues:**
126
-
127
- - Logging issue when using Morphing Multiplicity with Symbol keys [\#502](https://github.com/stimulusreflex/stimulus_reflex/issues/502)
128
- - Re-assignment of constant `reflexRoot` [\#473](https://github.com/stimulusreflex/stimulus_reflex/issues/473)
129
- - Lost Instance Variables [\#471](https://github.com/stimulusreflex/stimulus_reflex/issues/471)
130
- - Warn developers about example.com [\#468](https://github.com/stimulusreflex/stimulus_reflex/issues/468)
131
- - "No route matches" in production [\#465](https://github.com/stimulusreflex/stimulus_reflex/issues/465)
132
- - Reflex replaced with a new instance for some reason [\#463](https://github.com/stimulusreflex/stimulus_reflex/issues/463)
133
- - Uncaught exception when morph removes controllerElement [\#459](https://github.com/stimulusreflex/stimulus_reflex/issues/459)
134
- - Link for "read more about why we enable caching here" is broken [\#455](https://github.com/stimulusreflex/stimulus_reflex/issues/455)
135
- - Page morphs fail to refresh \(blank operations hash\) in Safari/Edge on staging [\#453](https://github.com/stimulusreflex/stimulus_reflex/issues/453)
136
- - ActiveRecord queries and associations are cached, leading to non-idempotent Reflexes [\#446](https://github.com/stimulusreflex/stimulus_reflex/issues/446)
137
- - When devise uses `timeoutable` there is a session error authenticating a stimulus web socket. [\#437](https://github.com/stimulusreflex/stimulus_reflex/issues/437)
138
- - SR strips out @click attribute from elements passed to selector morph [\#435](https://github.com/stimulusreflex/stimulus_reflex/issues/435)
139
- - SR+CR version checks on startup in development [\#433](https://github.com/stimulusreflex/stimulus_reflex/issues/433)
140
- - Installer can insert session\_store config in wrong place [\#429](https://github.com/stimulusreflex/stimulus_reflex/issues/429)
141
-
142
- **Merged pull requests:**
143
-
144
- - Bump nokogiri from 1.11.3 to 1.11.4 [\#507](https://github.com/stimulusreflex/stimulus_reflex/pull/507) ([dependabot[bot]](https://github.com/apps/dependabot))
145
- - Bump lodash from 4.17.20 to 4.17.21 [\#504](https://github.com/stimulusreflex/stimulus_reflex/pull/504) ([dependabot[bot]](https://github.com/apps/dependabot))
146
- - Bump handlebars from 4.7.6 to 4.7.7 [\#501](https://github.com/stimulusreflex/stimulus_reflex/pull/501) ([dependabot[bot]](https://github.com/apps/dependabot))
147
- - Move object\_with\_indifferent\_access to ReflexData [\#500](https://github.com/stimulusreflex/stimulus_reflex/pull/500) ([erlingur](https://github.com/erlingur))
148
- - Bump actionpack from 6.1.3 to 6.1.3.2 [\#499](https://github.com/stimulusreflex/stimulus_reflex/pull/499) ([dependabot[bot]](https://github.com/apps/dependabot))
149
- - render\_collection [\#498](https://github.com/stimulusreflex/stimulus_reflex/pull/498) ([leastbad](https://github.com/leastbad))
150
- - Bump rexml from 3.2.4 to 3.2.5 [\#495](https://github.com/stimulusreflex/stimulus_reflex/pull/495) ([dependabot[bot]](https://github.com/apps/dependabot))
151
- - Prevent install script from choking on magic comments via hard-coded line numbers [\#494](https://github.com/stimulusreflex/stimulus_reflex/pull/494) ([leastbad](https://github.com/leastbad))
152
- - Always pick up instance variables when accessing controller [\#493](https://github.com/stimulusreflex/stimulus_reflex/pull/493) ([leastbad](https://github.com/leastbad))
153
- - Fix broken link in docs [\#488](https://github.com/stimulusreflex/stimulus_reflex/pull/488) ([asmega](https://github.com/asmega))
154
- - Factor reflex creation and reflex data management out of channel [\#486](https://github.com/stimulusreflex/stimulus_reflex/pull/486) ([julianrubisch](https://github.com/julianrubisch))
155
- - prevent /cable from being prepended to ActiveStorage route helpers [\#484](https://github.com/stimulusreflex/stimulus_reflex/pull/484) ([leastbad](https://github.com/leastbad))
156
- - Fix Changelog Action [\#483](https://github.com/stimulusreflex/stimulus_reflex/pull/483) ([marcoroth](https://github.com/marcoroth))
157
- - Reinitialize controller\_class renderer with connection.env [\#481](https://github.com/stimulusreflex/stimulus_reflex/pull/481) ([leastbad](https://github.com/leastbad))
158
- - feature: add check for default url options [\#480](https://github.com/stimulusreflex/stimulus_reflex/pull/480) ([nachiket87](https://github.com/nachiket87))
159
- - Mutation observer wouldn't fire in certain situations [\#479](https://github.com/stimulusreflex/stimulus_reflex/pull/479) ([joshleblanc](https://github.com/joshleblanc))
160
- - Reflex return payloads for events and callbacks [\#477](https://github.com/stimulusreflex/stimulus_reflex/pull/477) ([leastbad](https://github.com/leastbad))
161
- - Log reflex payloads client-side [\#476](https://github.com/stimulusreflex/stimulus_reflex/pull/476) ([julianrubisch](https://github.com/julianrubisch))
162
- - add `useReflex` js function to "support" the composable pattern [\#475](https://github.com/stimulusreflex/stimulus_reflex/pull/475) ([marcoroth](https://github.com/marcoroth))
163
- - fix changelog workflow and optimize triggers [\#474](https://github.com/stimulusreflex/stimulus_reflex/pull/474) ([marcoroth](https://github.com/marcoroth))
164
- - add support for prepend and append reflex callbacks [\#472](https://github.com/stimulusreflex/stimulus_reflex/pull/472) ([marcoroth](https://github.com/marcoroth))
165
- - Callback tests [\#470](https://github.com/stimulusreflex/stimulus_reflex/pull/470) ([marcoroth](https://github.com/marcoroth))
166
- - Remove confusing preposition [\#469](https://github.com/stimulusreflex/stimulus_reflex/pull/469) ([richardun](https://github.com/richardun))
167
- - Reflex Callback Skips [\#466](https://github.com/stimulusreflex/stimulus_reflex/pull/466) ([assuntaw](https://github.com/assuntaw))
168
- - Stimulus reflex concern [\#464](https://github.com/stimulusreflex/stimulus_reflex/pull/464) ([julianrubisch](https://github.com/julianrubisch))
169
- - Bump activerecord from 6.1.1 to 6.1.3 [\#462](https://github.com/stimulusreflex/stimulus_reflex/pull/462) ([dependabot[bot]](https://github.com/apps/dependabot))
170
- - Bump actionpack from 6.1.1 to 6.1.3 [\#461](https://github.com/stimulusreflex/stimulus_reflex/pull/461) ([dependabot[bot]](https://github.com/apps/dependabot))
171
- - Check for presence of controller element in serverMessage [\#460](https://github.com/stimulusreflex/stimulus_reflex/pull/460) ([shubik22](https://github.com/shubik22))
172
- - Returns [\#458](https://github.com/stimulusreflex/stimulus_reflex/pull/458) ([leastbad](https://github.com/leastbad))
173
- - handle generated value for channel\_prefix if app directory contains dots or spaces [\#457](https://github.com/stimulusreflex/stimulus_reflex/pull/457) ([lxxxvi](https://github.com/lxxxvi))
174
- - move logger and sanity\_checker to /utils [\#456](https://github.com/stimulusreflex/stimulus_reflex/pull/456) ([leastbad](https://github.com/leastbad))
175
- - Extract RequestParameters class [\#451](https://github.com/stimulusreflex/stimulus_reflex/pull/451) ([julianrubisch](https://github.com/julianrubisch))
176
- - run changelog action not on every single push to master [\#450](https://github.com/stimulusreflex/stimulus_reflex/pull/450) ([marcoroth](https://github.com/marcoroth))
177
- - Extract method invocation policy [\#448](https://github.com/stimulusreflex/stimulus_reflex/pull/448) ([julianrubisch](https://github.com/julianrubisch))
178
- - remove unnecessary gate [\#439](https://github.com/stimulusreflex/stimulus_reflex/pull/439) ([leastbad](https://github.com/leastbad))
179
-
180
- ## [v3.4.1](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.4.1) (2021-01-26)
181
-
182
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.4.0...v3.4.1)
183
-
184
- **Implemented enhancements:**
185
-
186
- - controller element holds Reflex metadata [\#417](https://github.com/stimulusreflex/stimulus_reflex/pull/417) ([leastbad](https://github.com/leastbad))
187
-
188
- **Fixed bugs:**
189
-
190
- - life-cycle callbacks return correct element reference [\#431](https://github.com/stimulusreflex/stimulus_reflex/pull/431) ([leastbad](https://github.com/leastbad))
191
- - encode form data for chars like '&' and '=' [\#418](https://github.com/stimulusreflex/stimulus_reflex/pull/418) ([RolandStuder](https://github.com/RolandStuder))
192
- - Bug fix: Updating changelog generator to push to master, not main [\#416](https://github.com/stimulusreflex/stimulus_reflex/pull/416) ([MikeRogers0](https://github.com/MikeRogers0))
193
- - Prefix dom\_id with hash/pound [\#410](https://github.com/stimulusreflex/stimulus_reflex/pull/410) ([hopsoft](https://github.com/hopsoft))
194
-
195
- **Closed issues:**
196
-
197
- - Form serialisation does not escape input values [\#430](https://github.com/stimulusreflex/stimulus_reflex/issues/430)
198
- - dispatchEvent before morph in reflex actions [\#428](https://github.com/stimulusreflex/stimulus_reflex/issues/428)
199
- - Multiple text inputs with the same name lose value in Reflex [\#425](https://github.com/stimulusreflex/stimulus_reflex/issues/425)
200
- - Lifecycle events not being issued correctly [\#413](https://github.com/stimulusreflex/stimulus_reflex/issues/413)
201
- - If the element no longer exists, try to find it. [\#412](https://github.com/stimulusreflex/stimulus_reflex/issues/412)
202
-
203
- **Merged pull requests:**
204
-
205
- - Extract callbacks to module [\#427](https://github.com/stimulusreflex/stimulus_reflex/pull/427) ([julianrubisch](https://github.com/julianrubisch))
206
- - Fixes bug where multiple inputs with the same name lost element value [\#426](https://github.com/stimulusreflex/stimulus_reflex/pull/426) ([jonsgreen](https://github.com/jonsgreen))
207
- - Add general policy for CoC enforcement [\#424](https://github.com/stimulusreflex/stimulus_reflex/pull/424) ([hopsoft](https://github.com/hopsoft))
208
- - Update to work with mutatable CR config [\#421](https://github.com/stimulusreflex/stimulus_reflex/pull/421) ([hopsoft](https://github.com/hopsoft))
209
- - Bump nokogiri from 1.10.10 to 1.11.1 [\#420](https://github.com/stimulusreflex/stimulus_reflex/pull/420) ([dependabot[bot]](https://github.com/apps/dependabot))
210
- - Add matrix strategy to ruby tests [\#415](https://github.com/stimulusreflex/stimulus_reflex/pull/415) ([julianrubisch](https://github.com/julianrubisch))
211
- - fix 'operartion' typo [\#411](https://github.com/stimulusreflex/stimulus_reflex/pull/411) ([marcoroth](https://github.com/marcoroth))
212
-
213
- ## [v3.4.0](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.4.0) (2020-12-18)
214
-
215
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.4.0.pre9...v3.4.0)
216
-
217
- **Closed issues:**
218
-
219
- - uninitialized constant StimulusReflex::Channel [\#408](https://github.com/stimulusreflex/stimulus_reflex/issues/408)
220
- - StimulusReflex \(3.4.0.pre9\) was unable to find an element [\#406](https://github.com/stimulusreflex/stimulus_reflex/issues/406)
221
-
222
- ## [v3.4.0.pre9](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.4.0.pre9) (2020-12-13)
223
-
224
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.4.0.pre8...v3.4.0.pre9)
225
-
226
- **Implemented enhancements:**
227
-
228
- - Allow StimulusReflex to process Rack middlewares [\#399](https://github.com/stimulusreflex/stimulus_reflex/pull/399) ([marcoroth](https://github.com/marcoroth))
229
- - Support for Stimulus 2 [\#398](https://github.com/stimulusreflex/stimulus_reflex/pull/398) ([marcoroth](https://github.com/marcoroth))
230
-
231
- **Fixed bugs:**
232
-
233
- - fix up install task [\#401](https://github.com/stimulusreflex/stimulus_reflex/pull/401) ([leastbad](https://github.com/leastbad))
234
- - Fix multiple broadcasts from within the same reflex [\#400](https://github.com/stimulusreflex/stimulus_reflex/pull/400) ([hopsoft](https://github.com/hopsoft))
235
-
236
- **Closed issues:**
237
-
238
- - Sanity checker will fail if node\_modules folder isn't present [\#402](https://github.com/stimulusreflex/stimulus_reflex/issues/402)
239
- - stimulus\_reflex.js:388 Uncaught TypeError: Cannot read property 'completedOperations' of undefined [\#394](https://github.com/stimulusreflex/stimulus_reflex/issues/394)
240
- - Rendering issue [\#289](https://github.com/stimulusreflex/stimulus_reflex/issues/289)
241
-
242
- **Merged pull requests:**
243
-
244
- - Add dom\_id to the reflex [\#405](https://github.com/stimulusreflex/stimulus_reflex/pull/405) ([hopsoft](https://github.com/hopsoft))
245
- - Don't run sanity checker in production [\#404](https://github.com/stimulusreflex/stimulus_reflex/pull/404) ([joshleblanc](https://github.com/joshleblanc))
246
- - Check package version from yarn.lock if node\_modules folder is not av… [\#403](https://github.com/stimulusreflex/stimulus_reflex/pull/403) ([RolandStuder](https://github.com/RolandStuder))
247
-
248
- ## [v3.4.0.pre8](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.4.0.pre8) (2020-12-02)
249
-
250
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.4.0.pre7...v3.4.0.pre8)
251
-
252
- **Closed issues:**
253
-
254
- - DirectUpload URL not set using morphs [\#396](https://github.com/stimulusreflex/stimulus_reflex/issues/396)
255
-
256
- **Merged pull requests:**
257
-
258
- - Delegate render to controller [\#397](https://github.com/stimulusreflex/stimulus_reflex/pull/397) ([hopsoft](https://github.com/hopsoft))
259
-
260
- ## [v3.4.0.pre7](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.4.0.pre7) (2020-12-01)
261
-
262
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.4.0.pre6...v3.4.0.pre7)
263
-
264
- **Closed issues:**
265
-
266
- - Multiple reflex submissions can lead to unexpected behaviour. [\#391](https://github.com/stimulusreflex/stimulus_reflex/issues/391)
267
-
268
- **Merged pull requests:**
269
-
270
- - Trigger piggy back operations after SR operations [\#395](https://github.com/stimulusreflex/stimulus_reflex/pull/395) ([hopsoft](https://github.com/hopsoft))
271
- - `invokeLifecycleMethod\(\)`: handle undefined `element` parameter [\#393](https://github.com/stimulusreflex/stimulus_reflex/pull/393) ([marcoroth](https://github.com/marcoroth))
272
- - don't warn folks twice [\#392](https://github.com/stimulusreflex/stimulus_reflex/pull/392) ([leastbad](https://github.com/leastbad))
273
-
274
- ## [v3.4.0.pre6](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.4.0.pre6) (2020-11-29)
275
-
276
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.4.0.pre5...v3.4.0.pre6)
277
-
278
- **Merged pull requests:**
279
-
280
- - Update templates for new stage etc [\#390](https://github.com/stimulusreflex/stimulus_reflex/pull/390) ([leastbad](https://github.com/leastbad))
281
- - reflexError and received refactor [\#389](https://github.com/stimulusreflex/stimulus_reflex/pull/389) ([leastbad](https://github.com/leastbad))
282
- - add jQuery support to SR library events [\#388](https://github.com/stimulusreflex/stimulus_reflex/pull/388) ([leastbad](https://github.com/leastbad))
283
- - dont exit in sanity checker on `stimulus\_reflex:install` [\#387](https://github.com/stimulusreflex/stimulus_reflex/pull/387) ([marcoroth](https://github.com/marcoroth))
284
- - Allow `success` and `after` lifecycle methods on replaced elements [\#386](https://github.com/stimulusreflex/stimulus_reflex/pull/386) ([marcoroth](https://github.com/marcoroth))
285
- - split SR operations from data.operations [\#385](https://github.com/stimulusreflex/stimulus_reflex/pull/385) ([leastbad](https://github.com/leastbad))
286
- - don't show findElement warnings unless debugging [\#384](https://github.com/stimulusreflex/stimulus_reflex/pull/384) ([leastbad](https://github.com/leastbad))
287
- - Setup a proxy object that wraps CableReady::Channels [\#382](https://github.com/stimulusreflex/stimulus_reflex/pull/382) ([hopsoft](https://github.com/hopsoft))
288
- - non-SR cable\_ready operation pass-through [\#381](https://github.com/stimulusreflex/stimulus_reflex/pull/381) ([leastbad](https://github.com/leastbad))
289
-
290
- ## [v3.4.0.pre5](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.4.0.pre5) (2020-11-25)
291
-
292
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.4.0.pre4...v3.4.0.pre5)
293
-
294
- **Closed issues:**
295
-
296
- - SR doesn't seem to handle redirects / 302s [\#376](https://github.com/stimulusreflex/stimulus_reflex/issues/376)
297
-
298
- **Merged pull requests:**
299
-
300
- - Move package.json to root of project [\#380](https://github.com/stimulusreflex/stimulus_reflex/pull/380) ([hopsoft](https://github.com/hopsoft))
301
- - make element.reflexController a dictionary [\#379](https://github.com/stimulusreflex/stimulus_reflex/pull/379) ([existentialmutt](https://github.com/existentialmutt))
302
- - fixed bug preventing callbacks for multiple morphs [\#378](https://github.com/stimulusreflex/stimulus_reflex/pull/378) ([leastbad](https://github.com/leastbad))
303
- - Handles to mitigate race conditions when running reflexes in quick succession on the same element [\#377](https://github.com/stimulusreflex/stimulus_reflex/pull/377) ([existentialmutt](https://github.com/existentialmutt))
304
- - Exit with nonzero status code [\#375](https://github.com/stimulusreflex/stimulus_reflex/pull/375) ([julianrubisch](https://github.com/julianrubisch))
305
-
306
- ## [v3.4.0.pre4](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.4.0.pre4) (2020-11-19)
307
-
308
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.4.0.pre3...v3.4.0.pre4)
309
-
310
- **Fixed bugs:**
311
-
312
- - Fix fatal error in `stimulus\_reflex:install` task with Rails 5.2 [\#371](https://github.com/stimulusreflex/stimulus_reflex/pull/371) ([Matt-Yorkley](https://github.com/Matt-Yorkley))
313
- - fix nothing morphs and error messages [\#368](https://github.com/stimulusreflex/stimulus_reflex/pull/368) ([leastbad](https://github.com/leastbad))
314
-
315
- **Closed issues:**
316
-
317
- - `stimulus\_reflex:install` fails to complete in Rails 5.2 [\#367](https://github.com/stimulusreflex/stimulus_reflex/issues/367)
318
- - Form data still not captured [\#366](https://github.com/stimulusreflex/stimulus_reflex/issues/366)
319
- - Console exception when reflex does not update a page that didn't trigger the reflex [\#363](https://github.com/stimulusreflex/stimulus_reflex/issues/363)
320
- - Improve server-side logging options [\#264](https://github.com/stimulusreflex/stimulus_reflex/issues/264)
321
-
322
- **Merged pull requests:**
323
-
324
- - use puts instead of ActionCable.logger to sidestep silenced AC logs [\#373](https://github.com/stimulusreflex/stimulus_reflex/pull/373) ([leastbad](https://github.com/leastbad))
325
- - Improve logged post\_install.js message [\#372](https://github.com/stimulusreflex/stimulus_reflex/pull/372) ([forsbergplustwo](https://github.com/forsbergplustwo))
326
- - Pass additional reflex-related data to reflex from data [\#370](https://github.com/stimulusreflex/stimulus_reflex/pull/370) ([joshleblanc](https://github.com/joshleblanc))
327
- - fix: rip out microbundle [\#369](https://github.com/stimulusreflex/stimulus_reflex/pull/369) ([ParamagicDev](https://github.com/ParamagicDev))
328
- - Add tests for broadcasters [\#364](https://github.com/stimulusreflex/stimulus_reflex/pull/364) ([julianrubisch](https://github.com/julianrubisch))
329
- - Do not run sanity check on `rails generate stimulus\_reflex:config` [\#362](https://github.com/stimulusreflex/stimulus_reflex/pull/362) ([RolandStuder](https://github.com/RolandStuder))
330
- - fix: revert CR and @rails/actioncable to dependencies [\#361](https://github.com/stimulusreflex/stimulus_reflex/pull/361) ([ParamagicDev](https://github.com/ParamagicDev))
331
- - xpath fix [\#360](https://github.com/stimulusreflex/stimulus_reflex/pull/360) ([leastbad](https://github.com/leastbad))
332
-
333
- ## [v3.4.0.pre3](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.4.0.pre3) (2020-11-11)
334
-
335
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.4.0.pre2...v3.4.0.pre3)
336
-
337
- **Merged pull requests:**
338
-
339
- - Allow to supress warnings for sanity checks [\#359](https://github.com/stimulusreflex/stimulus_reflex/pull/359) ([RolandStuder](https://github.com/RolandStuder))
340
- - serializeForm: only append given input if element is submit button [\#357](https://github.com/stimulusreflex/stimulus_reflex/pull/357) ([marcoroth](https://github.com/marcoroth))
341
- - Update package.json to 3.4.0-pre2 [\#356](https://github.com/stimulusreflex/stimulus_reflex/pull/356) ([marcoroth](https://github.com/marcoroth))
342
- - Fix elementToXPath import [\#355](https://github.com/stimulusreflex/stimulus_reflex/pull/355) ([julianrubisch](https://github.com/julianrubisch))
343
- - Add guard clause to return valid empty form data [\#354](https://github.com/stimulusreflex/stimulus_reflex/pull/354) ([julianrubisch](https://github.com/julianrubisch))
344
- - simplify xpath functions [\#353](https://github.com/stimulusreflex/stimulus_reflex/pull/353) ([leastbad](https://github.com/leastbad))
345
- - pass reflex id to reflex [\#352](https://github.com/stimulusreflex/stimulus_reflex/pull/352) ([joshleblanc](https://github.com/joshleblanc))
346
-
347
- ## [v3.4.0.pre2](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.4.0.pre2) (2020-11-06)
348
-
349
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.4.0.pre1...v3.4.0.pre2)
350
-
351
- **Closed issues:**
352
-
353
- - Regression in version 3.4.0-pre1: Cannot find module `cable\_ready` [\#350](https://github.com/stimulusreflex/stimulus_reflex/issues/350)
354
-
355
- **Merged pull requests:**
356
-
357
- - move `cable\_ready` to development dependencies [\#351](https://github.com/stimulusreflex/stimulus_reflex/pull/351) ([marcoroth](https://github.com/marcoroth))
358
- - Fix serializeForm initialization [\#349](https://github.com/stimulusreflex/stimulus_reflex/pull/349) ([marcoroth](https://github.com/marcoroth))
359
-
360
- ## [v3.4.0.pre1](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.4.0.pre1) (2020-11-03)
361
-
362
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.4.0.pre0...v3.4.0.pre1)
363
-
364
- ## [v3.4.0.pre0](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.4.0.pre0) (2020-11-02)
365
-
366
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.3.0...v3.4.0.pre0)
367
-
368
- **Implemented enhancements:**
369
-
370
- - Move StimulusReflex::Channel to app/ and allow for a configurable parent channel [\#346](https://github.com/stimulusreflex/stimulus_reflex/pull/346) ([leastbad](https://github.com/leastbad))
371
- - tab isolation mode v2 [\#335](https://github.com/stimulusreflex/stimulus_reflex/pull/335) ([leastbad](https://github.com/leastbad))
372
- - Delegate flash to the request [\#334](https://github.com/stimulusreflex/stimulus_reflex/pull/334) ([hopsoft](https://github.com/hopsoft))
373
- - Opt-in form serialization & params overriding [\#325](https://github.com/stimulusreflex/stimulus_reflex/pull/325) ([s-s](https://github.com/s-s))
374
- - Exit on failed sanity check, provide config to skip exit [\#318](https://github.com/stimulusreflex/stimulus_reflex/pull/318) ([RolandStuder](https://github.com/RolandStuder))
375
-
376
- **Fixed bugs:**
377
-
378
- - Console exception when reflex updates a page that didn't trigger the update [\#336](https://github.com/stimulusreflex/stimulus_reflex/issues/336)
379
- - AlpineJS components not reinitalised after reflex [\#329](https://github.com/stimulusreflex/stimulus_reflex/issues/329)
380
- - Encoding changes from UTF-8 to ASCII-8BIT [\#202](https://github.com/stimulusreflex/stimulus_reflex/issues/202)
381
-
382
- **Closed issues:**
383
-
384
- - ActionController::RoutingError with Rails 6 Engines [\#342](https://github.com/stimulusreflex/stimulus_reflex/issues/342)
385
- - Wrong input name parsing [\#321](https://github.com/stimulusreflex/stimulus_reflex/issues/321)
386
- - Stimulus' controllers are not reconnecting after reflex, why? [\#314](https://github.com/stimulusreflex/stimulus_reflex/issues/314)
387
- - Documentation Request for a Rails 6.x app with 5.2 defaults [\#265](https://github.com/stimulusreflex/stimulus_reflex/issues/265)
388
-
389
- **Merged pull requests:**
390
-
391
- - \[docs\] StimulusReflex.debug= on left hand side [\#348](https://github.com/stimulusreflex/stimulus_reflex/pull/348) ([drnic](https://github.com/drnic))
392
- - Fix page morphs inside Rails engines [\#344](https://github.com/stimulusreflex/stimulus_reflex/pull/344) ([leastbad](https://github.com/leastbad))
393
- - Use Webpacker folder if available [\#343](https://github.com/stimulusreflex/stimulus_reflex/pull/343) ([coorasse](https://github.com/coorasse))
394
- - feat: create a more robust package.json [\#340](https://github.com/stimulusreflex/stimulus_reflex/pull/340) ([ParamagicDev](https://github.com/ParamagicDev))
395
- - Make StimulusReflex configurable and add an initializer [\#339](https://github.com/stimulusreflex/stimulus_reflex/pull/339) ([RolandStuder](https://github.com/RolandStuder))
396
- - Aliases method\_name to action\_name [\#338](https://github.com/stimulusreflex/stimulus_reflex/pull/338) ([obie](https://github.com/obie))
397
- - remove isolate concept and make behavior default [\#332](https://github.com/stimulusreflex/stimulus_reflex/pull/332) ([leastbad](https://github.com/leastbad))
398
- - add signed/unsigned accessors to element [\#330](https://github.com/stimulusreflex/stimulus_reflex/pull/330) ([joshleblanc](https://github.com/joshleblanc))
399
- - merge environment into ApplicationController and descendants [\#328](https://github.com/stimulusreflex/stimulus_reflex/pull/328) ([leastbad](https://github.com/leastbad))
400
- - Move form-data merge logic to the server-side [\#327](https://github.com/stimulusreflex/stimulus_reflex/pull/327) ([marcoroth](https://github.com/marcoroth))
401
- - fix for PR\#317 which was preventing server messages [\#326](https://github.com/stimulusreflex/stimulus_reflex/pull/326) ([leastbad](https://github.com/leastbad))
402
- - introduce tab isolation mode [\#324](https://github.com/stimulusreflex/stimulus_reflex/pull/324) ([leastbad](https://github.com/leastbad))
403
- - Force request encodings to be UTF-8 instead of ASCII-8BIT after a reflex [\#320](https://github.com/stimulusreflex/stimulus_reflex/pull/320) ([marcoroth](https://github.com/marcoroth))
404
- - Append short section about resetting a form [\#319](https://github.com/stimulusreflex/stimulus_reflex/pull/319) ([julianrubisch](https://github.com/julianrubisch))
405
- - lifecycle refactor: introduce new finalize stage, global reflexes dictionary [\#317](https://github.com/stimulusreflex/stimulus_reflex/pull/317) ([leastbad](https://github.com/leastbad))
406
- - Update events.md [\#316](https://github.com/stimulusreflex/stimulus_reflex/pull/316) ([gahia](https://github.com/gahia))
407
- - Proposal: Reduce bundle size and add a bundler for Stimulus Reflex javascript [\#315](https://github.com/stimulusreflex/stimulus_reflex/pull/315) ([ParamagicDev](https://github.com/ParamagicDev))
408
-
409
- ## [v3.3.0](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.3.0) (2020-09-22)
410
-
411
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.3.0.pre6...v3.3.0)
412
-
413
- ## [v3.3.0.pre6](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.3.0.pre6) (2020-09-20)
414
-
415
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.3.0.pre5...v3.3.0.pre6)
416
-
417
- **Implemented enhancements:**
418
-
419
- - Support for token-based authentication [\#243](https://github.com/stimulusreflex/stimulus_reflex/pull/243) ([leastbad](https://github.com/leastbad))
420
-
421
- **Closed issues:**
422
-
423
- - Authorization [\#292](https://github.com/stimulusreflex/stimulus_reflex/issues/292)
424
- - Params incorrect for form submitted for nested resource [\#290](https://github.com/stimulusreflex/stimulus_reflex/issues/290)
425
- - Use set I18n.locale in Reflexes with Selector Morphs [\#280](https://github.com/stimulusreflex/stimulus_reflex/issues/280)
426
-
427
- **Merged pull requests:**
428
-
429
- - fixes and tweaks to client logging subsystem [\#313](https://github.com/stimulusreflex/stimulus_reflex/pull/313) ([leastbad](https://github.com/leastbad))
430
- - add ready event after setupDeclarativeReflexes [\#312](https://github.com/stimulusreflex/stimulus_reflex/pull/312) ([leastbad](https://github.com/leastbad))
431
- - Refactor sanity checks on boot [\#311](https://github.com/stimulusreflex/stimulus_reflex/pull/311) ([excid3](https://github.com/excid3))
432
-
433
- ## [v3.3.0.pre5](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.3.0.pre5) (2020-09-18)
434
-
435
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.3.0.pre4...v3.3.0.pre5)
436
-
437
- **Implemented enhancements:**
438
-
439
- - Fail loudly if there's a version mismatch between the gem and the npm package. [\#294](https://github.com/stimulusreflex/stimulus_reflex/issues/294)
440
-
441
- **Closed issues:**
442
-
443
- - IE11 Support: "crypto" is undefined [\#308](https://github.com/stimulusreflex/stimulus_reflex/issues/308)
444
- - Using `morph` gives error on missing Warden::Manager midddleware? [\#304](https://github.com/stimulusreflex/stimulus_reflex/issues/304)
445
- - Update client controller template comments [\#298](https://github.com/stimulusreflex/stimulus_reflex/issues/298)
446
-
447
- **Merged pull requests:**
448
-
449
- - Support IE11 msCrypto \(\#308\) [\#310](https://github.com/stimulusreflex/stimulus_reflex/pull/310) ([chooselife22](https://github.com/chooselife22))
450
- - Print warning and exit if caching is disabled or npm/gem versions are mismatched [\#309](https://github.com/stimulusreflex/stimulus_reflex/pull/309) ([excid3](https://github.com/excid3))
451
- - ActionCable connectivity events [\#307](https://github.com/stimulusreflex/stimulus_reflex/pull/307) ([leastbad](https://github.com/leastbad))
452
- - Copyedits [\#306](https://github.com/stimulusreflex/stimulus_reflex/pull/306) ([CodingItWrong](https://github.com/CodingItWrong))
453
- - add redis to cable.yml in development mode [\#305](https://github.com/stimulusreflex/stimulus_reflex/pull/305) ([leastbad](https://github.com/leastbad))
454
- - Update morph-modes.md [\#302](https://github.com/stimulusreflex/stimulus_reflex/pull/302) ([scottbarrow](https://github.com/scottbarrow))
455
- - Enhance controller templates docs [\#300](https://github.com/stimulusreflex/stimulus_reflex/pull/300) ([pinzonjulian](https://github.com/pinzonjulian))
456
- - Avoid mismatching client and server versions [\#297](https://github.com/stimulusreflex/stimulus_reflex/pull/297) ([piotrwodz](https://github.com/piotrwodz))
457
-
458
- ## [v3.3.0.pre4](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.3.0.pre4) (2020-09-13)
459
-
460
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.3.0.pre3...v3.3.0.pre4)
461
-
462
- **Fixed bugs:**
463
-
464
- - Lifecycle callbacks do not work [\#281](https://github.com/stimulusreflex/stimulus_reflex/issues/281)
465
- - Fix timing issues with post-Reflex lifecycle callbacks [\#299](https://github.com/stimulusreflex/stimulus_reflex/pull/299) ([leastbad](https://github.com/leastbad))
466
-
467
- **Closed issues:**
468
-
469
- - self-referential data-reflex-root [\#301](https://github.com/stimulusreflex/stimulus_reflex/issues/301)
470
- - data-reflex-permanent not working when using slim templates [\#295](https://github.com/stimulusreflex/stimulus_reflex/issues/295)
471
- - undefined method `rescue\_with\_handler' whit reflex action such as "click-\>…" or "change-\>…" [\#287](https://github.com/stimulusreflex/stimulus_reflex/issues/287)
472
-
473
- **Merged pull requests:**
474
-
475
- - Fixed typo in sample code. [\#296](https://github.com/stimulusreflex/stimulus_reflex/pull/296) ([jclarke](https://github.com/jclarke))
476
-
477
- ## [v3.3.0.pre3](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.3.0.pre3) (2020-08-31)
478
-
479
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.3.0.pre2...v3.3.0.pre3)
480
-
481
- **Fixed bugs:**
482
-
483
- - First argument of type "object" in this.stimulate\(\) will always be assigned to options. [\#278](https://github.com/stimulusreflex/stimulus_reflex/issues/278)
484
- - Allow morphs to run before triggering success/after [\#286](https://github.com/stimulusreflex/stimulus_reflex/pull/286) ([hopsoft](https://github.com/hopsoft))
485
-
486
- **Closed issues:**
487
-
488
- - Reflex ignores turbolinks cached pages [\#288](https://github.com/stimulusreflex/stimulus_reflex/issues/288)
489
- - Issue with Stimulus Reflex and ViewComponent [\#284](https://github.com/stimulusreflex/stimulus_reflex/issues/284)
490
- - controller inheritance does not seem to work [\#283](https://github.com/stimulusreflex/stimulus_reflex/issues/283)
491
- - Cannot read property 'schema' of undefined [\#282](https://github.com/stimulusreflex/stimulus_reflex/issues/282)
492
- - Reflex on form submit does not get parameter from input\[type="file"\] [\#277](https://github.com/stimulusreflex/stimulus_reflex/issues/277)
493
- - jQuery Plugins [\#246](https://github.com/stimulusreflex/stimulus_reflex/issues/246)
494
- - ActiveStorage variants performance [\#242](https://github.com/stimulusreflex/stimulus_reflex/issues/242)
495
- - Unnecessary body update after text\_content [\#186](https://github.com/stimulusreflex/stimulus_reflex/issues/186)
496
- - Warn about enabling Rails after running stimulus reflex' initializer [\#185](https://github.com/stimulusreflex/stimulus_reflex/issues/185)
497
- - Integration tests for stimulus-reflex [\#162](https://github.com/stimulusreflex/stimulus_reflex/issues/162)
498
- - Clearer explanation of quickstart example without javascript. [\#149](https://github.com/stimulusreflex/stimulus_reflex/issues/149)
499
- - Webpack compilation fails with rails/webpacker 3.6 [\#83](https://github.com/stimulusreflex/stimulus_reflex/issues/83)
500
-
501
- **Merged pull requests:**
502
-
503
- - Check if reflex exists before using it [\#293](https://github.com/stimulusreflex/stimulus_reflex/pull/293) ([joshleblanc](https://github.com/joshleblanc))
504
- - Add instructions for existing projects [\#291](https://github.com/stimulusreflex/stimulus_reflex/pull/291) ([gerrywastaken](https://github.com/gerrywastaken))
505
- - Fix argument of type object always being assigned to options [\#279](https://github.com/stimulusreflex/stimulus_reflex/pull/279) ([shawnleong](https://github.com/shawnleong))
506
- - Simplify devise authentication logic \(in docs\) [\#276](https://github.com/stimulusreflex/stimulus_reflex/pull/276) ([inner-whisper](https://github.com/inner-whisper))
507
- - Bump lodash from 4.17.15 to 4.17.19 in /javascript [\#275](https://github.com/stimulusreflex/stimulus_reflex/pull/275) ([dependabot[bot]](https://github.com/apps/dependabot))
508
-
509
- ## [v3.3.0.pre2](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.3.0.pre2) (2020-07-17)
510
-
511
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.3.0.pre1...v3.3.0.pre2)
512
-
513
- **Closed issues:**
514
-
515
- - afterReflex not always firing on morph with selectors [\#269](https://github.com/stimulusreflex/stimulus_reflex/issues/269)
516
- - Lifecycle hooks [\#266](https://github.com/stimulusreflex/stimulus_reflex/issues/266)
517
- - Stimulus Reflex with Rspec not working [\#263](https://github.com/stimulusreflex/stimulus_reflex/issues/263)
518
-
519
- **Merged pull requests:**
520
-
521
- - Smarter warnings when element not found [\#274](https://github.com/stimulusreflex/stimulus_reflex/pull/274) ([hopsoft](https://github.com/hopsoft))
522
- - Add the attributes to the warning message when element not found [\#273](https://github.com/stimulusreflex/stimulus_reflex/pull/273) ([hopsoft](https://github.com/hopsoft))
523
- - Update find element to ignore SR attrs [\#272](https://github.com/stimulusreflex/stimulus_reflex/pull/272) ([hopsoft](https://github.com/hopsoft))
524
- - Refactor of the morph feature [\#270](https://github.com/stimulusreflex/stimulus_reflex/pull/270) ([hopsoft](https://github.com/hopsoft))
525
- - coerce html arguments to string type [\#268](https://github.com/stimulusreflex/stimulus_reflex/pull/268) ([leastbad](https://github.com/leastbad))
526
- - Update deployment docs after the official AnyCable 1.0 release [\#267](https://github.com/stimulusreflex/stimulus_reflex/pull/267) ([rmacklin](https://github.com/rmacklin))
527
-
528
- ## [v3.3.0.pre1](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.3.0.pre1) (2020-07-08)
529
-
530
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.3.0.pre0...v3.3.0.pre1)
531
-
532
- **Merged pull requests:**
533
-
534
- - Fix selector morphs for updating partials and ViewComponents [\#262](https://github.com/stimulusreflex/stimulus_reflex/pull/262) ([leastbad](https://github.com/leastbad))
535
-
536
- ## [v3.3.0.pre0](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.3.0.pre0) (2020-07-04)
537
-
538
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.2.3...v3.3.0.pre0)
539
-
540
- **Implemented enhancements:**
541
-
542
- - Returns more helpful error message if Reflex doesn't exist [\#254](https://github.com/stimulusreflex/stimulus_reflex/pull/254) ([leastbad](https://github.com/leastbad))
543
- - Update install.rake to handle Typescript [\#241](https://github.com/stimulusreflex/stimulus_reflex/pull/241) ([iv-mexx](https://github.com/iv-mexx))
544
- - Morph Modes: page, selector and nothing [\#211](https://github.com/stimulusreflex/stimulus_reflex/pull/211) ([leastbad](https://github.com/leastbad))
545
-
546
- **Fixed bugs:**
547
-
548
- - Limit MutationObserver mutations [\#256](https://github.com/stimulusreflex/stimulus_reflex/pull/256) ([jasoncharnes](https://github.com/jasoncharnes))
549
-
550
- **Closed issues:**
551
-
552
- - beforeUpdate/updateSuccess/updateError functions deprecated? [\#255](https://github.com/stimulusreflex/stimulus_reflex/issues/255)
553
- - Error handling will fail if reflex is not defined [\#253](https://github.com/stimulusreflex/stimulus_reflex/issues/253)
554
- - Select with data-reflex in Firefox flickers [\#251](https://github.com/stimulusreflex/stimulus_reflex/issues/251)
555
- - Shorthand action notations corresponding to stimulus [\#233](https://github.com/stimulusreflex/stimulus_reflex/issues/233)
556
- - Lifecycle methods only called for one reflex [\#225](https://github.com/stimulusreflex/stimulus_reflex/issues/225)
557
- - Tweak the generator so we can specify reflex actions [\#219](https://github.com/stimulusreflex/stimulus_reflex/issues/219)
558
- - Docs: Clarify forcing DOM update with authentication [\#123](https://github.com/stimulusreflex/stimulus_reflex/issues/123)
559
- - ActiveJob integration example [\#112](https://github.com/stimulusreflex/stimulus_reflex/issues/112)
560
-
561
- **Merged pull requests:**
562
-
563
- - Prep for pre release of 3.3.0 [\#259](https://github.com/stimulusreflex/stimulus_reflex/pull/259) ([hopsoft](https://github.com/hopsoft))
564
- - Fallback to first Stimulus controller in array [\#257](https://github.com/stimulusreflex/stimulus_reflex/pull/257) ([jasoncharnes](https://github.com/jasoncharnes))
565
- - Fix cases where plural reflexes were unresolved [\#252](https://github.com/stimulusreflex/stimulus_reflex/pull/252) ([joshleblanc](https://github.com/joshleblanc))
566
- - warn against collections of identical elements that trigger reflexes [\#250](https://github.com/stimulusreflex/stimulus_reflex/pull/250) ([leastbad](https://github.com/leastbad))
567
- - always calls params to persist them into controller action [\#249](https://github.com/stimulusreflex/stimulus_reflex/pull/249) ([RolandStuder](https://github.com/RolandStuder))
568
- - Update deployment.md [\#248](https://github.com/stimulusreflex/stimulus_reflex/pull/248) ([user073](https://github.com/user073))
569
- - Update reflexes.md [\#247](https://github.com/stimulusreflex/stimulus_reflex/pull/247) ([user073](https://github.com/user073))
570
- - Bump actionpack from 6.0.3.1 to 6.0.3.2 [\#245](https://github.com/stimulusreflex/stimulus_reflex/pull/245) ([dependabot[bot]](https://github.com/apps/dependabot))
571
- - Bump rack from 2.2.2 to 2.2.3 [\#244](https://github.com/stimulusreflex/stimulus_reflex/pull/244) ([dependabot[bot]](https://github.com/apps/dependabot))
572
- - Revert "Revert "Add instructions for pulling the user id out of session storage"" [\#240](https://github.com/stimulusreflex/stimulus_reflex/pull/240) ([leastbad](https://github.com/leastbad))
573
- - Revert "Add instructions for pulling the user id out of session storage" [\#239](https://github.com/stimulusreflex/stimulus_reflex/pull/239) ([leastbad](https://github.com/leastbad))
574
- - Add instructions for pulling the user id out of session storage [\#238](https://github.com/stimulusreflex/stimulus_reflex/pull/238) ([mtomov](https://github.com/mtomov))
575
- - adds params documentation [\#230](https://github.com/stimulusreflex/stimulus_reflex/pull/230) ([RolandStuder](https://github.com/RolandStuder))
576
- - Fix calling wrong controller lifecycle methods [\#226](https://github.com/stimulusreflex/stimulus_reflex/pull/226) ([davidalejandroaguilar](https://github.com/davidalejandroaguilar))
577
- - Allow to pass reflex action names to reflex generator [\#224](https://github.com/stimulusreflex/stimulus_reflex/pull/224) ([marcoroth](https://github.com/marcoroth))
578
-
579
- ## [v3.2.3](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.2.3) (2020-06-15)
580
-
581
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.2.2...v3.2.3)
582
-
583
- **Fixed bugs:**
584
-
585
- - Add more smarts to \_\_perform [\#235](https://github.com/stimulusreflex/stimulus_reflex/pull/235) ([hopsoft](https://github.com/hopsoft))
586
- - \_\_perform had a bug where it was only ever calling the first event [\#234](https://github.com/stimulusreflex/stimulus_reflex/pull/234) ([leastbad](https://github.com/leastbad))
587
- - merges insteads of overwrites params for reflex actions with form data [\#231](https://github.com/stimulusreflex/stimulus_reflex/pull/231) ([RolandStuder](https://github.com/RolandStuder))
588
-
589
- **Closed issues:**
590
-
591
- - "Uncaught \(in promise\)" error after failed declarative reflex [\#170](https://github.com/stimulusreflex/stimulus_reflex/issues/170)
592
-
593
- **Merged pull requests:**
594
-
595
- - Fix typos in the documentation [\#228](https://github.com/stimulusreflex/stimulus_reflex/pull/228) ([dlt](https://github.com/dlt))
596
-
597
- ## [v3.2.2](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.2.2) (2020-06-06)
598
-
599
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.2.2.pre1...v3.2.2)
600
-
601
- **Closed issues:**
602
-
603
- - Issue with doing a partial dom update [\#223](https://github.com/stimulusreflex/stimulus_reflex/issues/223)
604
-
605
- ## [v3.2.2.pre1](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.2.2.pre1) (2020-05-30)
606
-
607
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.2.2.pre0...v3.2.2.pre1)
608
-
609
- **Fixed bugs:**
610
-
611
- - Session lost after throw :abort [\#221](https://github.com/stimulusreflex/stimulus_reflex/issues/221)
612
- - Fix multipleInstances convenience method [\#220](https://github.com/stimulusreflex/stimulus_reflex/pull/220) ([julianrubisch](https://github.com/julianrubisch))
613
-
614
- **Merged pull requests:**
615
-
616
- - Always commit session [\#222](https://github.com/stimulusreflex/stimulus_reflex/pull/222) ([hopsoft](https://github.com/hopsoft))
617
-
618
- ## [v3.2.2.pre0](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.2.2.pre0) (2020-05-27)
619
-
620
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.2.1...v3.2.2.pre0)
621
-
622
- **Implemented enhancements:**
623
-
624
- - Add a halted lifecycle event [\#190](https://github.com/stimulusreflex/stimulus_reflex/issues/190)
625
- - Allow extractElementAttributes to use a checkbox list [\#147](https://github.com/stimulusreflex/stimulus_reflex/issues/147)
626
- - reflex\_name restriction loosening [\#212](https://github.com/stimulusreflex/stimulus_reflex/pull/212) ([leastbad](https://github.com/leastbad))
627
- - Make element even more user friendly [\#210](https://github.com/stimulusreflex/stimulus_reflex/pull/210) ([hopsoft](https://github.com/hopsoft))
628
- - Form parameters [\#204](https://github.com/stimulusreflex/stimulus_reflex/pull/204) ([jasoncharnes](https://github.com/jasoncharnes))
629
- - Map hashes in incoming arguments using with\_indifferent\_access [\#203](https://github.com/stimulusreflex/stimulus_reflex/pull/203) ([jaredcwhite](https://github.com/jaredcwhite))
630
- - Combine dataset with data-attributes from parent elements on reflex call [\#200](https://github.com/stimulusreflex/stimulus_reflex/pull/200) ([marcoroth](https://github.com/marcoroth))
631
- - Setup mutation aware declarative reflexes [\#197](https://github.com/stimulusreflex/stimulus_reflex/pull/197) ([hopsoft](https://github.com/hopsoft))
632
-
633
- **Fixed bugs:**
634
-
635
- - Text area values are lost if re-sized [\#195](https://github.com/stimulusreflex/stimulus_reflex/issues/195)
636
-
637
- **Closed issues:**
638
-
639
- - Accessing dataset as before is returning nil [\#218](https://github.com/stimulusreflex/stimulus_reflex/issues/218)
640
- - Spurious console error using data-reflex-root and CSS attribute selector [\#207](https://github.com/stimulusreflex/stimulus_reflex/issues/207)
641
- - ActionController Parameters [\#199](https://github.com/stimulusreflex/stimulus_reflex/issues/199)
642
-
643
- **Merged pull requests:**
644
-
645
- - Bump activesupport from 6.0.3 to 6.0.3.1 [\#217](https://github.com/stimulusreflex/stimulus_reflex/pull/217) ([dependabot[bot]](https://github.com/apps/dependabot))
646
- - Bump activestorage from 6.0.3 to 6.0.3.1 [\#216](https://github.com/stimulusreflex/stimulus_reflex/pull/216) ([dependabot[bot]](https://github.com/apps/dependabot))
647
- - Bump actionpack from 6.0.3 to 6.0.3.1 [\#215](https://github.com/stimulusreflex/stimulus_reflex/pull/215) ([dependabot[bot]](https://github.com/apps/dependabot))
648
- - Update dataset handling and some minor refactoring to better naming [\#214](https://github.com/stimulusreflex/stimulus_reflex/pull/214) ([hopsoft](https://github.com/hopsoft))
649
- - Stimulus reflexData assignment after callback [\#208](https://github.com/stimulusreflex/stimulus_reflex/pull/208) ([jasoncharnes](https://github.com/jasoncharnes))
650
- - Loosen Rails requirement to 5.2 with instructions [\#205](https://github.com/stimulusreflex/stimulus_reflex/pull/205) ([jasoncharnes](https://github.com/jasoncharnes))
651
- - Fix undefined is not an object for Object.keys in log.js [\#201](https://github.com/stimulusreflex/stimulus_reflex/pull/201) ([marcoroth](https://github.com/marcoroth))
652
- - Small typo/grammar fix in quickstart doc. [\#198](https://github.com/stimulusreflex/stimulus_reflex/pull/198) ([acoffman](https://github.com/acoffman))
653
- - Add halted lifecycle event [\#193](https://github.com/stimulusreflex/stimulus_reflex/pull/193) ([websebdev](https://github.com/websebdev))
654
- - 147 extract multiple checkbox values [\#175](https://github.com/stimulusreflex/stimulus_reflex/pull/175) ([julianrubisch](https://github.com/julianrubisch))
655
-
656
- ## [v3.2.1](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.2.1) (2020-05-09)
657
-
658
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.2.0...v3.2.1)
659
-
660
- **Merged pull requests:**
661
-
662
- - Prevent halting if reflex returns false [\#194](https://github.com/stimulusreflex/stimulus_reflex/pull/194) ([hopsoft](https://github.com/hopsoft))
663
-
664
- ## [v3.2.0](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.2.0) (2020-05-09)
665
-
666
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.2.0.pre1...v3.2.0)
667
-
668
- ## [v3.2.0.pre1](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.2.0.pre1) (2020-05-08)
669
-
670
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.2.0-pre0...v3.2.0.pre1)
671
-
672
- **Fixed bugs:**
673
-
674
- - Add guard to morph that checks stimulusReflex [\#191](https://github.com/stimulusreflex/stimulus_reflex/pull/191) ([hopsoft](https://github.com/hopsoft))
675
-
676
- ## [v3.2.0-pre0](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.2.0-pre0) (2020-05-07)
677
-
678
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.2.0.pre0...v3.2.0-pre0)
679
-
680
- ## [v3.2.0.pre0](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.2.0.pre0) (2020-05-07)
681
-
682
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.1.4...v3.2.0.pre0)
683
-
684
- **Implemented enhancements:**
685
-
686
- - Stimulate without a reflex target [\#179](https://github.com/stimulusreflex/stimulus_reflex/issues/179)
687
- - Reflex callbacks [\#155](https://github.com/stimulusreflex/stimulus_reflex/issues/155)
688
- - Replace camelize with homegrown version [\#184](https://github.com/stimulusreflex/stimulus_reflex/pull/184) ([jonathan-s](https://github.com/jonathan-s))
689
- - Replace uuid4 dependency with function in repo [\#181](https://github.com/stimulusreflex/stimulus_reflex/pull/181) ([jonathan-s](https://github.com/jonathan-s))
690
- - Allow channel exceptions to be rescuable [\#180](https://github.com/stimulusreflex/stimulus_reflex/pull/180) ([dark-panda](https://github.com/dark-panda))
691
- - add console log messages for every reflex call [\#163](https://github.com/stimulusreflex/stimulus_reflex/pull/163) ([marcoroth](https://github.com/marcoroth))
692
- - add reflex callbacks [\#160](https://github.com/stimulusreflex/stimulus_reflex/pull/160) ([websebdev](https://github.com/websebdev))
693
-
694
- **Fixed bugs:**
695
-
696
- - Pluralize the generated class name, so that will match with the file name [\#178](https://github.com/stimulusreflex/stimulus_reflex/pull/178) ([dark88888](https://github.com/dark88888))
697
-
698
- **Closed issues:**
699
-
700
- - The ActionCable connection is not open! `this.isActionCableConnectionOpen\(\)` must return true before calling `this.stimulate\(\)` [\#187](https://github.com/stimulusreflex/stimulus_reflex/issues/187)
701
- - Promises just resolve with last Partial DOM update [\#171](https://github.com/stimulusreflex/stimulus_reflex/issues/171)
702
-
703
- **Merged pull requests:**
704
-
705
- - Some housekeeping [\#189](https://github.com/stimulusreflex/stimulus_reflex/pull/189) ([hopsoft](https://github.com/hopsoft))
706
- - Allow to call stimulate without a reflex target [\#188](https://github.com/stimulusreflex/stimulus_reflex/pull/188) ([marcoroth](https://github.com/marcoroth))
707
- - Fix bug in super documentation [\#174](https://github.com/stimulusreflex/stimulus_reflex/pull/174) ([silva96](https://github.com/silva96))
708
-
709
- ## [v3.1.4](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.1.4) (2020-04-27)
710
-
711
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.1.3...v3.1.4)
712
-
713
- **Implemented enhancements:**
714
-
715
- - TypeScript typing support [\#152](https://github.com/stimulusreflex/stimulus_reflex/issues/152)
716
-
717
- **Fixed bugs:**
718
-
719
- - Possible bug when about to perform cableready operations [\#166](https://github.com/stimulusreflex/stimulus_reflex/issues/166)
720
- - Reflex not binding to ajax loaded content [\#161](https://github.com/stimulusreflex/stimulus_reflex/issues/161)
721
- - Input field values sometimes remain [\#159](https://github.com/stimulusreflex/stimulus_reflex/issues/159)
722
-
723
- **Closed issues:**
724
-
725
- - Devise authenticated routes not supported anymore [\#173](https://github.com/stimulusreflex/stimulus_reflex/issues/173)
726
- - CableReady detected an error in morph! Event is not a constructor [\#165](https://github.com/stimulusreflex/stimulus_reflex/issues/165)
727
- - Testing Integrations [\#164](https://github.com/stimulusreflex/stimulus_reflex/issues/164)
728
- - Error during install: "File unchanged! The supplied flag value not found! app/javascript/packs/application.js" [\#118](https://github.com/stimulusreflex/stimulus_reflex/issues/118)
729
- - Make the javascript in stimulus-reflex websocket agnostic [\#113](https://github.com/stimulusreflex/stimulus_reflex/issues/113)
730
-
731
- **Merged pull requests:**
732
-
733
- - prettier-standard: include all js files in the project [\#177](https://github.com/stimulusreflex/stimulus_reflex/pull/177) ([marcoroth](https://github.com/marcoroth))
734
- - Remove implicit permanent for text inputs [\#176](https://github.com/stimulusreflex/stimulus_reflex/pull/176) ([hopsoft](https://github.com/hopsoft))
735
- - Support devise authenticated routes [\#172](https://github.com/stimulusreflex/stimulus_reflex/pull/172) ([db0sch](https://github.com/db0sch))
736
- - setupDeclarativeReflexes export with UJS support [\#169](https://github.com/stimulusreflex/stimulus_reflex/pull/169) ([leastbad](https://github.com/leastbad))
737
- - Fix compilation issue [\#168](https://github.com/stimulusreflex/stimulus_reflex/pull/168) ([jonathan-s](https://github.com/jonathan-s))
738
-
739
- ## [v3.1.3](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.1.3) (2020-04-20)
740
-
741
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.1.2...v3.1.3)
742
-
743
- **Implemented enhancements:**
744
-
745
- - Server initiated redirects [\#25](https://github.com/stimulusreflex/stimulus_reflex/issues/25)
746
-
747
- **Fixed bugs:**
748
-
749
- - Unable to register the ActionCable Consumer [\#156](https://github.com/stimulusreflex/stimulus_reflex/issues/156)
750
- - Remove unneeded registerConsumer logic [\#158](https://github.com/stimulusreflex/stimulus_reflex/pull/158) ([hopsoft](https://github.com/hopsoft))
751
-
752
- **Closed issues:**
753
-
754
- - Scoping when using Stimulus does not work as expected [\#144](https://github.com/stimulusreflex/stimulus_reflex/issues/144)
755
- - Shared connections to reduce websocket connections? [\#136](https://github.com/stimulusreflex/stimulus_reflex/issues/136)
756
- - routing reflexes to controllers [\#97](https://github.com/stimulusreflex/stimulus_reflex/issues/97)
757
- - Time for introducing a develop branch? [\#84](https://github.com/stimulusreflex/stimulus_reflex/issues/84)
758
- - out-of-band Reflex updates [\#64](https://github.com/stimulusreflex/stimulus_reflex/issues/64)
759
-
760
- ## [v3.1.2](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.1.2) (2020-04-16)
761
-
762
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.1.1...v3.1.2)
763
-
764
- ## [v3.1.1](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.1.1) (2020-04-16)
765
-
766
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.1.0...v3.1.1)
767
-
768
- **Fixed bugs:**
769
-
770
- - Cannot read property 'removeEventListener' of undefined after updating to 3.1.0 [\#151](https://github.com/stimulusreflex/stimulus_reflex/issues/151)
771
- - remove changelog rake task [\#150](https://github.com/stimulusreflex/stimulus_reflex/pull/150) ([andrewmcodes](https://github.com/andrewmcodes))
772
-
773
- **Closed issues:**
774
-
775
- - Setup & Quick Start guide from scratch results in showstopping error [\#153](https://github.com/stimulusreflex/stimulus_reflex/issues/153)
776
-
777
- **Merged pull requests:**
778
-
779
- - Trap errors in registerConsumer [\#154](https://github.com/stimulusreflex/stimulus_reflex/pull/154) ([hopsoft](https://github.com/hopsoft))
780
-
781
- ## [v3.1.0](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.1.0) (2020-04-15)
782
-
783
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.0.0...v3.1.0)
784
-
785
- **Implemented enhancements:**
786
-
787
- - Check the ActionCable connection on stimuluate [\#148](https://github.com/stimulusreflex/stimulus_reflex/pull/148) ([hopsoft](https://github.com/hopsoft))
788
- - Attach element.tagName to extracted attributes [\#146](https://github.com/stimulusreflex/stimulus_reflex/pull/146) ([julianrubisch](https://github.com/julianrubisch))
789
- - Create dynamic changelog [\#143](https://github.com/stimulusreflex/stimulus_reflex/pull/143) ([andrewmcodes](https://github.com/andrewmcodes))
790
- - add funding file [\#141](https://github.com/stimulusreflex/stimulus_reflex/pull/141) ([andrewmcodes](https://github.com/andrewmcodes))
791
-
792
- **Fixed bugs:**
793
-
794
- - Allow other CableReady operations to perform [\#145](https://github.com/stimulusreflex/stimulus_reflex/pull/145) ([hopsoft](https://github.com/hopsoft))
795
-
796
- **Closed issues:**
797
-
798
- - Non-morph operations are not executed by CableReady on errors [\#139](https://github.com/stimulusreflex/stimulus_reflex/issues/139)
799
- - Pass element tagname in reflex [\#137](https://github.com/stimulusreflex/stimulus_reflex/issues/137)
800
- - ActionCable npm package renamed [\#132](https://github.com/stimulusreflex/stimulus_reflex/issues/132)
801
-
802
- **Merged pull requests:**
803
-
804
- - Allow \#stimulate to use promises [\#142](https://github.com/stimulusreflex/stimulus_reflex/pull/142) ([dark-panda](https://github.com/dark-panda))
805
-
806
- ## [v3.0.0](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.0.0) (2020-04-06)
807
-
808
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.2.3...v3.0.0)
809
-
810
- **Breaking changes:**
811
-
812
- - Update ActionCable JS dep to @rails/actioncable [\#135](https://github.com/stimulusreflex/stimulus_reflex/pull/135) ([hopsoft](https://github.com/hopsoft))
813
-
814
- **Implemented enhancements:**
815
-
816
- - update install script to set session store [\#134](https://github.com/stimulusreflex/stimulus_reflex/pull/134) ([leastbad](https://github.com/leastbad))
817
- - update package.json and readme [\#133](https://github.com/stimulusreflex/stimulus_reflex/pull/133) ([andrewmcodes](https://github.com/andrewmcodes))
818
-
819
- **Closed issues:**
820
-
821
- - \[WIP\] AnyCable and Stimulus Reflex [\#46](https://github.com/stimulusreflex/stimulus_reflex/issues/46)
822
-
823
- ## [v2.2.3](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.2.3) (2020-03-27)
824
-
825
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.2.2...v2.2.3)
826
-
827
- **Implemented enhancements:**
828
-
829
- - Reload session prior to each reflex accessing it [\#131](https://github.com/stimulusreflex/stimulus_reflex/pull/131) ([hopsoft](https://github.com/hopsoft))
830
- - tweak prettier-standard and add actions caching [\#125](https://github.com/stimulusreflex/stimulus_reflex/pull/125) ([andrewmcodes](https://github.com/andrewmcodes))
831
-
832
- **Closed issues:**
833
-
834
- - Cannot read property 'stimulusReflexController' of null [\#127](https://github.com/stimulusreflex/stimulus_reflex/issues/127)
835
-
836
- **Merged pull requests:**
837
-
838
- - Bump actionview from 6.0.2.1 to 6.0.2.2 [\#128](https://github.com/stimulusreflex/stimulus_reflex/pull/128) ([dependabot[bot]](https://github.com/apps/dependabot))
839
-
840
- ## [v2.2.2](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.2.2) (2020-03-04)
841
-
842
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.2.1...v2.2.2)
843
-
844
- **Implemented enhancements:**
845
-
846
- - Commit session after rerendering page [\#124](https://github.com/stimulusreflex/stimulus_reflex/pull/124) ([hopsoft](https://github.com/hopsoft))
847
- - Propose post install message [\#122](https://github.com/stimulusreflex/stimulus_reflex/pull/122) ([julianrubisch](https://github.com/julianrubisch))
848
-
849
- ## [v2.2.1](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.2.1) (2020-02-28)
850
-
851
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.2.0...v2.2.1)
852
-
853
- **Fixed bugs:**
854
-
855
- - Cleanup and fixes around lifecycle dispatch [\#121](https://github.com/stimulusreflex/stimulus_reflex/pull/121) ([hopsoft](https://github.com/hopsoft))
856
-
857
- ## [v2.2.0](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.2.0) (2020-02-28)
858
-
859
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.1.9...v2.2.0)
860
-
861
- **Implemented enhancements:**
862
-
863
- - Explicit and implicit registering of the ActionCable consumer [\#116](https://github.com/stimulusreflex/stimulus_reflex/pull/116) ([hopsoft](https://github.com/hopsoft))
864
-
865
- ## [v2.1.9](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.1.9) (2020-02-20)
866
-
867
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.1.8...v2.1.9)
868
-
869
- **Implemented enhancements:**
870
-
871
- - Add lifecycle events [\#114](https://github.com/stimulusreflex/stimulus_reflex/issues/114)
872
- - Setup DOM event based lifecycle [\#115](https://github.com/stimulusreflex/stimulus_reflex/pull/115) ([hopsoft](https://github.com/hopsoft))
873
-
874
- ## [v2.1.8](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.1.8) (2020-01-27)
875
-
876
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.1.7...v2.1.8)
877
-
878
- **Implemented enhancements:**
879
-
880
- - More defense in the received handler [\#107](https://github.com/stimulusreflex/stimulus_reflex/pull/107) ([hopsoft](https://github.com/hopsoft))
881
-
882
- **Fixed bugs:**
883
-
884
- - Fix bug related to trailing slash in URL path [\#111](https://github.com/stimulusreflex/stimulus_reflex/pull/111) ([hopsoft](https://github.com/hopsoft))
885
-
886
- ## [v2.1.7](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.1.7) (2019-12-28)
887
-
888
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.1.6...v2.1.7)
889
-
890
- **Implemented enhancements:**
891
-
892
- - Support devise authenticated routes [\#105](https://github.com/stimulusreflex/stimulus_reflex/pull/105) ([hopsoft](https://github.com/hopsoft))
893
-
894
- **Closed issues:**
895
-
896
- - SR cannot re-render authenticated devise routes [\#104](https://github.com/stimulusreflex/stimulus_reflex/issues/104)
897
- - Docs formatting broken in Persistence section [\#93](https://github.com/stimulusreflex/stimulus_reflex/issues/93)
898
-
899
- ## [v2.1.6](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.1.6) (2019-12-20)
900
-
901
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.1.5...v2.1.6)
902
-
903
- **Implemented enhancements:**
904
-
905
- - StimulusReflex::Channel - Error messages include stack trace info [\#100](https://github.com/stimulusreflex/stimulus_reflex/pull/100) ([szTheory](https://github.com/szTheory))
906
-
907
- **Closed issues:**
908
-
909
- - Demo appears to be broken [\#101](https://github.com/stimulusreflex/stimulus_reflex/issues/101)
910
-
911
- ## [v2.1.5](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.1.5) (2019-11-04)
912
-
913
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.1.4...v2.1.5)
914
-
915
- **Implemented enhancements:**
916
-
917
- - Custom Stimulus schema breaks Reflex [\#91](https://github.com/stimulusreflex/stimulus_reflex/issues/91)
918
- - Add schema support [\#94](https://github.com/stimulusreflex/stimulus_reflex/pull/94) ([hopsoft](https://github.com/hopsoft))
919
- - inherit stimulus schema [\#92](https://github.com/stimulusreflex/stimulus_reflex/pull/92) ([nickyvanurk](https://github.com/nickyvanurk))
920
- - Single source of truth [\#76](https://github.com/stimulusreflex/stimulus_reflex/pull/76) ([leastbad](https://github.com/leastbad))
921
-
922
- **Fixed bugs:**
923
-
924
- - Use application.js as fallback file path [\#82](https://github.com/stimulusreflex/stimulus_reflex/pull/82) ([julianrubisch](https://github.com/julianrubisch))
925
-
926
- **Closed issues:**
927
-
928
- - Slack Community [\#90](https://github.com/stimulusreflex/stimulus_reflex/issues/90)
929
- - Installer fails on fresh Rails 5.2.3 app w/ webpacker 3.6 [\#81](https://github.com/stimulusreflex/stimulus_reflex/issues/81)
930
- - Correct List Order in setup.md under Rooms Section [\#78](https://github.com/stimulusreflex/stimulus_reflex/issues/78)
931
- - Scoped onClick event [\#73](https://github.com/stimulusreflex/stimulus_reflex/issues/73)
932
-
933
- ## [v2.1.4](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.1.4) (2019-10-19)
934
-
935
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.1.3...v2.1.4)
936
-
937
- **Implemented enhancements:**
938
-
939
- - Add CodeFund sponsorship [\#75](https://github.com/stimulusreflex/stimulus_reflex/pull/75) ([coderberry](https://github.com/coderberry))
940
-
941
- **Fixed bugs:**
942
-
943
- - Don't assume that connection identifiers are model instances [\#77](https://github.com/stimulusreflex/stimulus_reflex/pull/77) ([hopsoft](https://github.com/hopsoft))
944
-
945
- ## [v2.1.3](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.1.3) (2019-10-16)
946
-
947
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.1.2...v2.1.3)
948
-
949
- **Implemented enhancements:**
950
-
951
- - Create Rails generators [\#3](https://github.com/stimulusreflex/stimulus_reflex/issues/3)
952
- - Update installer [\#71](https://github.com/stimulusreflex/stimulus_reflex/pull/71) ([hopsoft](https://github.com/hopsoft))
953
- - Tweak generators [\#69](https://github.com/stimulusreflex/stimulus_reflex/pull/69) ([hopsoft](https://github.com/hopsoft))
954
- - add generators [\#67](https://github.com/stimulusreflex/stimulus_reflex/pull/67) ([andrewmcodes](https://github.com/andrewmcodes))
955
-
956
- **Fixed bugs:**
957
-
958
- - too many afterReflex/reflexSuccess callbacks [\#68](https://github.com/stimulusreflex/stimulus_reflex/issues/68)
959
- - Prevent redundant `after` lifecycle callbacks [\#70](https://github.com/stimulusreflex/stimulus_reflex/pull/70) ([hopsoft](https://github.com/hopsoft))
960
-
961
- ## [v2.1.2](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.1.2) (2019-10-09)
962
-
963
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.1.1...v2.1.2)
964
-
965
- ## [v2.1.1](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.1.1) (2019-10-08)
966
-
967
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.1.0...v2.1.1)
968
-
969
- **Fixed bugs:**
970
-
971
- - Fix issue in reflex root discovery [\#66](https://github.com/stimulusreflex/stimulus_reflex/pull/66) ([hopsoft](https://github.com/hopsoft))
972
-
973
- ## [v2.1.0](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.1.0) (2019-10-07)
974
-
975
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.0.2...v2.1.0)
976
-
977
- **Implemented enhancements:**
978
-
979
- - Move ActionCable room configuration to controller registration [\#51](https://github.com/stimulusreflex/stimulus_reflex/issues/51)
980
- - Client side call-backs? [\#34](https://github.com/stimulusreflex/stimulus_reflex/issues/34)
981
- - Scoped register\(\)? [\#26](https://github.com/stimulusreflex/stimulus_reflex/issues/26)
982
- - Add guard to verify same URL prior to morph [\#63](https://github.com/stimulusreflex/stimulus_reflex/pull/63) ([hopsoft](https://github.com/hopsoft))
983
- - Add reflex name to the lifecycle args [\#62](https://github.com/stimulusreflex/stimulus_reflex/pull/62) ([hopsoft](https://github.com/hopsoft))
984
- - Refactor some helper methods out of main file [\#61](https://github.com/stimulusreflex/stimulus_reflex/pull/61) ([hopsoft](https://github.com/hopsoft))
985
- - Documentation update [\#58](https://github.com/stimulusreflex/stimulus_reflex/pull/58) ([leastbad](https://github.com/leastbad))
986
- - \# Support for data-reflex-permanent [\#57](https://github.com/stimulusreflex/stimulus_reflex/pull/57) ([hopsoft](https://github.com/hopsoft))
987
- - Stricter parsing of attributes [\#56](https://github.com/stimulusreflex/stimulus_reflex/pull/56) ([hopsoft](https://github.com/hopsoft))
988
- - \# Use inner\_html to avoid reliance on HTMLTemplateElement behavior [\#55](https://github.com/stimulusreflex/stimulus_reflex/pull/55) ([hopsoft](https://github.com/hopsoft))
989
- - Trim values before attribute assignment [\#54](https://github.com/stimulusreflex/stimulus_reflex/pull/54) ([hopsoft](https://github.com/hopsoft))
990
- - add test action [\#53](https://github.com/stimulusreflex/stimulus_reflex/pull/53) ([andrewmcodes](https://github.com/andrewmcodes))
991
- - Scoped Stimulus Reflex controllers [\#43](https://github.com/stimulusreflex/stimulus_reflex/pull/43) ([leastbad](https://github.com/leastbad))
992
-
993
- **Closed issues:**
994
-
995
- - Install StandardJS linter [\#40](https://github.com/stimulusreflex/stimulus_reflex/issues/40)
996
-
997
- ## [v2.0.2](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.0.2) (2019-09-30)
998
-
999
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.0.1...v2.0.2)
1000
-
1001
- **Implemented enhancements:**
1002
-
1003
- - Add support to configure room via register option [\#52](https://github.com/stimulusreflex/stimulus_reflex/pull/52) ([hopsoft](https://github.com/hopsoft))
1004
- - Move gitbook files to docs [\#49](https://github.com/stimulusreflex/stimulus_reflex/pull/49) ([hopsoft](https://github.com/hopsoft))
1005
-
1006
- **Closed issues:**
1007
-
1008
- - Formatting issues on README [\#48](https://github.com/stimulusreflex/stimulus_reflex/issues/48)
1009
-
1010
- ## [v2.0.1](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.0.1) (2019-09-28)
1011
-
1012
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.0.0...v2.0.1)
1013
-
1014
- **Implemented enhancements:**
1015
-
1016
- - Provide before/after callbacks for calls delegated to server side Stimulus controllers [\#4](https://github.com/stimulusreflex/stimulus_reflex/issues/4)
1017
- - Updated Minimal Javascript Example in README.md [\#47](https://github.com/stimulusreflex/stimulus_reflex/pull/47) ([kobaltz](https://github.com/kobaltz))
1018
- - Setup StimulusReflex controller callbacks [\#45](https://github.com/stimulusreflex/stimulus_reflex/pull/45) ([hopsoft](https://github.com/hopsoft))
1019
- - add .vscode directory to .gitignore [\#42](https://github.com/stimulusreflex/stimulus_reflex/pull/42) ([andrewmcodes](https://github.com/andrewmcodes))
1020
- - Allow override of default controller [\#37](https://github.com/stimulusreflex/stimulus_reflex/pull/37) ([hopsoft](https://github.com/hopsoft))
1021
- - update the name of the actions per feedback [\#36](https://github.com/stimulusreflex/stimulus_reflex/pull/36) ([andrewmcodes](https://github.com/andrewmcodes))
1022
- - update github templates [\#35](https://github.com/stimulusreflex/stimulus_reflex/pull/35) ([andrewmcodes](https://github.com/andrewmcodes))
1023
- - Tighten up security of remote invocation [\#32](https://github.com/stimulusreflex/stimulus_reflex/pull/32) ([hopsoft](https://github.com/hopsoft))
1024
-
1025
- **Fixed bugs:**
1026
-
1027
- - Reflex is a reflex [\#38](https://github.com/stimulusreflex/stimulus_reflex/pull/38) ([leastbad](https://github.com/leastbad))
1028
-
1029
- **Closed issues:**
1030
-
1031
- - Add GH templates [\#30](https://github.com/stimulusreflex/stimulus_reflex/issues/30)
1032
-
1033
- ## [v2.0.0](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.0.0) (2019-09-11)
1034
-
1035
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v1.1.1...v2.0.0)
1036
-
1037
- **Implemented enhancements:**
1038
-
1039
- - update github action triggers [\#29](https://github.com/stimulusreflex/stimulus_reflex/pull/29) ([andrewmcodes](https://github.com/andrewmcodes))
1040
- - Add support for declarative stimulus/reflex behavior [\#28](https://github.com/stimulusreflex/stimulus_reflex/pull/28) ([hopsoft](https://github.com/hopsoft))
1041
-
1042
- **Fixed bugs:**
1043
-
1044
- - fix merge issue for GitHub actions [\#27](https://github.com/stimulusreflex/stimulus_reflex/pull/27) ([andrewmcodes](https://github.com/andrewmcodes))
1045
-
1046
- ## [v1.1.1](https://github.com/stimulusreflex/stimulus_reflex/tree/v1.1.1) (2019-09-09)
1047
-
1048
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v1.1.0...v1.1.1)
1049
-
1050
- ## [v1.1.0](https://github.com/stimulusreflex/stimulus_reflex/tree/v1.1.0) (2019-09-09)
1051
-
1052
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v1.0.2...v1.1.0)
1053
-
1054
- **Implemented enhancements:**
1055
-
1056
- - Implicitly send DOM attributes to reflex methods [\#21](https://github.com/stimulusreflex/stimulus_reflex/pull/21) ([hopsoft](https://github.com/hopsoft))
1057
- - Add Ruby magic comment [\#18](https://github.com/stimulusreflex/stimulus_reflex/pull/18) ([dixpac](https://github.com/dixpac))
1058
- - Add GitHub Actions for Linters [\#17](https://github.com/stimulusreflex/stimulus_reflex/pull/17) ([andrewmcodes](https://github.com/andrewmcodes))
1059
-
1060
- **Fixed bugs:**
1061
-
1062
- - Fix GitHub Actions [\#20](https://github.com/stimulusreflex/stimulus_reflex/pull/20) ([andrewmcodes](https://github.com/andrewmcodes))
1063
-
1064
- ## [v1.0.2](https://github.com/stimulusreflex/stimulus_reflex/tree/v1.0.2) (2019-08-17)
1065
-
1066
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v1.0.1...v1.0.2)
1067
-
1068
- **Implemented enhancements:**
1069
-
1070
- - Small performance enhancements [\#16](https://github.com/stimulusreflex/stimulus_reflex/pull/16) ([hopsoft](https://github.com/hopsoft))
1071
-
1072
- ## [v1.0.1](https://github.com/stimulusreflex/stimulus_reflex/tree/v1.0.1) (2019-08-10)
1073
-
1074
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v1.0.0...v1.0.1)
1075
-
1076
- **Implemented enhancements:**
1077
-
1078
- - Add support for rooms [\#11](https://github.com/stimulusreflex/stimulus_reflex/pull/11) ([hopsoft](https://github.com/hopsoft))
1079
-
1080
- **Closed issues:**
1081
-
1082
- - Trying to get this working in Rails 6 [\#8](https://github.com/stimulusreflex/stimulus_reflex/issues/8)
1083
-
1084
- ## [v1.0.0](https://github.com/stimulusreflex/stimulus_reflex/tree/v1.0.0) (2019-08-09)
1085
-
1086
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.3.3...v1.0.0)
1087
-
1088
- **Implemented enhancements:**
1089
-
1090
- - Ruby function splat args return arity of -1 [\#9](https://github.com/stimulusreflex/stimulus_reflex/pull/9) ([leastbad](https://github.com/leastbad))
1091
-
1092
- ## [v0.3.3](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.3.3) (2019-05-13)
1093
-
1094
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.3.2...v0.3.3)
1095
-
1096
- ## [v0.3.2](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.3.2) (2019-03-25)
1097
-
1098
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.3.1...v0.3.2)
1099
-
1100
- ## [v0.3.1](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.3.1) (2019-03-01)
1101
-
1102
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.3.0...v0.3.1)
1103
-
1104
- ## [v0.3.0](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.3.0) (2019-02-20)
1105
-
1106
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.2.0...v0.3.0)
1107
-
1108
- **Breaking changes:**
1109
-
1110
- - Update naming conventions [\#7](https://github.com/stimulusreflex/stimulus_reflex/pull/7) ([hopsoft](https://github.com/hopsoft))
1111
-
1112
- ## [v0.2.0](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.2.0) (2018-11-16)
1113
-
1114
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.1.12...v0.2.0)
1115
-
1116
- **Implemented enhancements:**
1117
-
1118
- - Explicit opt-in for ActionCable connection [\#6](https://github.com/stimulusreflex/stimulus_reflex/pull/6) ([hopsoft](https://github.com/hopsoft))
1119
-
1120
- ## [v0.1.12](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.1.12) (2018-11-03)
1121
-
1122
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.1.10...v0.1.12)
1123
-
1124
- ## [v0.1.10](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.1.10) (2018-10-26)
1125
-
1126
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.1.9...v0.1.10)
1127
-
1128
- ## [v0.1.9](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.1.9) (2018-10-24)
1129
-
1130
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.1.8...v0.1.9)
1131
-
1132
- **Closed issues:**
1133
-
1134
- - URL helpers generate the wrong paths when page is rendered [\#1](https://github.com/stimulusreflex/stimulus_reflex/issues/1)
1135
-
1136
- ## [v0.1.8](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.1.8) (2018-10-22)
1137
-
1138
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.1.7...v0.1.8)
1139
-
1140
- **Fixed bugs:**
1141
-
1142
- - Update env so url helpers work [\#2](https://github.com/stimulusreflex/stimulus_reflex/pull/2) ([hopsoft](https://github.com/hopsoft))
1143
-
1144
- ## [v0.1.7](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.1.7) (2018-10-21)
1145
-
1146
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.1.6...v0.1.7)
1147
-
1148
- ## [v0.1.6](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.1.6) (2018-10-21)
1149
-
1150
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.1.5...v0.1.6)
1151
-
1152
- ## [v0.1.5](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.1.5) (2018-10-20)
1153
-
1154
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.1.4...v0.1.5)
1155
-
1156
- ## [v0.1.4](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.1.4) (2018-10-20)
1157
-
1158
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.1.3...v0.1.4)
1159
-
1160
- ## [v0.1.3](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.1.3) (2018-10-20)
1161
-
1162
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.1.2...v0.1.3)
1163
-
1164
- ## [v0.1.2](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.1.2) (2018-10-20)
1165
-
1166
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.1.1...v0.1.2)
1167
-
1168
- ## [v0.1.1](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.1.1) (2018-10-20)
1169
-
1170
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v0.1.0...v0.1.1)
1171
-
1172
- ## [v0.1.0](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.1.0) (2018-10-14)
1173
-
1174
- [Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/bbd0d068aa40abb7d9f13deb099645dae3d5b3ed...v0.1.0)
1175
-
1176
-
1177
-
1178
- \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
3
+ Please see [GitHub](https://github.com/stimulusreflex/stimulus_reflex/releases) for detailed changelogs.