Skip to content

Commit d407172

Browse files
authored
Merge pull request #7484 from plotly/release-v3.0.2
Branch for releasing v3.0.2
2 parents 694d55b + f36e57c commit d407172

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@ 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+
13+
## [3.0.2] -- 2025-07-22
14+
15+
### Fixed
16+
- Fix installing dependencies in node v22 [[#7381](https://github.com/plotly/plotly.js/pull/7381)], with thanks to @chaigh-uk for the contribution!
17+
- Fix Persian calendar leap year [[#7456](https://github.com/plotly/plotly.js/pull/7456)]
18+
- Fix scroll wheel zoom for geo subplots in Safari [#7474](https://github.com/plotly/plotly.js/pull/7474)
19+
- Add method to check for WebKit WebView user agent string [[#7479](https://github.com/plotly/plotly.js/pull/7479)]
20+
- Fix edit colorbar title [7487](https://github.com/plotly/plotly.js/pull/7487)
21+
22+
1223
## [3.1.0-rc.0] -- 2025-07-15
1324

1425
### Added

src/components/shapes/draw_newshape/newshapes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function newShapes(outlines, dragOptions) {
8686
case 'line':
8787
case 'rect':
8888
case 'circle':
89-
89+
9090
var xaxis = axis_ids.getFromId(gd, beforeEdit.xref);
9191
if (beforeEdit.xref.charAt(0) === 'x' && xaxis.type.includes('category')) {
9292
modifyItem('x0', afterEdit.x0 - (beforeEdit.x0shift || 0));

test/jasmine/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ func.defaultConfig = {
192192
// N.B. the rest of this field is filled below
193193
files: [
194194
pathToCustomMatchers,
195-
// available to fetch from /base/node_modules/mathjax-v2/
195+
// available to fetch from /base/node_modules/@plotly/mathjax-v2/
196196
// more info: http://karma-runner.github.io/3.0/config/files.html
197197
{pattern: pathToMathJax2 + '/**', included: false, watched: false, served: true},
198198
{pattern: pathToMathJax3 + '/**', included: false, watched: false, served: true},

0 commit comments

Comments
 (0)