joatuapp / joatu-v2

The JoatU application, version 2. Written in Ruby on Rails.
https://alpha.joatu.org
GNU General Public License v3.0
27 stars 5 forks source link

Bump faker from 1.9.1 to 2.1.0 #238

Closed dependabot-preview[bot] closed 5 years ago

dependabot-preview[bot] commented 5 years ago

Bumps faker from 1.9.1 to 2.1.0.

Release notes *Sourced from [faker's releases](https://github.com/stympy/faker/releases).* > ## v2.1.0 > ## [v2.1.0](https://github.com/stympy/faker/tree/2.1.0) (2019-31-07) > > ## Bug/Fixes > - [PR [#1675](https://github-redirect.dependabot.com/stympy/faker/issues/1675)](https://github-redirect.dependabot.com/stympy/faker/pull/1675) Fix off-by-one error when formatting month names [@​jutonz](https://github.com/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](https://github.com/stympy/faker/tree/2.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: > - `Faker::Books::Dune.quote(character = nil)` becomes `Faker::Books::Dune.quote(character: nil)` > - `Faker::Books::Dune.saying(source = nil)` becomes `Faker::Books::Dune.saying(source: nil)` > - `Faker::Books::Lovecraft.fhtagn(number_of = nil)` becomes `Faker::Books::Lovecraft.fhtagn(number: nil)` > - `Faker::Books::Lovecraft.paragraph(sentence_count = nil, random_sentences_to_add = nil)` becomes `Faker::Books::Lovecraft.paragraph(sentence_count: nil, random_sentences_to_add: nil)` > - `Faker::Books::Lovecraft.paragraph_by_chars(chars = nil)` becomes `Faker::Books::Lovecraft.paragraph_by_chars(characters: nil)` > - `Faker::Books::Lovecraft.paragraphs(paragraph_count = nil)` becomes `Faker::Books::Lovecraft.paragraphs(number: nil)` > - `Faker::Books::Lovecraft.sentence(word_count = nil, random_words_to_add = nil)` becomes `Faker::Books::Lovecraft.sentence(word_count: nil, random_words_to_add: nil)` > - `Faker::Books::Lovecraft.sentences(sentence_count = nil)` becomes `Faker::Books::Lovecraft.sentences(number: nil)` > - `Faker::Books::Lovecraft.words(num = nil, spaces_allowed = nil)` becomes `Faker::Books::Lovecraft.words(number: nil, spaces_allowed: nil)` > - `Faker::Address.city(options = nil)` becomes `Faker::Address.city(options: nil)` > - `Faker::Address.postcode(state_abbreviation = nil)` becomes `Faker::Address.postcode(state_abbreviation: nil)` > - `Faker::Address.street_address(include_secondary = nil)` becomes `Faker::Address.street_address(include_secondary: nil)` > - `Faker::Address.zip(state_abbreviation = nil)` becomes `Faker::Address.zip(state_abbreviation: nil)` > - `Faker::Address.zip_code(state_abbreviation = nil)` becomes `Faker::Address.zip_code(state_abbreviation: nil)` > - `Faker::Alphanumeric.alpha(char_count = nil)` becomes `Faker::Alphanumeric.alpha(number: nil)` > - `Faker::Alphanumeric.alphanumeric(char_count = nil)` becomes `Faker::Alphanumeric.alphanumeric(number: nil)` > - `Faker::Avatar.image(slug = nil, size = nil, format = nil, set = nil, bgset = nil)` becomes `Faker::Avatar.image(slug: nil, size: nil, format: nil, set: nil, bgset: nil)` > - `Faker::Bank.account_number(digits = nil)` becomes `Faker::Bank.account_number(digits: nil)` > - `Faker::Bank.iban(country_code = nil)` becomes `Faker::Bank.iban(country_code: nil)` > - `Faker::ChileRut.full_rut(min_rut = nil, fixed = nil)` becomes `Faker::ChileRut.full_rut(min_rut: nil, fixed: nil)` > - `Faker::ChileRut.rut(min_rut = nil, fixed = nil)` becomes `Faker::ChileRut.rut(min_rut: nil, fixed: nil)` > - `Faker::Code.ean(base = nil)` becomes `Faker::Code.ean(base: nil)` > - `Faker::Code.isbn(base = nil)` becomes `Faker::Code.isbn(base: nil)` > - `Faker::Code.nric(min_age = nil, max_age = nil)` becomes `Faker::Code.nric(min_age: nil, max_age: nil)` > - `Faker::Commerce.department(max = nil, fixed_amount = nil)` becomes `Faker::Commerce.department(max: nil, fixed_amount: nil)` > - `Faker::Commerce.price(range = nil, as_string = nil)` becomes `Faker::Commerce.price(range: nil, as_string: nil)` > - `Faker::Commerce.promotion_code(digits = nil)` becomes `Faker::Commerce.promotion_code(digits: nil)` > - `Faker::Company.polish_register_of_national_economy(length = nil)` becomes `Faker::Company.polish_register_of_national_economy(length: nil)` > - `Faker::CryptoCoin.acronym(coin = nil)` becomes `Faker::CryptoCoin.acronym(coin: nil)` > - `Faker::CryptoCoin.coin_name(coin = nil)` becomes `Faker::CryptoCoin.coin_name(coin: nil)` > - `Faker::CryptoCoin.url_logo(coin = nil)` becomes `Faker::CryptoCoin.url_logo(coin: nil)` > - `Faker::Date.backward(days = nil)` becomes `Faker::Date.backward(days: nil)` > - `Faker::Date.between(from, to)` becomes `Faker::Date.between(from:, to:)` > - `Faker::Date.between_except(from, to, excepted)` becomes `Faker::Date.between_except(from:, to:, excepted:)` > - `Faker::Date.birthday(min_age = nil, max_age = nil)` becomes `Faker::Date.birthday(min_age: nil, max_age: nil)` > - `Faker::Date.forward(days = nil)` becomes `Faker::Date.forward(days: nil)` > ... (truncated)
Changelog *Sourced from [faker's changelog](https://github.com/stympy/faker/blob/master/CHANGELOG.md).* > ## [v2.1.0](https://github.com/stympy/faker/tree/2.1.0) (2019-31-07) > > ## Bug/Fixes > - [PR [#1675](https://github-redirect.dependabot.com/stympy/faker/issues/1675)](https://github-redirect.dependabot.com/stympy/faker/pull/1675) Fix off-by-one error when formatting month names [@​jutonz](https://github.com/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](https://github.com/stympy/faker/tree/2.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: > - `Faker::Books::Dune.quote(character = nil)` becomes `Faker::Books::Dune.quote(character: nil)` > - `Faker::Books::Dune.saying(source = nil)` becomes `Faker::Books::Dune.saying(source: nil)` > - `Faker::Books::Lovecraft.fhtagn(number_of = nil)` becomes `Faker::Books::Lovecraft.fhtagn(number: nil)` > - `Faker::Books::Lovecraft.paragraph(sentence_count = nil, random_sentences_to_add = nil)` becomes `Faker::Books::Lovecraft.paragraph(sentence_count: nil, random_sentences_to_add: nil)` > - `Faker::Books::Lovecraft.paragraph_by_chars(chars = nil)` becomes `Faker::Books::Lovecraft.paragraph_by_chars(characters: nil)` > - `Faker::Books::Lovecraft.paragraphs(paragraph_count = nil)` becomes `Faker::Books::Lovecraft.paragraphs(number: nil)` > - `Faker::Books::Lovecraft.sentence(word_count = nil, random_words_to_add = nil)` becomes `Faker::Books::Lovecraft.sentence(word_count: nil, random_words_to_add: nil)` > - `Faker::Books::Lovecraft.sentences(sentence_count = nil)` becomes `Faker::Books::Lovecraft.sentences(number: nil)` > - `Faker::Books::Lovecraft.words(num = nil, spaces_allowed = nil)` becomes `Faker::Books::Lovecraft.words(number: nil, spaces_allowed: nil)` > - `Faker::Address.city(options = nil)` becomes `Faker::Address.city(options: nil)` > - `Faker::Address.postcode(state_abbreviation = nil)` becomes `Faker::Address.postcode(state_abbreviation: nil)` > - `Faker::Address.street_address(include_secondary = nil)` becomes `Faker::Address.street_address(include_secondary: nil)` > - `Faker::Address.zip(state_abbreviation = nil)` becomes `Faker::Address.zip(state_abbreviation: nil)` > - `Faker::Address.zip_code(state_abbreviation = nil)` becomes `Faker::Address.zip_code(state_abbreviation: nil)` > - `Faker::Alphanumeric.alpha(char_count = nil)` becomes `Faker::Alphanumeric.alpha(number: nil)` > - `Faker::Alphanumeric.alphanumeric(char_count = nil)` becomes `Faker::Alphanumeric.alphanumeric(number: nil)` > - `Faker::Avatar.image(slug = nil, size = nil, format = nil, set = nil, bgset = nil)` becomes `Faker::Avatar.image(slug: nil, size: nil, format: nil, set: nil, bgset: nil)` > - `Faker::Bank.account_number(digits = nil)` becomes `Faker::Bank.account_number(digits: nil)` > - `Faker::Bank.iban(country_code = nil)` becomes `Faker::Bank.iban(country_code: nil)` > - `Faker::ChileRut.full_rut(min_rut = nil, fixed = nil)` becomes `Faker::ChileRut.full_rut(min_rut: nil, fixed: nil)` > - `Faker::ChileRut.rut(min_rut = nil, fixed = nil)` becomes `Faker::ChileRut.rut(min_rut: nil, fixed: nil)` > - `Faker::Code.ean(base = nil)` becomes `Faker::Code.ean(base: nil)` > - `Faker::Code.isbn(base = nil)` becomes `Faker::Code.isbn(base: nil)` > - `Faker::Code.nric(min_age = nil, max_age = nil)` becomes `Faker::Code.nric(min_age: nil, max_age: nil)` > - `Faker::Commerce.department(max = nil, fixed_amount = nil)` becomes `Faker::Commerce.department(max: nil, fixed_amount: nil)` > - `Faker::Commerce.price(range = nil, as_string = nil)` becomes `Faker::Commerce.price(range: nil, as_string: nil)` > - `Faker::Commerce.promotion_code(digits = nil)` becomes `Faker::Commerce.promotion_code(digits: nil)` > - `Faker::Company.polish_register_of_national_economy(length = nil)` becomes `Faker::Company.polish_register_of_national_economy(length: nil)` > - `Faker::CryptoCoin.acronym(coin = nil)` becomes `Faker::CryptoCoin.acronym(coin: nil)` > - `Faker::CryptoCoin.coin_name(coin = nil)` becomes `Faker::CryptoCoin.coin_name(coin: nil)` > - `Faker::CryptoCoin.url_logo(coin = nil)` becomes `Faker::CryptoCoin.url_logo(coin: nil)` > - `Faker::Date.backward(days = nil)` becomes `Faker::Date.backward(days: nil)` > - `Faker::Date.between(from, to)` becomes `Faker::Date.between(from:, to:)` > - `Faker::Date.between_except(from, to, excepted)` becomes `Faker::Date.between_except(from:, to:, excepted:)` > - `Faker::Date.birthday(min_age = nil, max_age = nil)` becomes `Faker::Date.birthday(min_age: nil, max_age: nil)` > - `Faker::Date.forward(days = nil)` becomes `Faker::Date.forward(days: nil)` > ... (truncated)
Commits - [`0deec17`](https://github.com/stympy/faker/commit/0deec175348ca756082f65349c32e967ff8ef6c5) Update CHANGELOG - [`c45c5db`](https://github.com/stympy/faker/commit/c45c5db1fa3243f8d00c6fd7cb1b2c3ead831d13) Bump to 2.1.0 - [`7379480`](https://github.com/stympy/faker/commit/73794805ef79886e00234afd42d1614c2ea67bf2) Fix off-by-one error when formatting month names ([#1675](https://github-redirect.dependabot.com/stympy/faker/issues/1675)) - [`48a5d20`](https://github.com/stympy/faker/commit/48a5d20271cf18b26d9e4d75249c75a271934e3d) Update CHANGELOG.md - [`cb4c73f`](https://github.com/stympy/faker/commit/cb4c73f983f65389ce667f3af780b233871ffe8f) Update CHANGELOG.md - [`ed1ef70`](https://github.com/stympy/faker/commit/ed1ef707e272772ef70a1e838cb2f6863b22b48b) Update CHANGELOG.md - [`91341d2`](https://github.com/stympy/faker/commit/91341d2089badc0740ed47031f7b8272027b4a9d) Bump version to 2.0 - [`ddace70`](https://github.com/stympy/faker/commit/ddace70c97d7ffef0ffa0f44f720f213fb33ead4) Update CHANGELOG.md - [`020effa`](https://github.com/stympy/faker/commit/020effa0d37e344a60819a4f9dd78a9b01b1c56a) Merge pull request [#1651](https://github-redirect.dependabot.com/stympy/faker/issues/1651) from stympy/v2 - [`2dd4cc6`](https://github.com/stympy/faker/commit/2dd4cc64c02e22d0edb17f9b942a39886553268c) CHANGELOG - add changed methods list - Additional commits viewable in [compare view](https://github.com/stympy/faker/compare/v1.9.1...v2.1.0)


Dependabot compatibility score

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 rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will 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 dependency` will 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 labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will 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](https://app.dependabot.com): - Update frequency (including time of day and day of week) - 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.
dependabot-preview[bot] commented 5 years ago

Superseded by #241.