Skip to content
This repository was archived by the owner on Feb 16, 2022. It is now read-only.

Commit d46fad1

Browse files
committed
Merge branch 'release/v4.1.0'
2 parents dbc9626 + 97e3236 commit d46fad1

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ dist: bionic
22
language: php
33

44
php:
5-
- 7.2
6-
- 7.3
75
- 7.4
86

97
env:

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
This project adheres to [Semantic Versioning](CONTRIBUTING.md).
66

77

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+
814
## [v4.0.6] - 2020-05-30
915
- Remove default indent size config
1016
- Add strip_tags validation rule to string fields
@@ -114,7 +120,7 @@ This project adheres to [Semantic Versioning](CONTRIBUTING.md).
114120
## v0.0.1 - 2017-04-07
115121
- Tag first release
116122

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
118124
[v4.0.5]: https://github.com/rinvex/laravel-addresses/compare/v4.0.4...v4.0.5
119125
[v4.0.4]: https://github.com/rinvex/laravel-addresses/compare/v4.0.3...v4.0.4
120126
[v4.0.3]: https://github.com/rinvex/laravel-addresses/compare/v4.0.2...v4.0.3

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252
"illuminate/database": "^7.0.0",
5353
"illuminate/support": "^7.0.0",
5454
"jackpopp/geodistance": "^1.2.0",
55-
"rinvex/laravel-cacheable": "^4.0.0",
5655
"rinvex/countries": "^7.0.0",
5756
"rinvex/laravel-support": "^4.0.0"
5857
},

src/Events/AddressDeleted.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Rinvex\Testimonials\Events;
5+
namespace Rinvex\Addresses\Events;
66

77
use Illuminate\Broadcasting\Channel;
88
use Rinvex\Addresses\Models\Address;

src/Events/AddressSaved.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Rinvex\Testimonials\Events;
5+
namespace Rinvex\Addresses\Events;
66

77
use Illuminate\Broadcasting\Channel;
88
use Rinvex\Addresses\Models\Address;

src/Models/Address.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@
55
namespace Rinvex\Addresses\Models;
66

77
use Illuminate\Database\Eloquent\Model;
8-
use Rinvex\Cacheable\CacheableEloquent;
98
use Illuminate\Database\Eloquent\Builder;
9+
use Rinvex\Addresses\Events\AddressSaved;
1010
use Jackpopp\GeoDistance\GeoDistanceTrait;
1111
use Rinvex\Support\Traits\ValidatingTrait;
12-
use Rinvex\Testimonials\Events\AddressSaved;
13-
use Rinvex\Testimonials\Events\AddressDeleted;
12+
use Rinvex\Addresses\Events\AddressDeleted;
1413
use Illuminate\Database\Eloquent\Relations\MorphTo;
1514

1615
/**
@@ -70,7 +69,6 @@ class Address extends Model
7069
{
7170
use ValidatingTrait;
7271
use GeoDistanceTrait;
73-
use CacheableEloquent;
7472

7573
/**
7674
* {@inheritdoc}

0 commit comments

Comments
 (0)