v5.2.0 (released 2021-09-21):
- Updated the migration for the
short_urls
table so thaturl_key
is now unique anddestination_url
is now a TEXT field rather than varchar. #80 - Added the ability to configure the alphabet used for generating keys with
hashids
. #77
v5.1.0 (released 2021-06-11):
- Migrated the CI tests to be run using GitHub Actions instead of Travis CI. #67
v5.0.0 (released 2021-04-18):
- Removed the automatic loading of the migrations and made it mandatory for them to be published. #61
v4.3.0 (released 2021-04-12):
- Updated the private fields in the
Builder
class to be protected. #62
v4.2.0 (released 2021-01-26):
- Added support for PHP 8. #58
v4.1.1 (released 2020-09-16):
- Updated the Travis CI config to run the tests on the correct Laravel versions. #55
4.1.0 (released 2020-09-08):
- Added support for Laravel 8. #54
4.0.0 (released 2020-07-07):
- Added a new config value that can be used to toggle the config validation. #50
- Removed support for Laravel 5.8. #51
- Removed the
ShortURLBuilder
facade that was deprecated in v3.0.0. #52 - Documentation updates. #48
3.0.0 (released 2020-04-11):
- Added the functionality to set activation and deactivation times for the short URLs. #46
- Deprecated the
ShortURLBuilder
facade in favour of a newerShortURL
facade. #45
2.3.1 (released 2020-03-11):
- Updated the documentation to mention that the BC Math or GMP PHP extensions are required. #43
2.3.0 (released 2020-03-05):
- Added support for Laravel 7. #38
- Updated the asset publishing tags from
config
andmigrations
toshort-url-config
andshort-url-migrations
. #39
2.2.0 (released 2020-02-27):
- Added a default option to enforce HTTPS on destination URLs as a config option. #36
2.1.0 (released 2020-02-19):
- Added the key salt (used for generating random URL keys) as a config option. #32
2.0.0 (released 2020-02-14):
- Added the functionality to track a visitor's referer URL.
- Added the functionality to track a user's device type.
- Added the functionality to explicitly set the tracking options on for each specific short URL. Previously, the options were set in the config and affected all new and existing short URLs.
- Added the functionality to explicitly set the HTTP status code for the redirect.
- Added a
ShortURLVisited
event that is dispatched when the short URL is used. - Added the
trackingEnabled()
andtrackingFields()
helper methods to theShortURL
model.
1.2.1 (released 2020-01-13):
- Fixed a bug that allowed multiple visits to a single-use URL if the URL's visit tracking was disabled. Pull Request #23
1.2.0 (released 2020-01-03):
-
Renamed the underlying facade class from
BuilderFacade
toShortURLBuilder
for consistency.Note: This isn't changing the name of the facade. It's just changing the underlying class name for if you want to use
use AshAllenDesign\ShortURL\Facades\ShortURLBuilder;
rather thanuse ShortURLBuilder;
. -
Added methods to the facade docblock. This will display the methods in the IDE's autocomplete.
1.1.0 (released 2020-01-03):
- Enforced a minimum length of 3 for the URL
key_length
that is specified in the config. - Included hashids/hasids as a dependency. This is now used for generating the random, unique URL keys.
- Updated documentation.
1.0.0 (released 2020-01-02):
- Release for production.
- Added a
ShortURLBuilder
facade. - Refactored folder structure to meet standards.
- Updated documentation (thanks @NathanGiesbrecht)
- Updated tests and Travis CI configuration for PHP 7.4 testing.
0.0.1 (pre-release):
- Initial work and pre-release testing.