Skip to content

Commit c026b59

Browse files
committed
Update CHANGELOG.md
For some reason changelog sync is broken. I'll look into this later.
1 parent cff8eec commit c026b59

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
<!--- DO NOT EDIT THIS FILE - IT'S AUTOMATICALLY GENERATED VIA DEVTOOLS --->
22

3+
## 0.11.0 2022-11-11
4+
5+
### Fixed
6+
7+
- Support for plural Faker generators (@wuarmin)
8+
9+
### Added
10+
11+
- Support for one-to-one associations (@ianks)
12+
- [internal] cache for Faker constants (@flash-gordon)
13+
14+
### Changed
15+
16+
- [BREAKING] attributes are always passed as keywords (@alassek)
17+
This may affect your code in places where attributes are passed as hashes.
18+
Places like
19+
20+
```ruby
21+
user_attributes = { name: 'Jane' }
22+
Factory[:user, user_attributes]
23+
```
24+
must be updated to
25+
```ruby
26+
user_attributes = { name: 'Jane' }
27+
Factory[:user, **user_attributes]
28+
```
29+
- Upgraded to the latest versions of dry-rb dependencies, compatible with rom 5.3 (@flash-gordon)
30+
- Support for Faker 1.x was dropped (@alassek)
31+
32+
33+
[Compare v0.10.2...v0.11.0](https://github.com/rom-rb/rom-factory/compare/v0.10.2...v0.11.0)
34+
335
## 0.10.2 2020-04-05
436

537

0 commit comments

Comments
 (0)