Skip to content

Commit 6b9fc9c

Browse files
authored
chore: prepare for v8.2.2 release (#2140)
1 parent 2ab5c12 commit 6b9fc9c

File tree

5 files changed

+23
-7
lines changed

5 files changed

+23
-7
lines changed

CHANGELOG.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,29 @@
22

33
Please consider [donating](https://github.com/sponsors/fleaflet) or [contributing](https://github.com/fleaflet/flutter_map/blob/master/CONTRIBUTING.md) if you're a fan of what we're doing and you'd like to support future releases!
44

5-
This CHANGELOG does not include every commit and/or PR - it is a hand picked selection of the ones that have an effect on you. For a full list of changes, please check the GitHub repository releases/tags.
5+
This CHANGELOG does not include every commit and/or PR - it is a hand picked selection of the ones that have an effect on most users. For a full list of changes, please check the GitHub repository releases/tags. We also release highlights for some releases on the docs site.
6+
7+
## [8.2.2] - 2025/09/19
8+
9+
Contains the following user-affecting bug fixes:
10+
11+
- Prevent crash caused by usage of negative `TileLayer.zoomOffset` - [#2133](https://github.com/fleaflet/flutter_map/pull/2133) for [#2127](https://github.com/fleaflet/flutter_map/issues/2127)
12+
- Assert that `MapCamera.zoom` is finite (to prevent confusing errors within layers) - [#2141](https://github.com/fleaflet/flutter_map/pull/2141) for [#2135](https://github.com/fleaflet/flutter_map/issues/2135)
13+
14+
Many thanks to these contributors (in no particular order):
15+
16+
- @monsieurtanuki
17+
- @ReinisSprogis
18+
- ... and all the maintainers
619

720
## [8.2.1] - 2025/07/11
821

9-
Contains the following user-affecting changes:
22+
Contains the following user-affecting bug fixes:
1023

1124
- Ensure tiles still load when failing to cache them due to HTTP spec non-compliance - [#2125](https://github.com/fleaflet/flutter_map/pull/2125) for [#2124](https://github.com/fleaflet/flutter_map/issues/2124)
25+
26+
Contains the following user-affecting changes:
27+
1228
- Log informational warnings to console when a tile fails to cache due to HTTP spec non-compliance or a shortage of information to calculate an accurate freshness age - [#2125](https://github.com/fleaflet/flutter_map/pull/2125) for [#2124](https://github.com/fleaflet/flutter_map/issues/2124)
1329

1430
Many thanks to these contributors (in no particular order):

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: flutter_map_example
22
description: Example application for 'flutter_map' package
33
publish_to: "none"
4-
version: 8.2.1
4+
version: 8.2.2
55

66
environment:
77
sdk: ">=3.6.0 <4.0.0"

lib/src/layer/tile_layer/tile_layer.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,8 +349,8 @@ class _TileLayerState extends State<TileLayer> with TickerProviderStateMixin {
349349
When using the OSM tile servers, you must set an HTTP User-Agent which
350350
adequately identifies your application to the servers.
351351
Set `TileLayer.userAgentPackageName` appropriately, or set a UA header manually.
352-
In a future flutter_map release, usage of the OpenStreetMap public tile servers
353-
without an adequate User-Agent may be blocked in release mode without warning.
352+
OSMF (the tile server operators), and/or flutter_map in future, may block usage
353+
if inadequately identified.
354354
''';
355355

356356
final warning = '''\x1B[1m\x1B[3mflutter_map\x1B[0m$uaWarning

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_map
22
description: "Flutter's №1 non-commercially aimed map client: it's easy-to-use, versatile, vendor-free, fully cross-platform, and 100% pure-Flutter"
3-
version: 8.2.1
3+
version: 8.2.2
44

55
repository: https://github.com/fleaflet/flutter_map
66
issue_tracker: https://github.com/fleaflet/flutter_map/issues

windowsApplicationInstallerSetup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "flutter_map Demo"
5-
#define MyAppVersion "for 8.2.1"
5+
#define MyAppVersion "for 8.2.2"
66
#define MyAppPublisher "fleaflet"
77
#define MyAppURL "https://github.com/fleaflet/flutter_map"
88
#define MyAppSupportURL "https://github.com/fleaflet/flutter_map/issues"

0 commit comments

Comments
 (0)