Skip to content

Commit

Permalink
v8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Pessimistress committed Feb 3, 2025
1 parent 057d67a commit 89bfa1e
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

# Version 8.0

## v8.0.0 (Feb 3, 2025)

- First version to support Mapbox GL JS' official types and MapLibre GL JS v5.
This version fully separates the code that support each compatible map library:
+ `react-map-gl/mapbox`: for use with `mapbox-gl>=3.5.0`
+ `react-map-gl/maplibre`: for use with `maplibre-gl>=4`
+ `react-map-gl/mapbox-legacy`: for use with `mapbox-gl` v1.x and v2.x and `@types/mapbox-gl`
- As a result, each endpoint now have slightly smaller bundle size and more precise types.
- 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.

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).


## v8.0.0-beta.1 (Jan 31, 2025)

- feat: remove `RTLTextPlugin` default for MapLibre (#2480)
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "8.0.0-beta.1",
"version": "8.0.0",
"npmClient": "yarn",
"packages": [
"modules/*"
Expand Down
6 changes: 3 additions & 3 deletions modules/main/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-map-gl",
"description": "React components for MapLibre GL JS and Mapbox GL JS",
"version": "8.0.0-beta.1",
"version": "8.0.0",
"keywords": [
"mapbox",
"maplibre",
Expand Down Expand Up @@ -38,8 +38,8 @@
"README.md"
],
"dependencies": {
"@vis.gl/react-mapbox": "8.0.0-beta.1",
"@vis.gl/react-maplibre": "8.0.0-beta.1"
"@vis.gl/react-mapbox": "8.0.0",
"@vis.gl/react-maplibre": "8.0.0"
},
"devDependencies": {
"@types/mapbox-gl": "3.4.0",
Expand Down
2 changes: 1 addition & 1 deletion modules/react-mapbox/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vis.gl/react-mapbox",
"description": "React components for Mapbox GL JS",
"version": "8.0.0-beta.1",
"version": "8.0.0",
"keywords": [
"mapbox",
"mapbox-gl",
Expand Down
2 changes: 1 addition & 1 deletion modules/react-maplibre/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vis.gl/react-maplibre",
"description": "React components for Maplibre GL JS",
"version": "8.0.0-beta.1",
"version": "8.0.0",
"keywords": [
"maplibre",
"maplibre-gl",
Expand Down

0 comments on commit 89bfa1e

Please sign in to comment.