Releases: adonisjs/application
Allow service providers with side-effects
This release allow service providers to have side-effects without any exports
Commits
- feat: allow service providers without exports 129ad90
Full Changelog: v7.1.2-12...v7.1.2-13
Remove RCFileEditor in favor of new codemods
- refactor: remove RCFileEditor in favor of new codemods 8b048e9
Full Changelog: v7.1.2-11...v7.1.2-12
Load adonisrc.ts file when exists
After this release, we will migrate to adonirc.ts file from the JSON file. The TypeScript file provides better type-safety
- feat: add defineConfig method 746f633
- feat: load adonisrc.ts file 992211b
- feat: add viewFileName generator c28740b
Full Changelog: v7.1.2-10...v7.1.2-11
Add support for self importing providers and preloads
- feat: add support for self importing providers and preload modules f076c94
Full Changelog: v7.1.2-9...v7.1.2-10
Lazy load stubs manager and RcFileEditor
The RcFileEditor and the StubsManager are needed when invoking the configure command. Therefore, we lazy load them only when needed.
This change results in a breaking change as well.
- The
app.stubsproperty is no longer a reference to theStubsManager. Instead, you must callstubs.createmethod to create an instance of theStubsManager. - The
app.rcFile.editorproperty have been removed. Instead, import theRcFileEditorvia the@adonisjs/app/rc_file_editorsub-module.
Commits
- refactor: move RcFileEditor to its own export aaf419c
- refactor: lazy init stubs manager a18df1f
- chore: update dependencies d09441b
Full Changelog: v7.1.2-8...v7.1.2-9
Propagate environment updates to preloads and providers
- fix: .adonisrc.schema.json file schema f43a8eb
- fix: update environment for providers and preloads when setEnvironment method is called dff7160
- chore: update dependencies e32a342
Full Changelog: v7.1.2-7...v7.1.2-8
Allow app termination from initiated state
Full Changelog: v7.1.2-6...v7.1.2-7
Changes to the assetsBundler properties
- docs(README): remove snyk badge and update tests badge URL 515b221
- refactor: assetsBundler properties devServerCommand and buildCommand d9501f6
- chore: add engines to package.json file 428f943
- chore: do not publish source files 4e829b2
- chore: use @adonisjs/tooling presets for tooling config 4b7d40a
- chore: upgrade japa to v3 e5d1f96
- chore: update dependencies cc17883
Full Changelog: v7.1.2-5...v7.1.2-6
Merge user defined directories with default list
- fix(rcFile): merge custom directories with default list 8293dea
Full Changelog: v7.1.2-4...v7.1.2-5
Introducing starting hook
The starting hook works similar to the preload files, but allows registering inline callbacks
Commits
Full Changelog: v7.1.2-3...v7.1.2-4