Skip to content

Commit

Permalink
Release notes for version 2.4.1.
Browse files Browse the repository at this point in the history
Fixes #1422
  • Loading branch information
bodiam authored and kingthorin committed Nov 2, 2024
1 parent f073184 commit 8c61c5b
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@ In the pom.xml, add the following fragment to the `dependencies` section:
<dependency>
<groupId>net.datafaker</groupId>
<artifactId>datafaker</artifactId>
<version>2.4.0</version>
<version>2.4.1</version>
</dependency>
```

For Gradle users, add the following to your build.gradle file.

```groovy
dependencies {
implementation 'net.datafaker:datafaker:2.4.0'
implementation 'net.datafaker:datafaker:2.4.1'
}
```

You can also use the snapshot version (`2.4.1-SNAPSHOT`), which automatically gets published
You can also use the snapshot version (`2.4.2-SNAPSHOT`), which automatically gets published
after every push to the main branch of this repository. Binary repository URL for snapshots download is
`https://s01.oss.sonatype.org/content/repositories/snapshots/`.

Expand Down
40 changes: 40 additions & 0 deletions docs/releases/2.4.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Datafaker 2.4.1 (2 November 2024)

"Bug fixes and various stability improvements"

## New Contributors

* @badoken made their first contribution in https://github.com/datafaker-net/datafaker/pull/1375
* @sann3 made their first contribution in https://github.com/datafaker-net/datafaker/pull/1378
* @senocak made their first contribution in https://github.com/datafaker-net/datafaker/pull/1389
* @shanjuren made their first contribution in https://github.com/datafaker-net/datafaker/pull/1402

## What's Changed

* 2.4.0 Documentation by @bodiam in https://github.com/datafaker-net/datafaker/pull/1363
* #1368 fix "Duplicate key error" when a custom faker has multiple methods with the same return type. by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1369
* Fix for K-pop artist lists: H.O.T., Fin.K.L, Sunmi, Stray Kids by @badoken in https://github.com/datafaker-net/datafaker/pull/1375
* Added initial support for GraalVM Native images. by @bodiam in https://github.com/datafaker-net/datafaker/pull/1376
* move India country-specific settings to file "_IN.yml" by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1379
* update usage of deprecated method in Kotlin test by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1382
* describe principles of languages/countries to CONTRIBUTING guide by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1383
* CONTRIBUTING address review comments by @kingthorin in https://github.com/datafaker-net/datafaker/pull/1384
* #1306 fix non-thread-safe usages of CopyOnWriteMap by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1381
* Adding support for Tamil language by @sann3 in https://github.com/datafaker-net/datafaker/pull/1378
* Fixup for Tamil language by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1385
* Extended emoji provider with vehicles by @badoken in https://github.com/datafaker-net/datafaker/pull/1391
* Turkish fields refactored by @senocak in https://github.com/datafaker-net/datafaker/pull/1389
* University name extension with places + testNoDuplications improvement by @badoken in https://github.com/datafaker-net/datafaker/pull/1394
* #1394 add Estonian and Latvian universities by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1396
* #1386 fix nextInt and nextLong with extreme boundaries by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1388
* add missing @Override annotations by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1397
* Add places from Greece for University provider by @gvrettos in https://github.com/datafaker-net/datafaker/pull/1399
* Add greek translations for Ancient provider by @gvrettos in https://github.com/datafaker-net/datafaker/pull/1404
* Added input validation to prevent mistakes in version number. by @bodiam in https://github.com/datafaker-net/datafaker/pull/1406
* Removed base64 decoding of GPG signing key. by @bodiam in https://github.com/datafaker-net/datafaker/pull/1407
* fix generate sql will be truncate when quote char in word by @shanjuren in https://github.com/datafaker-net/datafaker/pull/1402
* Fix text in version validation. by @bodiam in https://github.com/datafaker-net/datafaker/pull/1408

## Providers added

See https://www.datafaker.net/documentation/providers/
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Datafaker 2.4.1 (SNAPSHOT)

# Datafaker 2.4.2 (SNAPSHOT)

## New Contributors

Expand Down
7 changes: 4 additions & 3 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ plugins:
# Customization
extra:
datafaker:
version: 2.4.0
snapshot: 2.4-1-SNAPSHOT
version: 2.4.1
snapshot: 2.4-2-SNAPSHOT

# Page tree
nav:
Expand All @@ -103,7 +103,7 @@ nav:
- Performance:
- Datafaker 1.4.0: documentation/performance140.md
- Datafaker 1.7.0: documentation/performance170.md
- Javadoc: 'https://s01.oss.sonatype.org/service/local/repositories/releases/archive/net/datafaker/datafaker/2.4.0/datafaker-2.4.0-javadoc.jar/!/index.html'
- Javadoc: 'https://s01.oss.sonatype.org/service/local/repositories/releases/archive/net/datafaker/datafaker/2.4.1/datafaker-2.4.1-javadoc.jar/!/index.html'
- Contributing: documentation/contributing.md
- First time contributor: documentation/first-time-contributor.md
- License: documentation/license.md
Expand All @@ -112,6 +112,7 @@ nav:
# - How to upgrade: upgrade.md
- Releases:
- 2.4.1-SNAPSHOT: releases/2.4.1-SNAPSHOT.md
- 2.4.1: releases/2.4.1.md
- 2.4.0: releases/2.4.0.md
- 2.3.1: releases/2.3.1.md
- 2.3.0: releases/2.3.0.md
Expand Down

0 comments on commit 8c61c5b

Please sign in to comment.