Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
[core] Update mapbox-gl-js
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin committed Feb 15, 2020
1 parent 47d470a commit d079958
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

- [core] Add support for `in expression`. ([#16162](https://github.com/mapbox/mapbox-gl-native/pull/16162))

The `in expression` enables checking whether a Number/String/Boolean type needle is in a String/Array and returns a boolean value.
The `in expression` enables checking whether a Number/String/Boolean type item is in a String/Array and returns a boolean value.

### 🐞 Bug fixes

Expand Down
2 changes: 1 addition & 1 deletion mapbox-gl-js
Submodule mapbox-gl-js updated 41 files
+26 −4 .circleci/config.yml
+3 −1 package.json
+102 −0 src/geo/edge_insets.js
+67 −9 src/geo/transform.js
+50 −0 src/render/draw_debug.js
+6 −1 src/render/painter.js
+1 −1 src/style-spec/expression/definitions/in.js
+1 −1 src/style-spec/package.json
+74 −25 src/ui/camera.js
+12 −1 src/ui/control/geolocate_control.js
+1 −1 src/ui/control/scale_control.js
+19 −1 src/ui/map.js
+1 −1 src/ui/marker.js
+1 −1 src/util/mapbox.js
+4 −0 test/README.md
+18 −0 test/browser/README.md
+29 −0 test/browser/drag.test.js
+58 −0 test/browser/fixtures/land.html
+1 −0 test/browser/fixtures/land.json
+118 −0 test/browser/util/browser.js
+30 −0 test/browser/util/doubleclick.js
+45 −0 test/browser/util/mousewheel.js
+21 −0 test/browser/zoom.test.js
+1 −1 test/integration/expression-tests/in/basic-string/test.json
+ test/integration/render-tests/debug/padding/ease-to-btm-distort/expected.png
+112 −0 test/integration/render-tests/debug/padding/ease-to-btm-distort/style.json
+ test/integration/render-tests/debug/padding/ease-to-left-distort/expected.png
+112 −0 test/integration/render-tests/debug/padding/ease-to-left-distort/style.json
+ test/integration/render-tests/debug/padding/ease-to-no-distort/expected.png
+127 −0 test/integration/render-tests/debug/padding/ease-to-no-distort/style.json
+ test/integration/render-tests/debug/padding/ease-to-right-distort/expected.png
+112 −0 test/integration/render-tests/debug/padding/ease-to-right-distort/style.json
+ test/integration/render-tests/debug/padding/ease-to-top-distort/expected.png
+112 −0 test/integration/render-tests/debug/padding/ease-to-top-distort/style.json
+ test/integration/render-tests/debug/padding/set-padding/expected.png
+82 −0 test/integration/render-tests/debug/padding/set-padding/style.json
+1 −0 test/suite_implementation.js
+99 −0 test/unit/geo/edge_insets.test.js
+39 −0 test/unit/ui/camera.test.js
+11 −0 test/unit/ui/control/geolocate.test.js
+60 −3 yarn.lock

0 comments on commit d079958

Please sign in to comment.