Skip to content

Commit 89bfa1e

Browse files
committed
v8.0.0
1 parent 057d67a commit 89bfa1e

File tree

5 files changed

+19
-6
lines changed

5 files changed

+19
-6
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
# Version 8.0
44

5+
## v8.0.0 (Feb 3, 2025)
6+
7+
- First version to support Mapbox GL JS' official types and MapLibre GL JS v5.
8+
This version fully separates the code that support each compatible map library:
9+
+ `react-map-gl/mapbox`: for use with `mapbox-gl>=3.5.0`
10+
+ `react-map-gl/maplibre`: for use with `maplibre-gl>=4`
11+
+ `react-map-gl/mapbox-legacy`: for use with `mapbox-gl` v1.x and v2.x and `@types/mapbox-gl`
12+
- As a result, each endpoint now have slightly smaller bundle size and more precise types.
13+
- Maplibre wrapper is expected to have better functionality and performance than v7 by utilizing an [upstream API](https://github.com/maplibre/maplibre-gl-js/issues/1545) for the React use case.
14+
15+
For a full list of breaking changes, please visit the [upgrade guide](https://visgl.github.io/react-map-gl/docs/upgrade-guide#upgrading-to-v80).
16+
17+
518
## v8.0.0-beta.1 (Jan 31, 2025)
619

720
- feat: remove `RTLTextPlugin` default for MapLibre (#2480)

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "8.0.0-beta.1",
2+
"version": "8.0.0",
33
"npmClient": "yarn",
44
"packages": [
55
"modules/*"

modules/main/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-map-gl",
33
"description": "React components for MapLibre GL JS and Mapbox GL JS",
4-
"version": "8.0.0-beta.1",
4+
"version": "8.0.0",
55
"keywords": [
66
"mapbox",
77
"maplibre",
@@ -38,8 +38,8 @@
3838
"README.md"
3939
],
4040
"dependencies": {
41-
"@vis.gl/react-mapbox": "8.0.0-beta.1",
42-
"@vis.gl/react-maplibre": "8.0.0-beta.1"
41+
"@vis.gl/react-mapbox": "8.0.0",
42+
"@vis.gl/react-maplibre": "8.0.0"
4343
},
4444
"devDependencies": {
4545
"@types/mapbox-gl": "3.4.0",

modules/react-mapbox/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vis.gl/react-mapbox",
33
"description": "React components for Mapbox GL JS",
4-
"version": "8.0.0-beta.1",
4+
"version": "8.0.0",
55
"keywords": [
66
"mapbox",
77
"mapbox-gl",

modules/react-maplibre/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vis.gl/react-maplibre",
33
"description": "React components for Maplibre GL JS",
4-
"version": "8.0.0-beta.1",
4+
"version": "8.0.0",
55
"keywords": [
66
"maplibre",
77
"maplibre-gl",

0 commit comments

Comments
 (0)