Skip to content

Commit 6c51c67

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents c5acdab + d9e08b8 commit 6c51c67

File tree

2 files changed

+18
-15
lines changed

2 files changed

+18
-15
lines changed

CHANGELOG.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -6,52 +6,52 @@ All notable changes to `laravel-casters` will be documented in this file
66

77
### What's Changed
88

9-
- Bump actions/checkout from 2 to 3 by @dependabot in https://github.com/rawilk/laravel-casters/pull/2
10-
- Bump creyD/prettier_action from 3.0 to 4.2 by @dependabot in https://github.com/rawilk/laravel-casters/pull/3
11-
- Update syntax to take advantage of newer PHP features
9+
- Bump actions/checkout from 2 to 3 by @dependabot in https://github.com/rawilk/laravel-casters/pull/2
10+
- Bump creyD/prettier_action from 3.0 to 4.2 by @dependabot in https://github.com/rawilk/laravel-casters/pull/3
11+
- Update syntax to take advantage of newer PHP features
1212

1313
### Breaking Changes
1414

15-
- Drop PHP 7.4 support
16-
- Drop PHP 8.0 support
17-
- Drop Laravel 8.0 support
18-
- Remove Encrypted cast in favor of native laravel encryption cast
15+
- Drop PHP 7.4 support
16+
- Drop PHP 8.0 support
17+
- Drop Laravel 8.0 support
18+
- Remove Encrypted cast in favor of native laravel encryption cast
1919

2020
**Full Changelog**: https://github.com/rawilk/laravel-casters/compare/v2.0.2...v3.0.0
2121

2222
## 2.0.2 - 2022-04-06
2323

2424
### Fixed
2525

26-
- Make `Rawilk\LaravelCasters\Support\Str` compatible with base `Str` class by making `squish` method signature compatible with parent signature
26+
- Make `Rawilk\LaravelCasters\Support\Str` compatible with base `Str` class by making `squish` method signature compatible with parent signature
2727

2828
## 2.0.1 - 2022-02-23
2929

3030
### Updated
3131

32-
- Add Laravel 9.* support
33-
- Add PHP 8.1 support
32+
- Add Laravel 9.\* support
33+
- Add PHP 8.1 support
3434

3535
### Fixed
3636

37-
- Handle null values correctly on Password cast in Laravel 9
37+
- Handle null values correctly on Password cast in Laravel 9
3838

3939
## 2.0.0 - 2020-11-12
4040

4141
### Breaking Changes
4242

43-
- Drop support for Laravel 7
43+
- Drop support for Laravel 7
4444

4545
### Added
4646

47-
- Add a name cast
47+
- Add a name cast
4848

4949
## 1.0.1 - 2020-09-21
5050

5151
### Fixed
5252

53-
- Fix bug in password cast causing passwords to be re-hashed - [#1](https://github.com/rawilk/laravel-casters/issues/1).
53+
- Fix bug in password cast causing passwords to be re-hashed - [#1](https://github.com/rawilk/laravel-casters/issues/1).
5454

5555
## 1.0.0 - 2020-09-18
5656

57-
- initial release
57+
- initial release

docs/upgrade.md

+3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@ sort: 4
66
## From v2 to v3
77

88
### PHP Version
9+
910
v3 now requires PHP 8.1 or greater, so your environment will need to be at least that version.
1011

1112
### Laravel Version
13+
1214
v3 now requires Laravel 9.0 or greater, so you will need to ensure your project is upgraded to at least version 9.0.
1315

1416
### Encrypted Cast
17+
1518
v3 Dropped the Encrypted cast in favor of using the encryption casts that come with Laravel now. You will need to make sure you changed any references from `Encrypted::class` to `'encrypted'` in your models.

0 commit comments

Comments
 (0)