Created by: dependabot-preview[bot]
Bumps faker from 1.9.6 to 2.1.0.
Release notes
Sourced from faker's releases.
v2.1.0
v2.1.0 (2019-31-07)
Bug/Fixes
- [PR #1675](https://github-redirect.dependabot.com/stympy/faker/pull/1675) Fix off-by-one error when formatting month names @jutonz
This change required a quick release because it's a breaking issue. Every place where
I18n.l()was used began to display the wrong date, causing test suite to fail and frustration for developers.Release Faker 2.0
v2.0 (2019-31-07)
Important Note:
Version 2 has several
breaking changes. We replaced positional arguments with keyword arguments and the list below contains all the changed methods:... (truncated)
Faker::Books::Dune.quote(character = nil)becomesFaker::Books::Dune.quote(character: nil)Faker::Books::Dune.saying(source = nil)becomesFaker::Books::Dune.saying(source: nil)Faker::Books::Lovecraft.fhtagn(number_of = nil)becomesFaker::Books::Lovecraft.fhtagn(number: nil)Faker::Books::Lovecraft.paragraph(sentence_count = nil, random_sentences_to_add = nil)becomesFaker::Books::Lovecraft.paragraph(sentence_count: nil, random_sentences_to_add: nil)Faker::Books::Lovecraft.paragraph_by_chars(chars = nil)becomesFaker::Books::Lovecraft.paragraph_by_chars(characters: nil)Faker::Books::Lovecraft.paragraphs(paragraph_count = nil)becomesFaker::Books::Lovecraft.paragraphs(number: nil)Faker::Books::Lovecraft.sentence(word_count = nil, random_words_to_add = nil)becomesFaker::Books::Lovecraft.sentence(word_count: nil, random_words_to_add: nil)Faker::Books::Lovecraft.sentences(sentence_count = nil)becomesFaker::Books::Lovecraft.sentences(number: nil)Faker::Books::Lovecraft.words(num = nil, spaces_allowed = nil)becomesFaker::Books::Lovecraft.words(number: nil, spaces_allowed: nil)Faker::Address.city(options = nil)becomesFaker::Address.city(options: nil)Faker::Address.postcode(state_abbreviation = nil)becomesFaker::Address.postcode(state_abbreviation: nil)Faker::Address.street_address(include_secondary = nil)becomesFaker::Address.street_address(include_secondary: nil)Faker::Address.zip(state_abbreviation = nil)becomesFaker::Address.zip(state_abbreviation: nil)Faker::Address.zip_code(state_abbreviation = nil)becomesFaker::Address.zip_code(state_abbreviation: nil)Faker::Alphanumeric.alpha(char_count = nil)becomesFaker::Alphanumeric.alpha(number: nil)Faker::Alphanumeric.alphanumeric(char_count = nil)becomesFaker::Alphanumeric.alphanumeric(number: nil)Faker::Avatar.image(slug = nil, size = nil, format = nil, set = nil, bgset = nil)becomesFaker::Avatar.image(slug: nil, size: nil, format: nil, set: nil, bgset: nil)Faker::Bank.account_number(digits = nil)becomesFaker::Bank.account_number(digits: nil)Faker::Bank.iban(country_code = nil)becomesFaker::Bank.iban(country_code: nil)Faker::ChileRut.full_rut(min_rut = nil, fixed = nil)becomesFaker::ChileRut.full_rut(min_rut: nil, fixed: nil)Faker::ChileRut.rut(min_rut = nil, fixed = nil)becomesFaker::ChileRut.rut(min_rut: nil, fixed: nil)Faker::Code.ean(base = nil)becomesFaker::Code.ean(base: nil)Faker::Code.isbn(base = nil)becomesFaker::Code.isbn(base: nil)Faker::Code.nric(min_age = nil, max_age = nil)becomesFaker::Code.nric(min_age: nil, max_age: nil)Faker::Commerce.department(max = nil, fixed_amount = nil)becomesFaker::Commerce.department(max: nil, fixed_amount: nil)Faker::Commerce.price(range = nil, as_string = nil)becomesFaker::Commerce.price(range: nil, as_string: nil)Faker::Commerce.promotion_code(digits = nil)becomesFaker::Commerce.promotion_code(digits: nil)Faker::Company.polish_register_of_national_economy(length = nil)becomesFaker::Company.polish_register_of_national_economy(length: nil)Faker::CryptoCoin.acronym(coin = nil)becomesFaker::CryptoCoin.acronym(coin: nil)Faker::CryptoCoin.coin_name(coin = nil)becomesFaker::CryptoCoin.coin_name(coin: nil)Faker::CryptoCoin.url_logo(coin = nil)becomesFaker::CryptoCoin.url_logo(coin: nil)Faker::Date.backward(days = nil)becomesFaker::Date.backward(days: nil)Faker::Date.between(from, to)becomesFaker::Date.between(from:, to:)Faker::Date.between_except(from, to, excepted)becomesFaker::Date.between_except(from:, to:, excepted:)Faker::Date.birthday(min_age = nil, max_age = nil)becomesFaker::Date.birthday(min_age: nil, max_age: nil)Faker::Date.forward(days = nil)becomesFaker::Date.forward(days: nil)
Changelog
Sourced from faker's changelog.
v2.1.0 (2019-31-07)
Bug/Fixes
- [PR #1675](https://github-redirect.dependabot.com/stympy/faker/pull/1675) Fix off-by-one error when formatting month names @jutonz
This change required a quick release because it's a breaking issue. Every place where I18n.l() was used began to display the wrong date, causing test suite to fail.
v2.0 (2019-31-07)
Important Note:
Version 2 has several
breaking changes. We replaced positional arguments with keyword arguments and the list below contains all the changed methods:... (truncated)
Faker::Books::Dune.quote(character = nil)becomesFaker::Books::Dune.quote(character: nil)Faker::Books::Dune.saying(source = nil)becomesFaker::Books::Dune.saying(source: nil)Faker::Books::Lovecraft.fhtagn(number_of = nil)becomesFaker::Books::Lovecraft.fhtagn(number: nil)Faker::Books::Lovecraft.paragraph(sentence_count = nil, random_sentences_to_add = nil)becomesFaker::Books::Lovecraft.paragraph(sentence_count: nil, random_sentences_to_add: nil)Faker::Books::Lovecraft.paragraph_by_chars(chars = nil)becomesFaker::Books::Lovecraft.paragraph_by_chars(characters: nil)Faker::Books::Lovecraft.paragraphs(paragraph_count = nil)becomesFaker::Books::Lovecraft.paragraphs(number: nil)Faker::Books::Lovecraft.sentence(word_count = nil, random_words_to_add = nil)becomesFaker::Books::Lovecraft.sentence(word_count: nil, random_words_to_add: nil)Faker::Books::Lovecraft.sentences(sentence_count = nil)becomesFaker::Books::Lovecraft.sentences(number: nil)Faker::Books::Lovecraft.words(num = nil, spaces_allowed = nil)becomesFaker::Books::Lovecraft.words(number: nil, spaces_allowed: nil)Faker::Address.city(options = nil)becomesFaker::Address.city(options: nil)Faker::Address.postcode(state_abbreviation = nil)becomesFaker::Address.postcode(state_abbreviation: nil)Faker::Address.street_address(include_secondary = nil)becomesFaker::Address.street_address(include_secondary: nil)Faker::Address.zip(state_abbreviation = nil)becomesFaker::Address.zip(state_abbreviation: nil)Faker::Address.zip_code(state_abbreviation = nil)becomesFaker::Address.zip_code(state_abbreviation: nil)Faker::Alphanumeric.alpha(char_count = nil)becomesFaker::Alphanumeric.alpha(number: nil)Faker::Alphanumeric.alphanumeric(char_count = nil)becomesFaker::Alphanumeric.alphanumeric(number: nil)Faker::Avatar.image(slug = nil, size = nil, format = nil, set = nil, bgset = nil)becomesFaker::Avatar.image(slug: nil, size: nil, format: nil, set: nil, bgset: nil)Faker::Bank.account_number(digits = nil)becomesFaker::Bank.account_number(digits: nil)Faker::Bank.iban(country_code = nil)becomesFaker::Bank.iban(country_code: nil)Faker::ChileRut.full_rut(min_rut = nil, fixed = nil)becomesFaker::ChileRut.full_rut(min_rut: nil, fixed: nil)Faker::ChileRut.rut(min_rut = nil, fixed = nil)becomesFaker::ChileRut.rut(min_rut: nil, fixed: nil)Faker::Code.ean(base = nil)becomesFaker::Code.ean(base: nil)Faker::Code.isbn(base = nil)becomesFaker::Code.isbn(base: nil)Faker::Code.nric(min_age = nil, max_age = nil)becomesFaker::Code.nric(min_age: nil, max_age: nil)Faker::Commerce.department(max = nil, fixed_amount = nil)becomesFaker::Commerce.department(max: nil, fixed_amount: nil)Faker::Commerce.price(range = nil, as_string = nil)becomesFaker::Commerce.price(range: nil, as_string: nil)Faker::Commerce.promotion_code(digits = nil)becomesFaker::Commerce.promotion_code(digits: nil)Faker::Company.polish_register_of_national_economy(length = nil)becomesFaker::Company.polish_register_of_national_economy(length: nil)Faker::CryptoCoin.acronym(coin = nil)becomesFaker::CryptoCoin.acronym(coin: nil)Faker::CryptoCoin.coin_name(coin = nil)becomesFaker::CryptoCoin.coin_name(coin: nil)Faker::CryptoCoin.url_logo(coin = nil)becomesFaker::CryptoCoin.url_logo(coin: nil)Faker::Date.backward(days = nil)becomesFaker::Date.backward(days: nil)Faker::Date.between(from, to)becomesFaker::Date.between(from:, to:)Faker::Date.between_except(from, to, excepted)becomesFaker::Date.between_except(from:, to:, excepted:)Faker::Date.birthday(min_age = nil, max_age = nil)becomesFaker::Date.birthday(min_age: nil, max_age: nil)Faker::Date.forward(days = nil)becomesFaker::Date.forward(days: nil)
Commits
-
0deec17Update CHANGELOG -
c45c5dbBump to 2.1.0 -
7379480Fix off-by-one error when formatting month names (#1675) -
48a5d20Update CHANGELOG.md -
cb4c73fUpdate CHANGELOG.md -
ed1ef70Update CHANGELOG.md -
91341d2Bump version to 2.0 -
ddace70Update CHANGELOG.md -
020effaMerge pull request #1651 from stympy/v2 -
2dd4cc6CHANGELOG - add changed methods list - Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot ignore this [patch|minor|major] versionwill close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it). To ignore the version in this PR you can just close it -
@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) -
@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language -
@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language -
@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language -
@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language -
@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Finally, you can contact us by mentioning @dependabot.