Skip to content

Commit

Permalink
chore: Release 3.0.0-next.1 [skip ci]
Browse files Browse the repository at this point in the history
# [3.0.0-next.1](v2.0.0...v3.0.0-next.1) (2022-01-03)

### Bug Fixes

* adapt seeder to  new schema ([a1d4e27](a1d4e27))
* remove factories option from config ([870a23d](870a23d))

### chore

* remove all faker usages from source folder ([2e4b0fb](2e4b0fb))
* remove faker from dependencies ([f41cef4](f41cef4))

### Features

* adapt use seeders to new structure ([7ea3607](7ea3607))
* move factory definition to new abstract class ([41cf349](41cf349))
* remove context from factories ([#23](#23)) ([c030e89](c030e89))
* remove deprecated elements ([09006e8](09006e8))
* remove factory helper methods and test associateds ([#30](#30)) ([a335ca2](a335ca2))
* remove useFactories helper method ([#29](#29)) ([6fbeaba](6fbeaba))
* seed command will execute now default seeder or seed param ([84025f9](84025f9))

### BREAKING CHANGES

* `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
* Some of these functions were used on previous versions
* New abstract factory class is incompatible with previous version
* Helper methods removed were a core part of previous versions
* This method 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
  • Loading branch information
semantic-release-bot committed Jan 3, 2022
1 parent a2a1c87 commit 7281de4
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,40 @@
# [3.0.0-next.1](https://github.com/jorgebodega/typeorm-seeding/compare/v2.0.0...v3.0.0-next.1) (2022-01-03)


### Bug Fixes

* adapt seeder to new schema ([a1d4e27](https://github.com/jorgebodega/typeorm-seeding/commit/a1d4e272e89481d0163ef0d4594a32ae7942cb9d))
* remove factories option from config ([870a23d](https://github.com/jorgebodega/typeorm-seeding/commit/870a23d912a1d18964e52c5c172b38714a8aa042))


### chore

* remove all faker usages from source folder ([2e4b0fb](https://github.com/jorgebodega/typeorm-seeding/commit/2e4b0fb756050f5061d3c0ea38899d40ce30b5a0))
* remove faker from dependencies ([f41cef4](https://github.com/jorgebodega/typeorm-seeding/commit/f41cef4c32720fb36756ac117d6b74d30d6d8998))


### Features

* adapt use seeders to new structure ([7ea3607](https://github.com/jorgebodega/typeorm-seeding/commit/7ea360752e54b8694f148f9dad25bf4815c04224))
* move factory definition to new abstract class ([41cf349](https://github.com/jorgebodega/typeorm-seeding/commit/41cf3494e8a97b185d113191c9598e49a4e73ced))
* remove context from factories ([#23](https://github.com/jorgebodega/typeorm-seeding/issues/23)) ([c030e89](https://github.com/jorgebodega/typeorm-seeding/commit/c030e890add5d41099004f8542a8dd521873d91d))
* remove deprecated elements ([09006e8](https://github.com/jorgebodega/typeorm-seeding/commit/09006e8655f288ebc318d32136b10f720687449f))
* remove factory helper methods and test associateds ([#30](https://github.com/jorgebodega/typeorm-seeding/issues/30)) ([a335ca2](https://github.com/jorgebodega/typeorm-seeding/commit/a335ca232410e2d1d93011ceca33068e01a7f16e))
* remove useFactories helper method ([#29](https://github.com/jorgebodega/typeorm-seeding/issues/29)) ([6fbeaba](https://github.com/jorgebodega/typeorm-seeding/commit/6fbeabaf2988b3d71fa19c2b44e443f58b805495))
* seed command will execute now default seeder or seed param ([84025f9](https://github.com/jorgebodega/typeorm-seeding/commit/84025f9a948c2d0823c2f95e6fb0193f0e36716a))


### BREAKING CHANGES

* `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
* Some of these functions were used on previous versions
* New abstract factory class is incompatible with previous version
* Helper methods removed were a core part of previous versions
* This method 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](https://github.com/jorgebodega/typeorm-seeding/compare/v1.6.2...v2.0.0) (2021-12-14)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jorgebodega/typeorm-seeding",
"version": "2.0.0",
"version": "3.0.0-next.1",
"description": "🌱 A delightful way to seed test data into your database.",
"license": "MIT",
"author": "Gery Hirschfeld <[email protected]> (https://github.com/hirsch88)",
Expand Down

0 comments on commit 7281de4

Please sign in to comment.