Releases: dry-rb/dry-rails
Releases · dry-rb/dry-rails
v0.7.0
v0.6.0
v0.5.0
v0.4.0
This is a big update - please also read dry-system CHANGELOG versions 0.20 and 0.21.
Added
- It's now possible to configure container constant name via
config.constainer_const_name
(issue #21 closed via #41) (@diegotoral)
Fixed
config.auto_inject_constant
is now cleared during code reloading (see #40 for more info) (@diegotoral)
Changed
v0.2.0
Added
- You can now configure auto_inject constant name via
config.auto_inject_constant
- previously it was hardcoded as"Import"
, now it's configured as"Deps"
by default (issue #18 closed via #29) (@diegotoral)
Fixed
- Resolving
Container
constant looks it up only within the application namespace (see #22 for more information) (@jandudulski) - [safe_params] defining multiple schemas works as expected (issue #23 fixed via 24) (@gotar)
Changed
v0.1.0
This is based on dry-system-rails that dry-rails replaces.
Added
config.features
setting which is an array with feature identifiers that you want the railtie to boot (@solnic):application_contract
feature which definesApplicationContract
within the application namespace and configured to work withI18n
(@solnic):safe_params
feature which extendsApplicationController
withschema
DSL and exposessafe_params
controller helper (@solnic):controller_helpers
feature which addsApplicationController#{resolve,container}
shortcuts (@solnic)