stimulus_reflex 3.4.0.pre7 → 3.5.0.pre0

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