Skip to content

Faker v0.3.0

Choose a tag to compare

@neomatrixcode neomatrixcode released this 24 Apr 17:11
· 46 commits to master since this release
2c1f210

New features

  • random_lowercase_letter()
  • random_uppercase_letter()
  • random_special_caracteres()
  • Faker.user_profile(Faker.user_name(),Faker.first_name(),rand(["M","F"]),Faker.address(),Faker.free_email(),Faker.date(),Faker.job(),Faker.company(),Faker.address(),string(Faker.latitude(), Faker.longitude()),string(rand(["A", "B", "AB", "O"]),rand(["+", "-"])),Faker.url()), thanks @yakir12
  • blood_type()
  • unicode(), thanks @yakir12

Updates features

  • Update testing to Julia version 1.5, thanks @rfourquet
  • Added static typing
  • Faker.date_time("Y-m-d HH:MM:SS") accept pattern
  • Faker.date_time_between("Y-m-d HH:MM:SS") accept pattern
  • Faker.date_time_this_century("Y-m-d HH:MM:SS") accept pattern
  • Faker.date_time_this_decade("Y-m-d HH:MM:SS") accept pattern
  • Faker.date_time_this_year("Y-m-d HH:MM:SS") accept pattern
  • Faker.date_time_this_month("Y-m-d HH:MM:SS") accept pattern
  • Faker.address((Faker.street_address(),Faker.city(),Faker.state_abbr(),Faker.postcode())) accept tuple of functions
  • safe_email((Faker.user_name(),"@ example.", Faker.domain_suffix())) accept tuple of data
  • free_email((Faker.user_name(),"@",Faker.free_email_domain())) accept tuple of data
  • Faker.geo_coordinate(center="None", radius=0.001)) to Faker.geo_coordinate(center=0, radius=0.001))
  • Faker.uri_path("None") to Faker.uri_path(deep=0)
  • Faker.domain_name((Faker.domain_word(),".",Faker.domain_suffix())) accept tuple of data
  • Faker.company_email((Faker.user_name(),"@",Faker.domain_name())) accept tuple of data
  • Faker.locale(items::Tuple=(language_code(),"_",country_code())) accept tuple of data
  • Faker.password(longitud=10, special_caracteres=true, digitos=true, upper_case=true, lower_case=true) add parameters configuration