Skip to content

v5.2.0

Compare
Choose a tag to compare
@ash-jc-allen ash-jc-allen released this 21 Sep 10:10
· 356 commits to master since this release
04ac76a

Added

Added the ability to configure the hashids alphabet (#77)

You can now specify an alphabet field in your short-url.php config file so that you can specify the range of characters that the Hashids package will use when generating a key.

Huge thanks to @Victor-emil for this contribution!

Changed

Updated the database migrations for the short_urls table (#80)

The initial migration that creates the short_urls table has now been updated to make some small improvements. The destination_url field has now been changed from a varchar field to a TEXT field to allow for longer destination URLs to be stored. The url_key field is now unique to prevent any race conditions that allowed duplicated keys to be stored in the database.

Huge thanks to @Victor-emil for this contribution too!