Skip to content

Commit 6b47a05

Browse files
Merge branch 'master' into number-like-categories-misinterpret
2 parents b60fe18 + 9c06996 commit 6b47a05

File tree

6 files changed

+21
-18
lines changed

6 files changed

+21
-18
lines changed

draftlogs/5870_change.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Upgrade `regl` module from version 1.6.1 to version 2.1.0 [[#5870](https://github.com/plotly/plotly.js/pull/5870)]

draftlogs/5878_fix.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- Fix invalid call to `lib.promiseError` in lib.syncOrAsync [[#5878](https://github.com/plotly/plotly.js/pull/5878)],
2+
with thanks to @jklimke for the contribution!

package-lock.json

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
"gl-spikes2d": "^1.0.2",
109109
"gl-streamtube3d": "^1.4.1",
110110
"gl-surface3d": "^1.6.0",
111-
"gl-text": "^1.1.8",
111+
"gl-text": "^1.2.0",
112112
"glslify": "^7.1.1",
113113
"has-hover": "^1.0.1",
114114
"has-passive-events": "^1.0.0",
@@ -124,7 +124,7 @@
124124
"parse-svg-path": "^0.1.2",
125125
"polybooljs": "^1.2.0",
126126
"probe-image-size": "^7.2.1",
127-
"regl": "^1.6.1",
127+
"regl": "^2.1.0",
128128
"regl-error2d": "^2.0.12",
129129
"regl-line2d": "^3.1.1",
130130
"regl-scatter2d": "^3.2.6",

src/lib/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,8 +455,7 @@ lib.syncOrAsync = function(sequence, arg, finalStep) {
455455
ret = fni(arg);
456456

457457
if(ret && ret.then) {
458-
return ret.then(continueAsync)
459-
.then(undefined, lib.promiseError);
458+
return ret.then(continueAsync);
460459
}
461460
}
462461

test/image/compare_pixels_test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,9 @@ for(var i = 0; i < allMockList.length; i++) {
128128
// more flaky
129129
'mapbox_angles',
130130
'mapbox_layers',
131+
'mapbox_custom-style',
131132
'mapbox_geojson-attributes'
132-
].indexOf(mockName) !== -1 ? 0.5 : 0.15
133+
].indexOf(mockName) !== -1 ? 1 : 0.15
133134
});
134135

135136
if(numDiffPixels) {

0 commit comments

Comments
 (0)