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