Skip to content

Commit 0d4c403

Browse files
committed
update readme and changelog for v2.35.0
1 parent 39b5929 commit 0d4c403

12 files changed

+23
-21
lines changed

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,26 @@ To see all merged commits on the master branch that will be part of the next plo
99

1010
where X.Y.Z is the semver of most recent plotly.js release.
1111

12+
## [2.35.0] -- 2024-08-29
13+
14+
### Added
15+
- Add new traces: scattermap, choroplethmap and densitymap and map subplots which use maplibre to render maps [[#7015](https://github.com/plotly/plotly.js/pull/7015), [#7060](https://github.com/plotly/plotly.js/pull/7060), [#7085](https://github.com/plotly/plotly.js/pull/7085), [#7088](https://github.com/plotly/plotly.js/pull/7088), [#7090](https://github.com/plotly/plotly.js/pull/7090), [#7092](https://github.com/plotly/plotly.js/pull/7092), [#7094](https://github.com/plotly/plotly.js/pull/7094), [#7134](https://github.com/plotly/plotly.js/pull/7134)]
16+
17+
### Changed
18+
- Deprecate mapbox traces and mapbox subplot [[#7087](https://github.com/plotly/plotly.js/pull/7087)]
19+
- Drop obsolete `npm v6` installation [[#7095](https://github.com/plotly/plotly.js/pull/7095)]
20+
- Use `Node.js v18` and `npm v10` in development [[#7078](https://github.com/plotly/plotly.js/pull/7078)]
21+
- Update npm lockfile to v3 [[#7099](https://github.com/plotly/plotly.js/pull/7099)]
22+
- Update turf to v7 [[#7116](https://github.com/plotly/plotly.js/pull/7116)]
23+
24+
### Fixed
25+
- Fix centroid calculation in turf [[#7115](https://github.com/plotly/plotly.js/pull/7115)],
26+
with thanks to @birkskyum for the contribution!
27+
- Fix missing cursor for Ternary Plot[[#7057](https://github.com/plotly/plotly.js/pull/7057)],
28+
with thanks to @Lexachoc for the contribution!
29+
- Elaborate on the Custom Bundle guide [[#7101](https://github.com/plotly/plotly.js/pull/7101)]
30+
31+
1232
## [2.34.0] -- 2024-07-18
1333

1434
### Added

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ You may also consider using [`plotly.js-dist`](https://www.npmjs.com/package/plo
6262
6363
```html
6464
<head>
65-
<script src="https://cdn.plot.ly/plotly-2.34.0.min.js" charset="utf-8"></script>
65+
<script src="https://cdn.plot.ly/plotly-2.35.0.min.js" charset="utf-8"></script>
6666
</head>
6767
<body>
6868
<div id="gd"></div>
@@ -79,7 +79,7 @@ You may also consider using [`plotly.js-dist`](https://www.npmjs.com/package/plo
7979
Alternatively you may consider using [native ES6 import](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) in the script tag.
8080
```html
8181
<script type="module">
82-
import "https://cdn.plot.ly/plotly-2.34.0.min.js"
82+
import "https://cdn.plot.ly/plotly-2.35.0.min.js"
8383
Plotly.newPlot("gd", [{ y: [1, 2, 3] }])
8484
</script>
8585
```
@@ -89,7 +89,7 @@ Fastly supports Plotly.js with free CDN service. Read more at <https://www.fastl
8989
### Un-minified versions are also available on CDN
9090
While non-minified source files may contain characters outside UTF-8, it is recommended that you specify the `charset` when loading those bundles.
9191
```html
92-
<script src="https://cdn.plot.ly/plotly-2.34.0.js" charset="utf-8"></script>
92+
<script src="https://cdn.plot.ly/plotly-2.35.0.js" charset="utf-8"></script>
9393
```
9494

9595
> Please note that as of v2 the "plotly-latest" outputs (e.g. https://cdn.plot.ly/plotly-latest.min.js) will no longer be updated on the CDN, and will stay at the last v1 patch v1.58.5. Therefore, to use the CDN with plotly.js v2 and higher, you must specify an exact plotly.js version.

draftlogs/7057_fix.md

-2
This file was deleted.

draftlogs/7060_add.md

-1
This file was deleted.

draftlogs/7078_change.md

-2
This file was deleted.

draftlogs/7080_change.md

-2
This file was deleted.

draftlogs/7087_change.md

-1
This file was deleted.

draftlogs/7095_change.md

-2
This file was deleted.

draftlogs/7099_change.md

-2
This file was deleted.

draftlogs/7101_change.md

-2
This file was deleted.

draftlogs/7115_fix.md

-2
This file was deleted.

draftlogs/7116_change.md

-2
This file was deleted.

0 commit comments

Comments
 (0)