All Versions
116
Latest Version
Avg Release Cycle
35 days
Latest Release
92 days ago
Changelog History
Page 8
Changelog History
Page 8
-
v11.0.4
๐ Release Date: 2017-03-14
- โ Added
.RuleFor(x.Item, "foo")
. Eliminates ceremony off =>
for simple values.
- โ Added
-
v11.0.3
๐ Release Date: 2017-03-13
- โ Added range option to
Sentence
.
- โ Added range option to
-
v11.0.2
๐ Release Date: 2017-02-23
- ๐ New Feature: Allow implicit and explicit type casts:
Order o = orderFaker
andvar o = (Order)orderFaker
without having to callorderFaker.Generate()
.
- ๐ New Feature: Allow implicit and explicit type casts:
-
v11.0.1
๐ Release Date: 2017-02-21
- โ Added
IndexGlobal
alias forUniqueIndex
. - โ Added
IndexFaker
for uniqueness in Faker[T] lifetime. - โ Added
IndexVariable
a developer controlled index convenience variable. - โ Added
Database
dataset tof => f.Database
facade. - ๐ Fixed Issue 57 - Avoid unexpected behavior with Parent-Child generators using
UniqueIndex
. - โ Removed some
Internet.Avatars
that returned 404. - Reached feature/data parity with
faker.js
v4.1.0.
- โ Added
-
v10.0.1
๐ Release Date: 2017-02-18
- ๐ป
Internet.UserAgent
- Generates browser user agent strings. Internet.Password
- Generates user passwords using regex.- โ Added
az
/Azerbaijani locale. - Disallow
/
character inSystem.FileName
. Helpers.Slugify
properly replaces spaces with-
dashes.Lorem.Slug
slugs some lorem text.Finance.Iban
- Generates International Bank Account Numbers (IBAN).Finance.Bic
- Generates Bank Identifier Code (BIC) codes.Random.WeightedRandom
- Returns a weighted random distribution of items.- ๐ Allow
https://
in random images. Images.DataUri
- Generates "data:image/svg" URI with width and height.Database
data set for generating column, collation, type stuff.
- ๐ป
-
v9.0.2
๐ Release Date: 2017-01-19
- ๐ Bug: Issue 54: Work around for Visual Studio IntelliSense.
-
v9.0.1
๐ Release Date: 2017-01-18
- ๐ New Feature: Bogus is now a signed assembly; PublicToken: fa1bb3f3f218129a
-
v8.0.4
๐ Release Date: 2017-01-16
- ๐ New Feature: Added
PickRandom(IEnumerable)
overload. Thanks joleharkes.
- ๐ New Feature: Added
-
v8.0.3
๐ Release Date: 2016-12-20
- ๐ New Feature:
RuleForType(typeof(string))
allows bulk/default for a particular type on a class. Useful for very large classes with a specific type.
- ๐ New Feature:
-
v8.0.2
๐ Release Date: 2016-12-07
- ๐ Issue 46. Fixed threading deadlock situation with static faker initialization. Thanks Mpdreamz.
- โ Added
f => f.Generate(count, ()=> f.Phone.PhoneNumber())
helper for better fluency when filling properties withList
ofT
.