Skip to content

Commit

Permalink
[devtools] sync
Browse files Browse the repository at this point in the history
  • Loading branch information
rom-bot committed Jan 19, 2024
1 parent 3cc2bd8 commit 06a9027
Showing 1 changed file with 29 additions and 15 deletions.
44 changes: 29 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,35 +1,49 @@
<!--- DO NOT EDIT THIS FILE - IT'S AUTOMATICALLY GENERATED VIA DEVTOOLS --->

## 0.11.0 2022-11-11
## 0.12.0 UNRELEASED

### Fixed

- Support for plural Faker generators (@wuarmin)
### Added

- Support for many-to-many and one-to-one-through associations (via


[Compare v0.11.0...v0.12.0](https://github.com/rom-rb/rom-factory/compare/v0.11.0...v0.12.0)

## 0.11.0 2022-11-11


### Added

- Support for one-to-one associations (@ianks)
- [internal] cache for Faker constants (@flash-gordon)

### Fixed

- Support for plural Faker generators (@wuarmin)

### Changed

- [BREAKING] attributes are always passed as keywords (@alassek)
This may affect your code in places where attributes are passed as hashes.
Places like
This may affect your code in places where attributes are passed as hashes.
Places like

```ruby
user_attributes = { name: 'Jane' }
Factory[:user, user_attributes]

```

must be updated to

```ruby
user_attributes = { name: 'Jane' }
Factory[:user, **user_attributes]
```

```ruby
user_attributes = { name: 'Jane' }
Factory[:user, user_attributes]
```
must be updated to
```ruby
user_attributes = { name: 'Jane' }
Factory[:user, **user_attributes]
```
- Upgraded to the latest versions of dry-rb dependencies, compatible with rom 5.3 (@flash-gordon)
- Support for Faker 1.x was dropped (@alassek)


[Compare v0.10.2...v0.11.0](https://github.com/rom-rb/rom-factory/compare/v0.10.2...v0.11.0)

## 0.10.2 2020-04-05
Expand Down

0 comments on commit 06a9027

Please sign in to comment.