Skip to content

Commit 0240ff6

Browse files
committed
feat(sdk): updated dart and flutter sdk minimum versions
1 parent 768e341 commit 0240ff6

36 files changed

+262
-182
lines changed

.github/workflows/dart-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
matrix:
2828
os: ['ubuntu-latest']
2929
channel: ['stable']
30-
flutter_version: ['3.16.5']
30+
flutter_version: ['3.19.6']
3131

3232
runs-on: ${{ matrix.os }}
3333

.github/workflows/dart-coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
matrix:
1818
os: ['ubuntu-latest']
1919
channel: ['stable']
20-
flutter_version: ['3.16.5']
20+
flutter_version: ['3.19.6']
2121

2222
runs-on: ${{ matrix.os }}
2323

packages/stash/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 5.2.0
2+
3+
- **BREAKING CHANGE**: Changed minimum dart sdk version
4+
- chore: Updated dependencies
5+
16
## 5.1.1
27

38
- **CHORE**: Added a contributor
@@ -25,7 +30,7 @@
2530

2631
## 5.0.0
2732

28-
- **BREAKING CHANGE**: Changed minimum sdk version
33+
- **BREAKING CHANGE**: Changed minimum dart sdk version
2934
- chore: Updated dependencies
3035

3136

packages/stash/pubspec.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: stash
2-
version: 5.1.1
2+
version: 5.2.0
33
description: >-
44
Stash is a key-value store abstraction with plain and cache driven semantics
55
and support for a pluggable backend architecture.
@@ -8,16 +8,16 @@ repository: https://github.com/ivoleitao/stash
88
issue_tracker: https://github.com/ivoleitao/stash/issues
99

1010
environment:
11-
sdk: '>=3.2.0 <4.0.0'
11+
sdk: '>=3.3.0 <4.0.0'
1212

1313
dependencies:
1414
# Flutter shared dependencies
15-
meta: ^1.10.0
15+
meta: ^1.11.0
1616
clock: ^1.1.1
1717
async: ^2.11.0
1818
# Other dependencies
1919
equatable: ^2.0.5
20-
uuid: ^4.2.2
20+
uuid: ^4.4.0
2121
dev_dependencies:
2222
# Flutter shared dependencies
2323
test: ^1.24.9

packages/stash_cbl/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 5.2.0
2+
3+
- **BREAKING CHANGE**: Changed minimum dart sdk version
4+
- chore: Updated dependencies
5+
16
## 5.1.2
27

38
- **FIX**: Deployment dependency error on stash_test
@@ -27,7 +32,7 @@
2732

2833
## 5.0.0
2934

30-
- **BREAKING CHANGE**: Changed minimum sdk version
35+
- **BREAKING CHANGE**: Changed minimum dart sdk version
3136
- chore: Updated dependencies
3237

3338
## 4.6.3

packages/stash_cbl/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: stash_cbl
2-
version: 5.1.2
2+
version: 5.2.0
33
description: >-
44
Couchbase Lite storage extension for the stash API. Provides support to store
55
vaults and caches in a Couchbase Lite database.
@@ -8,11 +8,11 @@ repository: https://github.com/ivoleitao/stash
88
issue_tracker: https://github.com/ivoleitao/stash/issues
99

1010
environment:
11-
sdk: '>=3.2.0 <4.0.0'
11+
sdk: '>=3.3.0 <4.0.0'
1212

1313
dependencies:
1414
# Flutter shared dependencies
15-
path: ^1.8.3
15+
path: ^1.9.0
1616
# Other dependencies
1717
cbl: ^2.2.2
1818
stash: ^5.1.1

packages/stash_dio/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 5.2.0
2+
3+
- **BREAKING CHANGE**: Changed minimum dart sdk version
4+
- chore: Updated dependencies
5+
16
## 5.1.2
27

38
- **FIX**: Deployment dependency error on stash_test

packages/stash_dio/pubspec.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: stash_dio
2-
version: 5.1.2
2+
version: 5.2.0
33
description: >-
44
Dio extension for the stash API. Provides an interceptor that uses
55
stash as a caching layer for Dio
@@ -8,19 +8,19 @@ repository: https://github.com/ivoleitao/stash
88
issue_tracker: https://github.com/ivoleitao/stash/issues
99

1010
environment:
11-
sdk: '>=3.2.0 <4.0.0'
11+
sdk: '>=3.3.0 <4.0.0'
1212

1313
dependencies:
1414
equatable: ^2.0.5
1515
http_parser: ^4.0.2
1616
crypto: ^3.0.3
17-
dio: ^5.4.0
17+
dio: ^5.4.3+1
1818
stash: ^5.1.1
1919
dev_dependencies:
2020
# Flutter shared dependencies
2121
test: ^1.24.9
2222
# Other dependencies
2323
lints: ^3.0.0
24-
mocktail: ^1.0.2
24+
mocktail: ^1.0.3
2525
stash_memory: ^5.1.2
2626
stash_file: ^5.1.2

packages/stash_file/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 5.2.0
2+
3+
- **BREAKING CHANGE**: Changed minimum dart sdk version
4+
- chore: Updated dependencies
5+
16
## 5.1.2
27

38
- **FIX**: Deployment dependency error on stash_test
@@ -28,7 +33,7 @@
2833

2934
## 5.0.0
3035

31-
- **BREAKING CHANGE**: Changed minimum sdk version
36+
- **BREAKING CHANGE**: Changed minimum dart sdk version
3237
- chore: Updated dependencies
3338

3439
## 4.5.3

