File tree 1 file changed +32
-0
lines changed
1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 1
1
<!-- - DO NOT EDIT THIS FILE - IT'S AUTOMATICALLY GENERATED VIA DEVTOOLS --->
2
2
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
+
3
35
## 0.10.2 2020-04-05
4
36
5
37
You can’t perform that action at this time.
0 commit comments