Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit 1d78550

Browse files
authored
chore: support flutter_map v8 (#14)
1 parent 520d3ac commit 1d78550

File tree

3 files changed

+8
-25
lines changed

3 files changed

+8
-25
lines changed

.github/workflows/branch.yml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,6 @@ concurrency:
1111
cancel-in-progress: true
1212

1313
jobs:
14-
score-package:
15-
name: "Score Package"
16-
runs-on: ubuntu-latest
17-
steps:
18-
- name: Checkout Repository
19-
uses: actions/checkout@v3
20-
- name: Run Dart Package Analyser
21-
uses: axel-op/dart-package-analyzer@master
22-
id: analysis
23-
with:
24-
githubToken: ${{ secrets.GITHUB_TOKEN }}
25-
- name: Check Package Scores
26-
env:
27-
TOTAL: ${{ steps.analysis.outputs.total }}
28-
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
29-
run: |
30-
if (( $TOTAL < $TOTAL_MAX - 10 ))
31-
then
32-
echo Package score less than available score. Improve the score!
33-
exit 1
34-
fi
35-
3614
analyse-code:
3715
name: "Analyse Code"
3816
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## [3.1.0] - 2025/02/02
4+
5+
* Support flutter_map v8
6+
* Fixed issue where externally created Dio client was closed internally - [#13](https://github.com/fleaflet/flutter_map_cancellable_tile_provider/pull/13)
7+
38
## [3.0.2] - 2024/09/12
49

510
* Minor dependency bumps

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_map_cancellable_tile_provider
22
description: Plugin for flutter_map that provides a `TileProvider` with the capability to cancel unnecessary HTTP tile requests
3-
version: 3.0.2
3+
version: 3.1.0
44

55
homepage: https://github.com/fleaflet/flutter_map
66
repository: https://github.com/fleaflet/flutter_map_cancellable_tile_provider
@@ -23,12 +23,12 @@ platforms:
2323
windows:
2424

2525
environment:
26-
sdk: '>=3.0.0 <4.0.0'
26+
sdk: ">=3.0.0 <4.0.0"
2727
flutter: ">=3.10.0"
2828

2929
dependencies:
3030
dio: ^5.7.0
3131
flutter:
3232
sdk: flutter
33-
flutter_map: ^7.0.2
33+
flutter_map: ^8.0.0
3434
meta: ^1.11.0

0 commit comments

Comments
 (0)