Skip to content

Bump mapbox-gl from 0.54.0 to 1.7.0#464

Closed
dependabot-preview[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/mapbox-gl-1.7.0
Closed

Bump mapbox-gl from 0.54.0 to 1.7.0#464
dependabot-preview[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/mapbox-gl-1.7.0

Conversation

@dependabot-preview

Copy link
Copy Markdown
Contributor

Bumps mapbox-gl from 0.54.0 to 1.7.0.

Release notes

Sourced from mapbox-gl's releases.

v1.7.0-beta.1

1.7.0-beta.1

✨ Features

  • Add promoteId option to use a feature property as ID for feature state (#8987)
  • Add a new constructor option to mapboxgl.Popup, closeOnMove, that closes the popup when the map's position changes (#9163)
  • Allow creating a map without a style (an empty one will be created automatically) ( h/t @stepankuzmin ) (#8924)
  • map.once() now allows specifying a layer id as a third parameter making it consistent with map.on() (#8875)

🍏 Improvements

  • Improve performance of raster layers on large screens (#9050)
  • Improve performance for hillshade and raster layers by implementing a progressive enhancement that utilizes ImageBitmap and OffscreenCanvas (#8845)
  • Improve performance for raster tile rendering by using the stencil buffer (#9012)
  • Update symbol-avoid-edges documentation to acknowledge the existence of global collision detection (#9157)
  • Remove reference to in function which has been replaced by the in expression (#9102)

🐞 Bug Fixes

  • Change the type of tile id key to string to prevent hash collisions (#8979)
  • Prevent changing bearing via URL hash when rotation is disabled (#9156)
  • Fix URL hash with no bearing causing map to fail to load (#9170)
  • Fix bug in GeolocateControl where multiple instances of the control on one page may result in the user location not being updated (#9092)
  • Fix query fill-extrusions made from polygons with coincident points and polygons with less than four points (#9138)
  • Fix bug where symbol-sort-key was not used for collisions that crossed tile boundaries (#9054)
  • Fix bug in DragRotateHandler._onMouseUp getting stuck in drag/rotate (#9137)
  • Fix "Click on Compass" on some mobile devices (add clickTolerance to DragRotateHandler) (#9015) (h/t Yanonix)

v1.6.1

1.6.1

🐞 Bug Fixes

  • Fix style validation error messages not being displayed (#9073)
  • Fix deferred loading of rtl-text-plugin not working for labels created from GeoJSON sources (#9091)
  • Fix RTL text not being rendered with the rtl-text-plugin on pages that don't allow script-src: blob: in their CSP.(#9122)

v.1.6.0

✨ Features

  • Add ability to insert images into text labels using an image expression within a format expression: "text-field": ["format", "Some text", ["image", "my-image"], "some more text"] (#8904)
  • Add support for stretchable images (aka nine-part or nine-patch images). Stretchable images can be used with icon-text-fit to draw resized images with unstretched corners and borders. (#8997)
  • Add in expression. It can check if a value is in an array (["in", value, array]) or a substring is in a string (["in", substring, string]) (#8876)
  • Add minPitch and maxPitch map options (#8834)
  • Add rotation, rotationAlignment and pitchAlignment options to markers (#8836) (h/t dburnsii)
  • Add methods to Popup to manipulate container class names (#8759) (h/t Ashot-KR)
  • Add configurable inertia settings for panning (h/t @aMoniker) (#8887)
  • Add ability to localize mapbox UI controls (#8095) (h/t dmytro-gokun)
  • Add LatLngBounds.contains() method (#7512, fixed by #8200)
  • Add option to load rtl-text-plugin lazily (#8865)
  • Add essential parameter to AnimationOptions that can override prefers-reduced-motion: reduce (#8743, fixed by #8883)

🍏 Improvements

  • Allow rendering full world smaller than 512px. To restore the previous limit call map.setMinZoom(0) (#9028)
... (truncated)
Changelog

Sourced from mapbox-gl's changelog.

1.7.0

✨ Features

  • Add promoteId option to use a feature property as ID for feature state (#8987)
  • Add a new constructor option to mapboxgl.Popup, closeOnMove, that closes the popup when the map's position changes (#9163)
  • Allow creating a map without a style (an empty one will be created automatically) ( h/t @stepankuzmin ) (#8924)
  • map.once() now allows specifying a layer id as a third parameter making it consistent with map.on() (#8875)

🍏 Improvements

  • Improve performance of raster layers on large screens (#9050)
  • Improve performance for hillshade and raster layers by implementing a progressive enhancement that utilizes ImageBitmap and OffscreenCanvas (#8845)
  • Improve performance for raster tile rendering by using the stencil buffer (#9012)
  • Update symbol-avoid-edges documentation to acknowledge the existence of global collision detection (#9157)
  • Remove reference to in function which has been replaced by the in expression (#9102)

🐞 Bug Fixes

  • Change the type of tile id key to string to prevent hash collisions (#8979)
  • Prevent changing bearing via URL hash when rotation is disabled (#9156)
  • Fix URL hash with no bearing causing map to fail to load (#9170)
  • Fix bug in GeolocateControl where multiple instances of the control on one page may result in the user location not being updated (#9092)
  • Fix query fill-extrusions made from polygons with coincident points and polygons with less than four points (#9138)
  • Fix bug where symbol-sort-key was not used for collisions that crossed tile boundaries (#9054)
  • Fix bug in DragRotateHandler._onMouseUp getting stuck in drag/rotate (#9137)
  • Fix "Click on Compass" on some mobile devices (add clickTolerance to DragRotateHandler) (#9015) (h/t Yanonix)

1.6.1

🐞 Bug Fixes

  • Fix style validation error messages not being displayed (#9073)
  • Fix deferred loading of rtl-text-plugin not working for labels created from GeoJSON sources (#9091)
  • Fix RTL text not being rendered with the rtl-text-plugin on pages that don't allow script-src: blob: in their CSP.(#9122)

1.6.0

✨ Features

  • Add ability to insert images into text labels using an image expression within a format expression: "text-field": ["format", "Some text", ["image", "my-image"], "some more text"] (#8904)
  • Add support for stretchable images (aka nine-part or nine-patch images). Stretchable images can be used with icon-text-fit to draw resized images with unstretched corners and borders. (#8997)
  • Add in expression. It can check if a value is in an array (["in", value, array]) or a substring is in a string (["in", substring, string]) (#8876)
  • Add minPitch and maxPitch map options (#8834)
  • Add rotation, rotationAlignment and pitchAlignment options to markers (#8836) (h/t dburnsii)
  • Add methods to Popup to manipulate container class names (#8759) (h/t Ashot-KR)
  • Add configurable inertia settings for panning (h/t @aMoniker) (#8887)
  • Add ability to localize UI controls (#8095) (h/t dmytro-gokun)
  • Add LatLngBounds.contains() method (#7512, fixed by #8200)
  • Add option to load rtl-text-plugin lazily (#8865)
  • Add essential parameter to AnimationOptions that can override prefers-reduced-motion: reduce (#8743, fixed by #8883)

🍏 Improvements

  • Allow rendering full world smaller than 512px. To restore the previous limit call map.setMinZoom(0) (#9028)
  • Add an es modules build for mapbox-gl-style-spec in dist/ (#8247) (h/t ahocevar)
... (truncated)
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

Dependabot will not automatically merge this PR because this dependency is pre-1.0.0.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Bumps [mapbox-gl](https://github.com/mapbox/mapbox-gl-js) from 0.54.0 to 1.7.0.
- [Release notes](https://github.com/mapbox/mapbox-gl-js/releases)
- [Changelog](https://github.com/mapbox/mapbox-gl-js/blob/v1.7.0/CHANGELOG.md)
- [Commits](mapbox/mapbox-gl-js@v0.54.0...v1.7.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview Bot added the dependencies Pull requests that update a dependency file label Jan 27, 2020
@vercel vercel Bot requested a deployment to Preview January 27, 2020 21:51 Abandoned
@vercel

vercel Bot commented Jan 27, 2020

Copy link
Copy Markdown

This pull request is being automatically deployed with ZEIT Now (learn more).
To see the status of your deployment, click on the icon next to each commit.

@dependabot-preview

Copy link
Copy Markdown
Contributor Author

Superseded by #488.

@dependabot-preview dependabot-preview Bot deleted the dependabot/npm_and_yarn/mapbox-gl-1.7.0 branch February 20, 2020 12:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant