Skip to content

Commit

Permalink
changelog and readme for v2.26.2
Browse files Browse the repository at this point in the history
  • Loading branch information
archmoj committed Oct 4, 2023
1 parent c95de52 commit 02fec76
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Expand Up @@ -9,6 +9,18 @@ To see all merged commits on the master branch that will be part of the next plo

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

## [2.26.2] -- 2023-10-04

### Fixed
- Fix range interactions affecting partial ranges in other subplots [[#6743](https://github.com/plotly/plotly.js/pull/6743)]
- Fix to emit `plotly_click` event on touchscreens with "select" `dragmode` [[#6724](https://github.com/plotly/plotly.js/pull/6724)]),
with thanks to @lvlte for the contribution!
- Fix error display for failing builds [[#6739](https://github.com/plotly/plotly.js/pull/6739)],
with thanks to @dmt0 for the contribution!
- Use the "willReadFrequently" 2d context creation attribute to optimize readback performance for heat map traces [[#6741](https://github.com/plotly/plotly.js/pull/6741)],
with thanks to @bebeal for the contribution!


## [2.26.1] -- 2023-09-22

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -55,7 +55,7 @@ You may also consider using [`plotly.js-dist`](https://www.npmjs.com/package/plo
```html
<head>
<script src="https://cdn.plot.ly/plotly-2.26.1.min.js" charset="utf-8"></script>
<script src="https://cdn.plot.ly/plotly-2.26.2.min.js" charset="utf-8"></script>
</head>
<body>
<div id="gd"></div>
Expand All @@ -72,7 +72,7 @@ You may also consider using [`plotly.js-dist`](https://www.npmjs.com/package/plo
Alternatively you may consider using [native ES6 import](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) in the script tag.
```html
<script type="module">
import "https://cdn.plot.ly/plotly-2.26.1.min.js"
import "https://cdn.plot.ly/plotly-2.26.2.min.js"
Plotly.newPlot("gd", [{ y: [1, 2, 3] }])
</script>
```
Expand All @@ -82,7 +82,7 @@ Fastly supports Plotly.js with free CDN service. Read more at <https://www.fastl
### Un-minified versions are also available on CDN
While non-minified source files may contain characters outside UTF-8, it is recommended that you specify the `charset` when loading those bundles.
```html
<script src="https://cdn.plot.ly/plotly-2.26.1.js" charset="utf-8"></script>
<script src="https://cdn.plot.ly/plotly-2.26.2.js" charset="utf-8"></script>
```

> 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.
Expand Down
1 change: 0 additions & 1 deletion draftlogs/6739_fix.md

This file was deleted.

1 change: 0 additions & 1 deletion draftlogs/6743_fix.md

This file was deleted.

0 comments on commit 02fec76

Please sign in to comment.