Skip to content

Commit fde2f3c

Browse files
author
Stefanni Brasil
authoredJul 17, 2024··
Bump version to 3.4.2 (#2981)
1 parent 1400987 commit fde2f3c

File tree

3 files changed

+51
-2
lines changed

3 files changed

+51
-2
lines changed
 

‎CHANGELOG.md

+49
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,54 @@
11
# Changelog
22

3+
## [v3.4.2](https://github.com/faker-ruby/faker/tree/v3.4.2) (2024-07-16)
4+
5+
Happy July with a new faker-ruby release.
6+
7+
This version:
8+
9+
- introduces a breaking change for `Faker::NationalHealthService.british_number` (more details below)
10+
- adds translation for some generators
11+
- fixes bugs
12+
13+
### Breaking changes
14+
15+
The NHS sets aside a range of numbers from 999 000 0000 to 999 999 9999 for test purposes. The old range could
16+
produce NHS numbers that were in use by real patients in the UK/England and Wales. In this version, `Faker::NationalHealthService.british_number` uses the test range for creating NHS numbers rather than the previous 400 000 0010 to 499 999 9999 range.
17+
18+
Breaking change was introduced in "Add test range param to NHS numbers" by @neanias in https://github.com/faker-ruby/faker/pull/2947
19+
20+
### Improvements & Bug fixes
21+
22+
* Add Bank and Sport to Swedish locale by @twk-mn in https://github.com/faker-ruby/faker/pull/2961
23+
* docs: update with notes about validity for zips by @garrettgregor in https://github.com/faker-ruby/faker/pull/2963
24+
* `Faker::Games::Dota` missing quotes and new heroes by @arthurka-o in https://github.com/faker-ruby/faker/pull/2907
25+
* Add phone_number.country_code and address.full_address in locale sv by @larkro in https://github.com/faker-ruby/faker/pull/2965
26+
* Fix typo by @fynsta in https://github.com/faker-ruby/faker/pull/2968
27+
* fix: `Faker::Internet.username` should not generate duplicated punctuation by @thdaraujo in https://github.com/faker-ruby/faker/pull/2970
28+
* Update dog breed names for `en-US` locale by @mononoken in https://github.com/faker-ruby/faker/pull/2972
29+
* Add `Deprecator.skip_warning?` ability to silence deprecators on tests by @keshavbiswa in https://github.com/faker-ruby/faker/pull/2956
30+
31+
### Update local dependencies
32+
33+
* Bump timecop from 0.9.9 to 0.9.10 by @dependabot in https://github.com/faker-ruby/faker/pull/2969
34+
* Bump minitest from 5.23.1 to 5.24.1 by @dependabot in https://github.com/faker-ruby/faker/pull/2975
35+
* Bump bundler version to `2.4.22` by @thdaraujo in https://github.com/faker-ruby/faker/pull/2978
36+
* Bump rubocop from 1.64.1 to 1.65.0 by @dependabot in https://github.com/faker-ruby/faker/pull/2979
37+
* Bump rubocop-minitest from 0.35.0 to 0.35.1 by @dependabot in https://github.com/faker-ruby/faker/pull/2980
38+
39+
## New Contributors
40+
* @twk-mn made their first contribution in https://github.com/faker-ruby/faker/pull/2961
41+
* @neanias made their first contribution in https://github.com/faker-ruby/faker/pull/2947
42+
* @garrettgregor made their first contribution in https://github.com/faker-ruby/faker/pull/2963
43+
* @arthurka-o made their first contribution in https://github.com/faker-ruby/faker/pull/2907
44+
* @larkro made their first contribution in https://github.com/faker-ruby/faker/pull/2965
45+
* @fynsta made their first contribution in https://github.com/faker-ruby/faker/pull/2968
46+
* @mononoken made their first contribution in https://github.com/faker-ruby/faker/pull/2972
47+
48+
**Full Changelog**: https://github.com/faker-ruby/faker/compare/v.3.4.1...v3.4.2
49+
50+
---------------------------------
51+
352
## [v3.4.1](https://github.com/faker-ruby/faker/tree/v3.4.1) (2024-05-28)
453

554
### What's changed

‎Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
faker (3.4.1)
4+
faker (3.4.2)
55
i18n (>= 1.8.11, < 2)
66

77
GEM

‎lib/faker/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Faker # :nodoc:
4-
VERSION = '3.4.1'
4+
VERSION = '3.4.2'
55
end

0 commit comments

Comments
 (0)