5.0.1 (2022-08-18)
- no application seeds (30f82f6)
5.0.1-next.1 (2022-08-17)
- no application seeds (30f82f6)
5.0.0 (2022-08-01)
- Removed config command
- Connection API is deprecated and removed.
5.0.0-next.2 (2022-08-01)
- add factory deprecation notice (8d75e05)
5.0.0-next.1 (2022-07-13)
- update dependency glob to v8 (2d3c996)
- Removed config command
- Connection API is deprecated and removed.
4.0.0 (2022-03-23)
- add type check on subfactories creation (2b2883b)
- attrs failing with lazy instances (c8ddda8)
- update dependency yargs to v17.4.0 (b64c224)
- add factorized attrs (4a2ce08)
- add lazyattribute and subfactory as options in attribs (48a3630)
- add subfactory as valid factorized attr (0f4b37e)
- separate different types of lazy attributes (3efe94e)
- definition function has been substituted with attrs
4.0.0-next.3 (2022-03-03)
4.0.0-next.2 (2022-02-12)
4.0.0-next.1 (2022-02-12)
- add factorized attrs (4a2ce08)
- add lazyattribute and subfactory as options in attribs (48a3630)
- add subfactory as valid factorized attr (0f4b37e)
- separate different types of lazy attributes (3efe94e)
- definition function has been substituted with attrs
3.2.0 (2022-02-06)
- Allow async map function (2d2c27b)
3.1.0 (2022-01-13)
- add support to async definition on factory (9432089)
3.1.0-next.1 (2022-01-09)
- add support to async definition on factory (5fcca0e)
3.0.1 (2022-01-08)
- update dependencies and add rimraf to dev deps (504cef2)
3.0.0 (2022-01-06)
- adapt use seeders to new structure (5bca471)
- move factory definition to new abstract class (81ccdf6)
- remove context from factories (#23) (b7ecba4)
- remove deprecated elements (d09e154)
- remove factory helper methods and test associateds (#30) (3393724)
- remove useFactories helper method (#29) (ddb5c2f)
- seed command will execute now default seeder or seed param (314d8c3)
useSeeders
change its definition and is now incompatible with previous version- Faker is not available anymore as function param
- Faker is removed from dependencies and now users must install it by themselves
- Deprecated functions are removed
- New abstract factory class is incompatible with previous version
useFactories
will no longer be available as is useless in new architecture- Context is being removed from factories. This could break some applications that were using it
2.0.0 (2021-12-14)
useSeeders
has been renamed touseFactories
to be more consistent with functionality- New
useSeeders
has been created. Returns every Seeder that complies glob pattern and could execute them. Seeder
is now an abstract class instead of an interfaceSeeder
must export default, as that is the one that is chosen onuseSeeder
tearDownDatabase
anduseRefreshDatabase
are deprecated