This repository was archived by the owner on Feb 16, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +11
-10
lines changed Expand file tree Collapse file tree 6 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ dist: bionic
2
2
language : php
3
3
4
4
php :
5
- - 7.2
6
- - 7.3
7
5
- 7.4
8
6
9
7
env :
Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
This project adheres to [ Semantic Versioning] ( CONTRIBUTING.md ) .
6
6
7
7
8
+ ## [ v4.1.0] - 2020-06-15
9
+ - Fix for Events namespace
10
+ - Drop using rinvex/laravel-cacheable from core packages for more flexibility
11
+ - Caching should be handled on the application layer, not enforced from the core packages
12
+ - Drop PHP 7.2 & 7.3 support from travis
13
+
8
14
## [ v4.0.6] - 2020-05-30
9
15
- Remove default indent size config
10
16
- Add strip_tags validation rule to string fields
@@ -114,7 +120,7 @@ This project adheres to [Semantic Versioning](CONTRIBUTING.md).
114
120
## v0.0.1 - 2017-04-07
115
121
- Tag first release
116
122
117
- [ v4.0.6 ] : https://github.com/rinvex/laravel-addresses/compare/v4.0.5 ...v4.0.6
123
+ [ v4.1.0 ] : https://github.com/rinvex/laravel-addresses/compare/v4.0.6 ...v4.1.0
118
124
[ v4.0.5 ] : https://github.com/rinvex/laravel-addresses/compare/v4.0.4...v4.0.5
119
125
[ v4.0.4 ] : https://github.com/rinvex/laravel-addresses/compare/v4.0.3...v4.0.4
120
126
[ v4.0.3 ] : https://github.com/rinvex/laravel-addresses/compare/v4.0.2...v4.0.3
Original file line number Diff line number Diff line change 52
52
"illuminate/database" : " ^7.0.0" ,
53
53
"illuminate/support" : " ^7.0.0" ,
54
54
"jackpopp/geodistance" : " ^1.2.0" ,
55
- "rinvex/laravel-cacheable" : " ^4.0.0" ,
56
55
"rinvex/countries" : " ^7.0.0" ,
57
56
"rinvex/laravel-support" : " ^4.0.0"
58
57
},
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace Rinvex \Testimonials \Events ;
5
+ namespace Rinvex \Addresses \Events ;
6
6
7
7
use Illuminate \Broadcasting \Channel ;
8
8
use Rinvex \Addresses \Models \Address ;
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace Rinvex \Testimonials \Events ;
5
+ namespace Rinvex \Addresses \Events ;
6
6
7
7
use Illuminate \Broadcasting \Channel ;
8
8
use Rinvex \Addresses \Models \Address ;
Original file line number Diff line number Diff line change 5
5
namespace Rinvex \Addresses \Models ;
6
6
7
7
use Illuminate \Database \Eloquent \Model ;
8
- use Rinvex \Cacheable \CacheableEloquent ;
9
8
use Illuminate \Database \Eloquent \Builder ;
9
+ use Rinvex \Addresses \Events \AddressSaved ;
10
10
use Jackpopp \GeoDistance \GeoDistanceTrait ;
11
11
use Rinvex \Support \Traits \ValidatingTrait ;
12
- use Rinvex \Testimonials \Events \AddressSaved ;
13
- use Rinvex \Testimonials \Events \AddressDeleted ;
12
+ use Rinvex \Addresses \Events \AddressDeleted ;
14
13
use Illuminate \Database \Eloquent \Relations \MorphTo ;
15
14
16
15
/**
@@ -70,7 +69,6 @@ class Address extends Model
70
69
{
71
70
use ValidatingTrait;
72
71
use GeoDistanceTrait;
73
- use CacheableEloquent;
74
72
75
73
/**
76
74
* {@inheritdoc}
You can’t perform that action at this time.
0 commit comments