All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.
- In previous versions, if there was not enough entropy on the system,
securerandomstring
would throw an exception. Now it will retry to generate a random string until it succeeds, or the call stack becomes full.
- alphanumeric option to generate alphanumeric characters only.
- New sync API was added. Like crypto.getRandomBytes(), it can throw an exception if the system is short on entropy. (#1, @markstos)
-
Async API now follows the Node.js convention of returning an error as the first argument to the callback. The error might be populated if the system runs out of entropy. (#2, @markstos)
-
urlsafe
option was removed. All strings are URL-safe now. (#4, @S2-, @markstos)