Skip to content

Commit 3d3d38d

Browse files
authored
Merge pull request #6416 from plotly/pre-v2.17.0-fixes
Pre v2.17.0 fixes
2 parents 4964952 + faab030 commit 3d3d38d

File tree

6 files changed

+267
-260
lines changed

6 files changed

+267
-260
lines changed

.circleci/config.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,8 +404,11 @@ jobs:
404404
name: Test plotly.min.js import using requirejs
405405
command: npm run test-requirejs
406406
- run:
407-
name: Display function constructors in all bundles
408-
command: npm run no-new-func
407+
name: Display function constructors in all bundles (only on master)
408+
command: |
409+
if [ $CIRCLE_BRANCH == "master" ]
410+
then npm run no-new-func
411+
fi
409412
- run:
410413
name: Test plotly bundles against es6
411414
command: npm run no-es6-dist

draftlogs/6334_add.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- Add `shift` and `autoshift` to cartesian y axes to avoid overlaps of multiple axes [[#6334](https://github.com/plotly/plotly.js/pull/6334)],
2+
with thanks to [Gamma Technologies](https://www.gtisoft.com) for sponsoring the related development!

0 commit comments

Comments
 (0)