Skip to content

Commit

Permalink
update README and changelog for v2.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
archmoj committed Feb 2, 2024
1 parent 3804ce9 commit 2f07239
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 10 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,28 @@ 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.29.0] -- 2024-02-01

### Added
- Add `layout.barcornerradius` and `trace.marker.cornerradius` properties to support rounding the corners of bar traces [[#6761](https://github.com/ plotly/plotly.js/pull/6761)],
with thanks to [Displayr](https://www.displayr.com) for sponsoring development!
- Add `autotickangles` to cartesian and radial axes [[#6790](https://github.com/plotly/plotly.js/pull/6790)],
with thanks to @my-tien for the contribution!

### Changed
- Improve hover detection for for scatter plot fill tonext* [[#6865](https://github.com/plotly/plotly.js/pull/6865)],
with thanks to @lumip for the contribution!
- Improve rendering of heatmap bricks for log-scale axes [[#5991](https://github.com/plotly/plotly.js/issues/5991)],
with thanks to @andrew-matteson for the contribution!
- Adjust Sankey trace to allow user-defined link hover style override [[#6864](https://github.com/plotly/plotly.js/pull/6864)],
with thanks to @TortoiseHam for the contribution!
- Adjust 'decimal' and 'thousands' formats for Brazilian Portuguese locale file [[#6866](https://github.com/plotly/plotly.js/pull/6866)],
with thanks to @pazuza for the contribution!

### Fixed
- Fix modifying selections on traces on overlaying axes [[#6870](https://github.com/plotly/plotly.js/pull/6870)]


## [2.28.0] -- 2024-01-05

### Added
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
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.28.0.min.js" charset="utf-8"></script>
<script src="https://cdn.plot.ly/plotly-2.29.0.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.28.0.min.js"
import "https://cdn.plot.ly/plotly-2.29.0.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.28.0.js" charset="utf-8"></script>
<script src="https://cdn.plot.ly/plotly-2.29.0.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/6761_add.md

This file was deleted.

1 change: 0 additions & 1 deletion draftlogs/6790_add.md

This file was deleted.

1 change: 0 additions & 1 deletion draftlogs/6864_change.md

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion draftlogs/6866_change.md

This file was deleted.

1 change: 0 additions & 1 deletion draftlogs/6870_change.md

This file was deleted.

1 change: 0 additions & 1 deletion draftlogs/6891_change.md

This file was deleted.

0 comments on commit 2f07239

Please sign in to comment.