packages/stash_file/pubspec.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: stash_file
2-
version: 5.1.2
2+
version: 5.2.0
33
description: >-
44
File storage extension for the stash API. Provides support to store vaults
55
and caches in the local file system in binary format using the msgpack json format
@@ -8,12 +8,12 @@ repository: https://github.com/ivoleitao/stash
88
issue_tracker: https://github.com/ivoleitao/stash/issues
99

1010
environment:
11-
sdk: '>=3.2.0 <4.0.0'
11+
sdk: '>=3.3.0 <4.0.0'
1212

1313
dependencies:
1414
# Flutter shared dependencies
15-
meta: ^1.10.0
16-
path: ^1.8.3
15+
meta: ^1.11.0
16+
path: ^1.9.0
1717
# Other dependencies
1818
file: ^7.0.0
1919
stream_transform: ^2.1.0
@@ -24,4 +24,4 @@ dev_dependencies:
2424
# Other dependencies
2525
lints: ^3.0.0
2626
stash_test: ^5.1.1
27-
build_runner: ^2.4.8
27+
build_runner: ^2.4.9

packages/stash_hive/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 5.2.0
2+
3+
- **BREAKING CHANGE**: Changed minimum dart sdk version
4+
- chore: Updated dependencies
5+
16
## 5.1.2
27

38
- **FIX**: Deployment dependency error on stash_test
@@ -29,7 +34,7 @@
2934

3035
## 5.0.0
3136

32-
- **BREAKING CHANGE**: Changed minimum sdk version
37+
- **BREAKING CHANGE**: Changed minimum dart sdk version
3338
- chore: Updated dependencies
3439

3540
## 4.5.3

packages/stash_hive/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
name: stash_hive
2-
version: 5.1.2
2+
version: 5.2.0
33
description: >-
44
Hive storage extension for the stash caching API. Provides support to store vaults
55
and caches in the Hive database
66
homepage: https://github.com/ivoleitao/stash/tree/develop/packages/stash_hive
77

88
environment:
9-
sdk: '>=3.2.0 <4.0.0'
9+
sdk: '>=3.3.0 <4.0.0'
1010

1111
dependencies:
1212
# Flutter shared dependencies
13-
meta: ^1.10.0
13+
meta: ^1.11.0
1414
# Other dependencies
1515
hive: ^2.2.3
1616
universal_platform: ^1.0.0+1

packages/stash_isar/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 5.2.0
2+
3+
- **BREAKING CHANGE**: Changed minimum dart sdk version
4+
- chore: Updated dependencies
5+
16
## 5.1.2
27

38
- **FIX**: Deployment dependency error on stash_test
@@ -29,7 +34,7 @@
2934

3035
## 5.0.0
3136

32-
- **BREAKING CHANGE**: Changed minimum sdk version
37+
- **BREAKING CHANGE**: Changed minimum dart sdk version
3338
- chore: Updated dependencies
3439

3540
## 4.6.3

packages/stash_isar/pubspec.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: stash_isar
2-
version: 5.1.2
2+
version: 5.2.0
33
description: >-
44
Isar storage extension for the stash caching API. Provides support to store vaults
55
and caches in the Isar database
@@ -8,11 +8,11 @@ repository: https://github.com/ivoleitao/stash
88
issue_tracker: https://github.com/ivoleitao/stash/issues
99

1010
environment:
11-
sdk: '>=3.2.0 <4.0.0'
11+
sdk: '>=3.3.0 <4.0.0'
1212

1313
dependencies:
1414
# Flutter shared dependencies
15-
meta: ^1.10.0
15+
meta: ^1.11.0
1616
# Other dependencies
1717
isar: ^3.1.0+1
1818
stash: ^5.1.1
@@ -21,6 +21,6 @@ dev_dependencies:
2121
test: ^1.24.9
2222
# Other dependencies
2323
lints: ^3.0.0
24-
build_runner: ^2.4.8
24+
build_runner: ^2.4.9
2525
isar_generator: ^3.1.0+1
2626
stash_test: ^5.1.1

packages/stash_memory/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 5.2.0
2+
3+
- **BREAKING CHANGE**: Changed minimum dart sdk version
4+
- chore: Updated dependencies
5+
16
## 5.1.2
27

38
- **FIX**: Deployment dependency error on stash_test
@@ -27,7 +32,7 @@
2732

2833
## 5.0.0
2934

30-
- **BREAKING CHANGE**: Changed minimum sdk version
35+
- **BREAKING CHANGE**: Changed minimum dart sdk version
3136
- chore: Updated dependencies
3237

3338
## 4.5.3

packages/stash_memory/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: stash_memory
2-
version: 5.1.2
2+
version: 5.2.0
33
description: >-
44
Memory storage extension for the stash API. Provides support to store vaults
55
and caches in-memory
@@ -8,7 +8,7 @@ repository: https://github.com/ivoleitao/stash
88
issue_tracker: https://github.com/ivoleitao/stash/issues
99

1010
environment:
11-
sdk: '>=3.2.0 <4.0.0'
11+
sdk: '>=3.3.0 <4.0.0'
1212

1313
dependencies:
1414
stash: ^5.1.1

packages/stash_objectbox/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 5.2.0
2+
3+
- **BREAKING CHANGE**: Changed minimum dart sdk version
4+
- chore: Updated dependencies
5+
16
## 5.1.2
27

38
- **FIX**: Deployment dependency error on stash_test
@@ -28,7 +33,7 @@
2833

2934
## 5.0.0
3035

31-
- **BREAKING CHANGE**: Changed minimum sdk version
36+
- **BREAKING CHANGE**: Changed minimum dart sdk version
3237
- chore: Updated dependencies
3338

3439
## 4.7.2

0 commit comments

Comments
 (0)