Skip to content

Commit 90181dd

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents dc62daa + 14794f6 commit 90181dd

File tree

1 file changed

+44
-26
lines changed

1 file changed

+44
-26
lines changed

CHANGELOG.md

Lines changed: 44 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -2,97 +2,115 @@
22

33
All notable changes to `laravel-settings` will be documented in this file
44

5+
## v3.0.0 - 2023-09-29
6+
7+
### What's Changed
8+
9+
- Add team/multi-tenancy support by @rawilk in https://github.com/rawilk/laravel-settings/pull/28
10+
- Remove Laravel 8.x support
11+
- Remove Laravel 9.x support
12+
- Add PHP 8.3 support
13+
- Update interface method signatures for `Driver` and `Setting`
14+
- Add support for custom key and context serializers by @rawilk in https://github.com/rawilk/laravel-settings/pull/30
15+
- Add custom value serializer support by @rawilk in https://github.com/rawilk/laravel-settings/pull/31
16+
- Fix typo in `isFalse` check - https://github.com/rawilk/laravel-settings/pull/34/commits/84989d4803e9ee99cfbd84925f8dae783c81b55e
17+
- Add support to fetch/flush all settings by @rawilk in https://github.com/rawilk/laravel-settings/pull/32
18+
- Dispatch events for certain operations in settings service @rawilk in https://github.com/rawilk/laravel-settings/pull/33
19+
- Add ability to get the cache key for a given setting key - https://github.com/rawilk/laravel-settings/pull/34/commits/91fbd874f653b50f37f092379ee997bf2642e368
20+
21+
**Full Changelog**: https://github.com/rawilk/laravel-settings/compare/v2.2.2...v3.0.0
22+
523
## v2.2.2 - 2023-03-20
624

725
### What's Changed
826

9-
- Bump creyD/prettier_action from 4.2 to 4.3 by @dependabot in https://github.com/rawilk/laravel-settings/pull/15
10-
- Bump aglipanci/laravel-pint-action from 2.1.0 to 2.2.0 by @dependabot in https://github.com/rawilk/laravel-settings/pull/17
11-
- Add Laravel 10.x Support by @rawilk in https://github.com/rawilk/laravel-settings/pull/18
12-
- Add Php 8.2 compatibility by @rawilk in https://github.com/rawilk/laravel-settings/pull/19
27+
- Bump creyD/prettier_action from 4.2 to 4.3 by @dependabot in https://github.com/rawilk/laravel-settings/pull/15
28+
- Bump aglipanci/laravel-pint-action from 2.1.0 to 2.2.0 by @dependabot in https://github.com/rawilk/laravel-settings/pull/17
29+
- Add Laravel 10.x Support by @rawilk in https://github.com/rawilk/laravel-settings/pull/18
30+
- Add Php 8.2 compatibility by @rawilk in https://github.com/rawilk/laravel-settings/pull/19
1331

1432
**Full Changelog**: https://github.com/rawilk/laravel-settings/compare/v2.2.1...v2.2.2
1533

1634
## v2.2.1 - 2023-02-07
1735

1836
### What's Changed
1937

20-
- Bump dependabot/fetch-metadata from 1.3.5 to 1.3.6 by @dependabot in https://github.com/rawilk/laravel-settings/pull/13
21-
- Bump aglipanci/laravel-pint-action from 1.0.0 to 2.1.0 by @dependabot in https://github.com/rawilk/laravel-settings/pull/10
22-
- Improve internal handling of the Context object on Settings service class
23-
- Prevent decryption errors when checking if a value should be persisted or not on `set()`
38+
- Bump dependabot/fetch-metadata from 1.3.5 to 1.3.6 by @dependabot in https://github.com/rawilk/laravel-settings/pull/13
39+
- Bump aglipanci/laravel-pint-action from 1.0.0 to 2.1.0 by @dependabot in https://github.com/rawilk/laravel-settings/pull/10
40+
- Improve internal handling of the Context object on Settings service class
41+
- Prevent decryption errors when checking if a value should be persisted or not on `set()`
2442

2543
**Full Changelog**: https://github.com/rawilk/laravel-settings/compare/v2.2.0...v2.2.1
2644

2745
## v2.2.0 - 2022-12-07
2846

