Skip to content

Releases: awssat/laravel-visits

psql support

21 Feb 15:36
4dc4a0e

Choose a tag to compare

6.2.1

Merge pull request #104 from awssat/fix-postgres-compatibility-eager-…

Laravel 12 Support Release

14 Apr 11:58
ff9e034

Choose a tag to compare

Release Notes

  • Added support for Laravel 12
  • Fixed compatibility with Torann/GeoIP breaking changes

Important GeoIP Configuration Notice

Torann/GeoIP has made breaking changes removing auto-discovery. If you're experiencing the error "No GeoIP service is configured", please follow these steps:

  1. Publish the GeoIP configuration file:

    php artisan vendor:publish --provider="Torann\GeoIP\GeoIPServiceProvider" --tag=config
  2. Open config/geoip.php and set a default service:

       // Change from
       'service' => null,
       
       // To
       'service' => 'ipdata', // or any other service you prefer
  3. Configure your selected service with appropriate API keys as needed

  4. Register the GeoIP provider and alias in your config/app.php:

         'providers' => [
             // Other providers...
             \Torann\GeoIP\GeoIPServiceProvider::class,
         ],
         
         'aliases' => [
             // Other aliases...
             'GeoIP' => \Torann\GeoIP\Facades\GeoIP::class,
         ],

For more information on configuring GeoIP, please refer to the Torann/GeoIP documentation.

6.1.1 - Laravel 11 Support

07 Jul 22:57
8d6c165

Choose a tag to compare

Support for Laravel 11 + Carbon 3.

Please note that PHP 8.0 will no longer be supported in future releases as it has reached its end of life (EOL). Therefore, new releases of this package will only support Laravel versions that are compatible with PHP 8.1 or higher.

Full Changelog: 6.0.0...6.1.1

6.1.0 - Laravel 11 Support

06 Jul 22:30
aa18df2

Choose a tag to compare

  • Support for Laravel 11.

please note: PHP 8.0 will not be supported in any release after this, as it's reached its EOL. So new releases of this package will only support Laravel versions that supports PHP 8.1+

Full Changelog: 6.0.0...6.1.0

v6

30 Jul 04:07
03a5c7c

Choose a tag to compare

v6

breaking change release

config values changed make sure you change engine value in config to \Awssat\Visits\DataEngines\RedisEngine::class or \Awssat\Visits\DataEngines\EloquentEngine::class

Laravel 10 support

02 Mar 05:48
a334b15

Choose a tag to compare

Dropping old versions

4.1.0: Merge pull request #86 from AbdullahGhanem/master

03 Dec 02:00
6017484

Choose a tag to compare

Add new Two Methods for TopIds and LowIds

DB Engine changed in config

13 Aug 05:10

Choose a tag to compare

Because this a breaking change this a new major version

Laravel 9 support

17 Feb 10:48
7db3b73

Choose a tag to compare

Merge pull request #77 from KadonWills/master

Update 4_quick-start.md

3.0.2

24 Feb 17:45
08d925c

Choose a tag to compare

  • PHP 8 support
  • upgrade some deps.