Skip to content

Commit e523791

Browse files
committed
provide changelog and readme for v3.0.0-rc.0
1 parent 88eb978 commit e523791

25 files changed

+36
-28
lines changed

CHANGELOG.md

+33
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,39 @@ 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+
## [3.0.0-rc.0] -- 2024-11-11
13+
14+
### Removed
15+
- Drop support for passing a string to the `title` attribute, and drop support for deprecated attributes `titlefont`, `titleposition`, `titleside`, and `titleoffset` (use `title.text`, `title.font`, `title.side`, `title.offset` instead)[[#7212](https://github.com/plotly/plotly.js/pull/7212)]
16+
- Drop deprecated pointcloud and heatmapgl traces and gl2d subplots [[#7213](https://github.com/plotly/plotly.js/pull/7213)]
17+
Drop support for deprecated `bardir` attribute (use `orientation` instead) [[#7214](https://github.com/plotly/plotly.js/pull/7214)]
18+
- Drop support for deprecated `annotation.ref` attribute (use `annotation.xref` and `annotation.yref` instead) [[#7215](https://github.com/plotly/plotly.js/pull/7215)]
19+
- 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)]
20+
- Drop support for deprecated attribute `gl3d.cameraposition` (use `gl3d.camera` instead) [[#7217](https://github.com/plotly/plotly.js/pull/7217)]
21+
- Drop deprecated `plot3dPixelRatio` from config [[#7231](https://github.com/plotly/plotly.js/pull/7231)]
22+
- Drop deprecated `zauto`, `zmin` and `zmax` from the surface trace [[#7234](https://github.com/plotly/plotly.js/pull/7234)]
23+
- Drop deprecated `autotick` attributes from cartesian axes [[#7236](https://github.com/plotly/plotly.js/pull/7236)]
24+
- Drop `transforms` from the API [[#7240](https://github.com/plotly/plotly.js/pull/7240), [#7254](https://github.com/plotly/plotly.js/pull/7254)]
25+
- Drop jQuery events support [[#7224](https://github.com/plotly/plotly.js/pull/7224)]
26+
- Drop the AMD support from the bundle header [[#7229](https://github.com/plotly/plotly.js/pull/7229)]
27+
28+
### Changed
29+
- Switch from webpack to esbuild for fast builds & testing as well as allowing modern JavaScript beyond es5 [[#6909](https://github.com/plotly/plotly.js/pull/6909)]
30+
- Make offsetgroup work with barmode "stacked" and "relative" for bar traces [[#7009](https://github.com/plotly/plotly.js/pull/7009)]
31+
- Node v18 required for development [[#7116](https://github.com/plotly/plotly.js/pull/7124)]
32+
- Cleanup remaining code that was there to support the Internet Explorer [[#7251](https://github.com/plotly/plotly.js/pull/7251)]
33+
- Deprecate mapbox traces and provide links to migration docs for plotly.js and plotly.py users [[#7260](https://github.com/plotly/plotly.js/pull/7260)]
34+
35+
### Fixed
36+
- Remove inline styles that break plots in strict CSP setups [[#7109](https://github.com/plotly/plotly.js/pull/7109)],
37+
with thanks to @martian111 for the contribution!
38+
- Allow null or broken selection objects without throwing an error [[#7164](https://github.com/plotly/plotly.js/pull/7164)]
39+
- Render scatterternary traces correctly if they have the `ids` attribute [[#7164](https://github.com/plotly/plotly.js/pull/7164)]
40+
- Do not convert url-sourced layout images to data URI unless we're in staticPlot mode, to improve interactivity when images are changed with zoom/pan [[#7199](https://github.com/plotly/plotly.js/pull/7199)]
41+
- Fix source map of the mablibre dependency [[#7204](https://github.com/plotly/plotly.js/pull/7204)]
42+
- Fix years in license [[#7205](https://github.com/plotly/plotly.js/pull/7205)]
43+
44+
1245
## [2.35.2] -- 2024-09-10
1346

1447
### Fixed

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.35.2.min.js" charset="utf-8"></script>
65+
<script src="https://cdn.plot.ly/plotly-3.0.0-rc.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.35.2.min.js"
82+
import "https://cdn.plot.ly/plotly-3.0.0-rc.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.35.2.js" charset="utf-8"></script>
92+
<script src="https://cdn.plot.ly/plotly-3.0.0-rc.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/6909_change.md

-1
This file was deleted.

draftlogs/7009_change.md

-1
This file was deleted.

draftlogs/7109_fix.md

-2
This file was deleted.

draftlogs/7124_change.md

-2
This file was deleted.

draftlogs/7164_fix.md

-1
This file was deleted.

draftlogs/7167_fix.md

-1
This file was deleted.

draftlogs/7199_fix.md

-1
This file was deleted.

draftlogs/7204_fix.md

-1
This file was deleted.

draftlogs/7205_fix.md

-1
This file was deleted.

draftlogs/7212_remove.md

-1
This file was deleted.

draftlogs/7213_remove.md

-1
This file was deleted.

draftlogs/7214_remove.md

-1
This file was deleted.

draftlogs/7215_remove.md

-1
This file was deleted.

draftlogs/7216_remove.md

-1
This file was deleted.

draftlogs/7217_remove.md

-1
This file was deleted.

draftlogs/7224_remove.md

-1
This file was deleted.

draftlogs/7229_remove.md

-1
This file was deleted.

draftlogs/7231_remove.md

-1
This file was deleted.

draftlogs/7234_remove.md

-1
This file was deleted.

draftlogs/7236_remove.md

-1
This file was deleted.

draftlogs/7240_remove.md

-1
This file was deleted.

draftlogs/7251_change.md

-1
This file was deleted.

draftlogs/7260_change.md

-1
This file was deleted.

0 commit comments

Comments
 (0)