2947
### What's Changed
3048

31-
- Allow cache to be temporarily disabled (via `temporarilyDisableCache()`)
49+
- Allow cache to be temporarily disabled (via `temporarilyDisableCache()`)
3250

3351
**Full Changelog**: https://github.com/rawilk/laravel-settings/compare/v2.1.1...v2.2.0
3452

3553
## v2.1.1 - 2022-12-06
3654

3755
### What's Changed
3856

39-
- Bump dependabot/fetch-metadata from 1.3.4 to 1.3.5 by @dependabot in https://github.com/rawilk/laravel-settings/pull/8
40-
- Bump actions/checkout from 2 to 3 by @dependabot in https://github.com/rawilk/laravel-settings/pull/9
41-
- Prevent non-strings from being unserialized or decrypted
57+
- Bump dependabot/fetch-metadata from 1.3.4 to 1.3.5 by @dependabot in https://github.com/rawilk/laravel-settings/pull/8
58+
- Bump actions/checkout from 2 to 3 by @dependabot in https://github.com/rawilk/laravel-settings/pull/9
59+
- Prevent non-strings from being unserialized or decrypted
4260

4361
**Full Changelog**: https://github.com/rawilk/laravel-settings/compare/v2.1.0...v2.1.1
4462

4563
## v2.1.0 - 2022-11-01
4664

4765
### Added
4866

49-
- Feature: model settings by @rawilk in https://github.com/rawilk/laravel-settings/pull/7
67+
- Feature: model settings by @rawilk in https://github.com/rawilk/laravel-settings/pull/7
5068

5169
### Changed
5270

53-
- Composer: Update doctrine/dbal requirement from ^2.12 to ^3.5 by @dependabot in https://github.com/rawilk/laravel-settings/pull/5
54-
- Bump creyD/prettier_action from 3.0 to 4.2 by @dependabot in https://github.com/rawilk/laravel-settings/pull/6
55-
- Drop official PHP 8.0 support
71+
- Composer: Update doctrine/dbal requirement from ^2.12 to ^3.5 by @dependabot in https://github.com/rawilk/laravel-settings/pull/5
72+
- Bump creyD/prettier_action from 3.0 to 4.2 by @dependabot in https://github.com/rawilk/laravel-settings/pull/6
73+
- Drop official PHP 8.0 support
5674

5775
**Full Changelog**: https://github.com/rawilk/laravel-settings/compare/v2.0.1...v2.1.0
5876

5977
## 2.0.1 - 2022-02-23
6078

6179
### Updated
6280

63-
- Add support for Laravel 9.\*
64-
- Add support for PHP 8.1
81+
- Add support for Laravel 9.*
82+
- Add support for PHP 8.1
6583

6684
## 2.0.0 - 2020-12-01
6785

6886
### Breaking Changes
6987

70-
- Drop support for Laravel v6 and v7
71-
- Drop support for php 7
88+
- Drop support for Laravel v6 and v7
89+
- Drop support for php 7
7290

7391
### Updated
7492

75-
- Add support for php 8
76-
- Update some of code base to use php 8 features
93+
- Add support for php 8
94+
- Update some of code base to use php 8 features
7795

7896
## 1.0.3 - 2020-10-26
7997

8098
### Fixed
8199

82-
- Fix bug with context being reset when saving ([#3](https://github.com/rawilk/laravel-settings/issues/3))
100+
- Fix bug with context being reset when saving ([#3](https://github.com/rawilk/laravel-settings/issues/3))
83101

84102
## 1.0.2 - 2020-10-09
85103

86104
### Fixed
87105

88-
- Wrap decrypting values in a try/catch to help prevent decryption errors when caching is used - [#2](https://github.com/rawilk/laravel-settings/issues/2)
106+
- Wrap decrypting values in a try/catch to help prevent decryption errors when caching is used - [#2](https://github.com/rawilk/laravel-settings/issues/2)
89107

90108
## 1.0.1 - 2020-09-09
91109

92110
### Added
93111

94-
- Add support for Laravel 8
112+
- Add support for Laravel 8
95113

96114
## 1.0.0 - 2020-08-02
97115

98-
- initial release
116+
- initial release

0 commit comments

Comments
 (0)