Bogus 7.1.1
A simple and sane data generator for populating objects that supports different locales. A delightful port of the famed faker.js and inspired by FluentValidation. Use it to create and load databases and UIs with mockup data. Get started by using Faker class or a DataSet directly.
No packages depend on Bogus.
## v7.1.1
* Roll-up Release for .NET Framework since last non-beta release.
* CoreCLR users please continue using latest beta release until CoreCLR is RTM.
## v7.1.1-beta-1
* Locale update
* Date.Recent(0) generates random times for current date between midnight and now.
* New `System` data set for generating fake file names and mime-types.
* Added `Date.Timespan` for random timespan values.
* Added `System.Semver` for random semantic versions.
* Added `System.Version` for random System.Version objects.
* Added `Internet.ExampleEmail` for simple @example.com email generation.
* Added `Finance.BitcoinAddress` for random bitcoin addresses.
* BREAKING: Fake "seeded" data generated by Bogus may be different from previous versions.
* WARN: Address.City may have changed in some random seeds
## v6.1.1
* Roll-up Release for .NET Framework since last non-beta release.
* CoreCLR users please continue using latest beta release until CoreCLR is RTM.
## v6.1.1-beta-1
* Fixed index out of bounds bug in faker.Random.Word().
* Commerce.Department output may have changed as a result of this fix.
## v5.1.1-beta-3
* Removed RuleFor(x = x.Prop, constantValue), was confusing the API.
* Added 0-arity RuleFor(x = x.Prop, () => someValue)
## v5.1.1-beta-2
* Make f.UniqueIndex as int for convenience.
* Use generic RuleFor(x = x.Prop, constantValue).
## v5.1.1-beta-1
* New RuleFor(x = x.Prop, constantValue)
* Support for Hashids.net: RuleFor(x = x.Id, f = f.Hashids.Encode())
* New f.UniqueIndex, useful for composing property values that require uniqueness.
## v5.0.1
* Roll-up Release for .NET Framework since v4.0.1.
* CoreCLR users please continue using latest beta release until CoreCLR is RTM.
## v5.0.1-beta-2
* JvanderStad PR15: Lazy load Person. Avoids extra Seed.Next calls that may interfere with seeded content.
* JvanderStad PR16: Better address generation. Respects locale address formats.
* Added "dotnet5.4" moniker support.
* BREAKING: Fake "seeded" data generated by Bogus may be different from previous versions.
## v4.0.1
* Roll-up Release for .NET Framework since v3.0.6.
* CoreCLR users please continue using latest beta release until CoreCLR is RTM.
## v4.0.1-beta-1
* Bogus - Feature parity with faker.js.
* System module added. Generate random file names and extensions.
* Randomizer - Added Uuid().
* Locales Updated: en_GB, sv, sk, de_CH, en.
* Locales Added: id_ID, el, lv.
* Prevent apostrophes in return value of Internet.DomainWords
* Added more parameters for Image data set.
* BREAKING API METHODS:
* Lorem - Better API methods: Seeded tests based on "content" will fail due to upgrade.
## v3.0.6
* Roll-up Release for .NET Framework since v3.0.5.
* CoreCLR users please continue using latest beta release until CoreCLR is RTM.
## v3.0.6-beta-1
* Issue #13: Fixed StrictMode to exclude private fields.
* New Feature: Ignore property or field in StrictMode: Faker[Order].Ignore(o => o.OrderId).
* CoreCLR users please continue using latest beta release until CoreCLR is RTM.
## v3.0.5
* Roll-up Release for .NET Framework since v3.0.4.
* CoreCLR users please continue using latest beta release until CoreCLR is RTM.
## v3.0.5-beta-4
* Issue #13: StrictMode() now ignores read-only properties.
* Newtonsoft.Json v8 compatibility.
* CoreCLR users please continue using latest beta release until CoreCLR is RTM.
## v3.0.5-beta-3
* Issue #12: Make Bogus thread-safe on Generate() and DataSets. Avoids threading issues in test runners.
* CoreCLR users please continue using latest beta release until CoreCLR is RTM.
## v3.0.5-beta-2
* CoreCLR support (CoreCLR users please continue using latest beta release until CoreCLR is RTM.).
## v3.0.4
* Issue 10: Make Bogus work with fields also, not just properties. Fixes LINQPad issues.
## v3.0.3
* PR 9: quantumplation - Fixed typo in Lorem.Sentance() -> Lorem.Sentence()
## v3.0.2
* Generate US: SSN - Social Security Numbers.
* Generate Canada: SIN - Social Insurance Numbers.
* Generate Brazil: Cadastro de Pessoas Fisicas - CPF Numbers.
* Generate Finland: Henkilotunnus - Person ID numbers
* Generate Denmark: Det Centrale Personregister - Person ID numbers.
* Allow exclude values on Randomizer.Enum.
* Randomizer.Replace accepts '*' replace with letter or digit.
* Added Lorem.Letter(num).
* Can switch locale on Name: f.Name["en"].LastName()
## v3.0.1
* Added debug symbols to symbolsource.org.
* PR#6: Fixed lastname and empty list exception -salixzs
* Switch to semantic versioning at par with FakerJS.
## v3.0.0.4
* Adding generators: Date.Month(), Date.Weekday()
* Sentences using lexically correct "A foo bar."
* Added Spanish Mexico (es_MX) locale.
## v3.0.0.3
* Issue #2: Use latest Newtonsoft.Json 7.0.0.0 -Mpdreamz
## v3.0.0.2
* Includes Ireland (English) locale.
## v3.0.0.1
* Migrated to new FakerJS datafile format. Build system uses gulp file to directly import FakerJS locales.
* Faker.Parse() can now tokenize and replace handlebar formats.
* Added Faker.Hacker and Faker.Company properties.
* Added Custom separator on Lorem.Paragraph.
* Added Canada (French) (fr_CA) locale.
* Added Ukrainian (uk) locale.
* Added Ireland (en_IE) locale.
* Added Internet.Mac for mac addresses.
* Support for Canadian post/zip codes.
* Exposed Name.JobTitle, Name.JobDescriptor, Name.JobArea, Name.JobType
* Exposed Address.CountryCode
* Replace symbols in domain words so it generates output for all locales
* Support for gender names, but only for locales that support it. Russian('ru') but not English('en').
* Corrected abbreviation for Yukon to reflect its official abbreviation of "YT".
## v2.1.5.2:
* Fixed instantiating a Person in a non-US locale. -antongeorgiev
## v2.1.5.1:
* Added Georgian, Turkish, and Chinese (Taiwan) locales.
* Added Name.JobTitle()
* Added Internet.Url() and Internet.Protocol().
* Sync'd up with faker.js v2.1.5.
## v2.1.4.2:
* Fixed bug in Faker.Person and Faker[T] that generates new person context after every new object.
* Added support for .FinishWith() for post-processing that runs after all rules but before returning new instance.
* Added Newtonsoft.Json as NuGet dependency.
## v2.1.4.1:
* Minor changes, mostly XML doc update and Person moved from DataSet to Bogus namespace.
## v2.1.4.0:
* Initial port from faker.js 2.1.4.
.NET Framework 4.0
- Newtonsoft.Json (>= 8.0.2)
Version | Downloads | Last updated |
---|---|---|
35.6.1 | 5 | 09/03/2024 |
35.6.0 | 4 | 07/21/2024 |
35.5.1 | 7 | 05/27/2024 |
35.5.0 | 7 | 03/13/2024 |
35.4.1 | 10 | 03/13/2024 |
35.4.0 | 7 | 01/19/2024 |
35.3.2 | 9 | 01/19/2024 |
35.3.1 | 7 | 01/19/2024 |
35.3.0 | 12 | 01/04/2024 |
35.2.0 | 10 | 12/31/2023 |
35.0.1 | 6 | 12/12/2023 |
34.0.2 | 1,856 | 07/21/2022 |
34.0.1 | 30 | 09/04/2022 |
33.1.1 | 2,047 | 06/27/2022 |
33.0.2 | 32 | 09/08/2022 |
33.0.1 | 42 | 08/24/2022 |
32.1.1 | 34 | 09/03/2022 |
32.0.2 | 57 | 09/07/2022 |
32.0.1 | 44 | 09/08/2022 |
31.0.3 | 24 | 09/08/2022 |
30.0.4 | 19 | 08/24/2022 |
30.0.1-beta-4 | 19 | 09/07/2022 |
30.0.1-beta-3 | 43 | 09/07/2022 |
30.0.1-beta-2 | 24 | 09/08/2022 |
30.0.1-beta-1 | 28 | 08/21/2022 |
29.0.2 | 54 | 09/08/2022 |
29.0.1 | 19 | 08/21/2022 |
28.4.4 | 25 | 09/07/2022 |
28.4.3 | 23 | 09/08/2022 |
28.4.2 | 26 | 09/03/2022 |
28.4.1 | 36 | 09/01/2022 |
28.3.2 | 17 | 09/08/2022 |
28.3.1 | 35 | 08/01/2022 |
28.2.1 | 30 | 09/07/2022 |
28.1.1 | 31 | 08/21/2022 |
28.0.3 | 40 | 09/07/2022 |
28.0.2 | 17 | 08/21/2022 |
28.0.1 | 17 | 09/08/2022 |
27.0.1 | 34 | 08/11/2022 |
26.0.2 | 40 | 08/23/2022 |
26.0.1 | 46 | 09/07/2022 |
25.0.4 | 23 | 08/01/2022 |
25.0.3 | 17 | 09/07/2022 |
25.0.2 | 23 | 08/20/2022 |
25.0.1 | 35 | 07/31/2022 |
24.3.1 | 48 | 08/11/2022 |
24.3.0 | 21 | 08/24/2022 |
24.2.0 | 25 | 07/21/2022 |
23.0.2 | 16 | 08/25/2022 |
22.3.2 | 40 | 09/03/2022 |
22.3.1 | 48 | 09/02/2022 |
22.2.1 | 34 | 09/02/2022 |
22.1.4 | 42 | 08/11/2022 |
22.1.3 | 17 | 09/03/2022 |
22.1.2 | 18 | 09/07/2022 |
22.1.1 | 32 | 08/24/2022 |
22.0.9 | 37 | 08/24/2022 |
22.0.8 | 31 | 09/03/2022 |
22.0.7 | 20 | 08/20/2022 |
22.0.6 | 30 | 08/11/2022 |
22.0.5 | 18 | 09/07/2022 |
22.0.3 | 48 | 09/02/2022 |
22.0.2 | 52 | 08/24/2022 |
22.0.1 | 26 | 09/07/2022 |
21.0.5 | 16 | 08/23/2022 |
21.0.4 | 18 | 09/08/2022 |
21.0.2 | 23 | 08/24/2022 |
20.0.2 | 36 | 09/08/2022 |
20.0.1 | 17 | 09/02/2022 |
19.0.2 | 22 | 09/09/2022 |
18.0.2 | 55 | 09/02/2022 |
18.0.1 | 22 | 09/02/2022 |
17.0.1 | 35 | 09/08/2022 |
16.0.3 | 29 | 09/01/2022 |
16.0.2 | 39 | 09/08/2022 |
15.0.7 | 36 | 09/09/2022 |
15.0.6 | 39 | 08/26/2022 |
15.0.5 | 26 | 09/08/2022 |
15.0.3 | 23 | 08/11/2022 |
15.0.1 | 18 | 09/07/2022 |
12.0.1 | 29 | 09/02/2022 |
11.0.5 | 46 | 09/07/2022 |
11.0.4 | 34 | 09/07/2022 |
11.0.3 | 19 | 09/08/2022 |
11.0.2 | 32 | 08/24/2022 |
11.0.1 | 17 | 09/08/2022 |
10.0.1 | 47 | 09/02/2022 |
9.0.2 | 17 | 08/21/2022 |
9.0.1 | 21 | 09/07/2022 |
8.0.4 | 36 | 09/10/2022 |
8.0.3 | 49 | 09/10/2022 |
8.0.2 | 24 | 08/11/2022 |
8.0.1 | 21 | 08/11/2022 |
8.0.1-beta-1 | 22 | 08/21/2022 |
7.1.7 | 17 | 09/02/2022 |
7.1.6 | 36 | 09/08/2022 |
7.1.5 | 28 | 08/24/2022 |
7.1.4 | 45 | 08/23/2022 |
7.1.3 | 24 | 07/31/2022 |
7.1.3-beta-1 | 42 | 09/07/2022 |
7.1.2 | 18 | 07/21/2022 |
7.1.2-beta-1 | 18 | 08/26/2022 |
7.1.1 | 40 | 09/08/2022 |
7.1.1-beta-1 | 42 | 09/02/2022 |
6.1.1 | 30 | 08/22/2022 |
6.1.1-beta-1 | 36 | 08/11/2022 |
5.1.1-beta-3 | 25 | 08/25/2022 |
5.1.1-beta-2 | 47 | 09/08/2022 |
5.1.1-beta-1 | 31 | 08/20/2022 |
5.0.1 | 23 | 09/08/2022 |
5.0.1-beta-2 | 49 | 09/02/2022 |
4.0.1 | 36 | 09/08/2022 |
4.0.1-beta-1 | 50 | 09/02/2022 |
3.0.6 | 16 | 09/02/2022 |
3.0.6-beta-1 | 46 | 09/08/2022 |
3.0.5 | 52 | 08/26/2022 |
3.0.5-beta-4 | 39 | 09/04/2022 |
3.0.5-beta-3 | 29 | 08/24/2022 |
3.0.5-beta-2 | 44 | 09/08/2022 |
3.0.4 | 33 | 08/23/2022 |
3.0.3 | 35 | 08/21/2022 |
3.0.2 | 47 | 08/11/2022 |
3.0.1 | 21 | 08/22/2022 |
3.0.0.3 | 26 | 09/08/2022 |
3.0.0.2 | 0 | 07/12/2015 |
3.0.0.1 | 0 | 07/12/2015 |
2.1.5.2 | 0 | 06/22/2015 |
2.1.5.1 | 0 | 06/11/2015 |
2.1.4.2 | 0 | 06/11/2015 |
2.1.4.1 | 47 | 07/31/2022 |
2.1.4 | 30 | 09/07/2022 |