Releases: dzmitry-duboyski/get-fake-user
Releases · dzmitry-duboyski/get-fake-user
v2.4.1
v2.4.0
v2.3.1
Done:
- Add replica badge to README.md
- Update keywords in
package.json
- Update documentation JSdoc for main function. Now, when hovering over a function, the tooltip more understadly displays what the function takes. Also added an example.
v2.3.0
Done:
- Add Spanish language
v2.2.1
Nothing of interest has been added to this release. Just decided to make changes to the demo and integrate a little with replit.
Done:
- Set up integration with replit for demo
- Refactoring
v2.2.0
Done:
- Add Ukrainian language support.
- Add instructions for adding new languages.
- Update documentation.
v2.1.0
Done:
- Fixed bug with password generation. Instead of a special character, the password contained the string
undefined
- Added support for an additional parameter
language
. With the language setting, you can choose in which language fields such asfirstName
andlastName
. By default language=en. Supported languages: English, Russian. To select a language, enter it in the following format language: 'en' or language: 'ru'. language: 'en' is optional, as it is the default.
v2.0.4
Done:
- Added the ability to select the gender for created users using the
gender
parameter. The following options are available for thegender
parameter:male
,female
,mix
. Themix
parameter can be omitted,mix
is set by default. - Updated the list with the names and surnames that are used when creating users:
- Added data for female.
- Updated surnames for males.
- The
gender
field has been added for the users being created. - For the future, the possibility of specifying the
language
for the first and last name of the created user has been implemented. But at the moment the first and last name are only available in English.
v2.0.1
Done
- Added the ability to get multiple users
- Updated README.md
- Refactoring
- Added code documentation
What has changed
Now the package returns a function and not an object, so in your code you need to add "( )" for the package to return the correct response.
Example:
const getfakeUser = require('get-fake-user')
console.log(getfakeUser())
v1.0.1
Done:
- add the creation of a fake user