Skip to content

Commit 85e3f73

Browse files
authored
Merge pull request #7260 from plotly/add-pylink4mapbox-migration
also provide a link to python migration from mapbox page
2 parents 089be4c + 3b3c3ab commit 85e3f73

File tree

12 files changed

+20
-16
lines changed

12 files changed

+20
-16
lines changed

draftlogs/7124_change.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
- Update esbuild to v23.1; Node v18 required for development [[#7116](https://github.com/plotly/plotly.js/pull/7124)]
1+
- Node v18 required for development [[#7116](https://github.com/plotly/plotly.js/pull/7124)]
22

draftlogs/7215_remove.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Drop support for deprecated `annotation.ref` attribute (use `annotation.xref` and `annotation.yref` instead) [[#7215](https://github.com/plotly/plotly.js/pull/7215)]
1+
- Drop support for deprecated `annotation.ref` attribute (use `annotation.xref` and `annotation.yref` instead) [[#7215](https://github.com/plotly/plotly.js/pull/7215)]

draftlogs/7216_remove.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Drop support for deprecated error bar `opacity` attribute (use alpha channel of error bar `color` attribute instead) [[#7214](https://github.com/plotly/plotly.js/pull/7216)]
1+
- Drop support for deprecated error bar `opacity` attribute (use alpha channel of error bar `color` attribute instead) [[#7214](https://github.com/plotly/plotly.js/pull/7216)]

draftlogs/7217_remove.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Drop support for deprecated attribute `gl3d.cameraposition` (use `gl3d.camera` instead) [[#7217](https://github.com/plotly/plotly.js/pull/7217)]
1+
- Drop support for deprecated attribute `gl3d.cameraposition` (use `gl3d.camera` instead) [[#7217](https://github.com/plotly/plotly.js/pull/7217)]

draftlogs/7236_remove.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- Drop deprecated autotick attributes from cartesian and gl3d axes [[#7236](https://github.com/plotly/plotly.js/pull/7236)]
1+
- Drop deprecated autotick attributes from cartesian axes [[#7236](https://github.com/plotly/plotly.js/pull/7236)]

draftlogs/7248_fix.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

draftlogs/7260_change.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Deprecate mapbox traces and provide link to migration docs [[#7260](https://github.com/plotly/plotly.js/pull/7260)]

src/plots/mapbox/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ exports.idRegex = exports.attrRegex = Lib.counterRegex(MAPBOX);
2828
var deprecationWarning = [
2929
'mapbox subplots and traces are deprecated!',
3030
'Please consider switching to `map` subplots and traces.',
31-
'Learn more at: https://plotly.com/javascript/maplibre-migration/'
31+
'Learn more at: https://plotly.com/python/maplibre-migration/',
32+
'as well as https://plotly.com/javascript/maplibre-migration/'
3233
].join(' ');
3334

3435
exports.attributes = {

src/traces/choroplethmapbox/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
var deprecationWarning = [
44
'*choroplethmapbox* trace is deprecated!',
55
'Please consider switching to the *choroplethmap* trace type and `map` subplots.',
6-
'Learn more at: https://plotly.com/javascript/maplibre-migration/'
6+
'Learn more at: https://plotly.com/python/maplibre-migration/',
7+
'as well as https://plotly.com/javascript/maplibre-migration/'
78
].join(' ');
89

910
module.exports = {

src/traces/densitymapbox/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
var deprecationWarning = [
44
'*densitymapbox* trace is deprecated!',
55
'Please consider switching to the *densitymap* trace type and `map` subplots.',
6-
'Learn more at: https://plotly.com/javascript/maplibre-migration/'
6+
'Learn more at: https://plotly.com/python/maplibre-migration/',
7+
'as well as https://plotly.com/javascript/maplibre-migration/'
78
].join(' ');
89

910
module.exports = {

0 commit comments

Comments
 (0)