Skip to content

Commit

Permalink
Release v2.12.1 (#12555)
Browse files Browse the repository at this point in the history
* Update `tiny-sdf` to v2.0.6

* Update CHANGELOG and package version

* Fix `test-browser` failures by unpinning chrome version (#12509)

---------

Co-authored-by: Aidan H <aidan.hendrickson@mapbox.com>
  • Loading branch information
stepankuzmin and SnailBones authored Feb 6, 2023
1 parent a1c9104 commit 31d0eb7
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
7 changes: 3 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -381,10 +381,9 @@ jobs:
steps:
- attach_workspace:
at: ~/
- browser-tools/install-browser-tools:
chrome-version: 91.0.4472.164
- run: yarn run build-dev
- browser-tools/install-browser-tools
- run: yarn run build-token
- run: yarn run build-dev
- run:
name: Test Chrome
environment:
Expand Down Expand Up @@ -488,7 +487,7 @@ jobs:
$uri = "https://dl.google.com/chrome/install/latest/chrome_installer.exe";
$path = "$PSScriptRoot\ChromeSetup.exe";
Invoke-WebRequest -Uri $uri -OutFile $path;
Start-Process $path /install -NoNewWindow -Wait;
Start-Process $path /install -NoNewWindow -Wait;
Remove-Item $path;
$chromeInstalled = (Get-Item (Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\chrome.exe').'(Default)').VersionInfo;
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2.12.1

## Bug fixes 🐞

* Fix a rare bug where certain diacritical characters could break rendering of a symbol layer. ([#12554](https://github.com/mapbox/mapbox-gl-js/pull/12554))

## 2.12.0

## Features ✨ and improvements 🏁
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mapbox-gl",
"description": "A WebGL interactive maps library",
"version": "2.12.0",
"version": "2.12.1",
"main": "dist/mapbox-gl.js",
"style": "dist/mapbox-gl.css",
"license": "SEE LICENSE IN LICENSE.txt",
Expand All @@ -15,7 +15,7 @@
"@mapbox/jsonlint-lines-primitives": "^2.0.2",
"@mapbox/mapbox-gl-supported": "^2.0.1",
"@mapbox/point-geometry": "^0.1.0",
"@mapbox/tiny-sdf": "^2.0.5",
"@mapbox/tiny-sdf": "^2.0.6",
"@mapbox/unitbezier": "^0.0.1",
"@mapbox/vector-tile": "^1.3.1",
"@mapbox/whoots-js": "^3.1.0",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -507,10 +507,10 @@
resolved "https://registry.yarnpkg.com/@mapbox/sphericalmercator/-/sphericalmercator-1.2.0.tgz#55d4896be906bfff859e22a1d72267329a0fff90"
integrity sha512-ZTOuuwGuMOJN+HEmG/68bSEw15HHaMWmQ5gdTsWdWsjDe56K1kGvLOK6bOSC8gWgIvEO0w6un/2Gvv1q5hJSkQ==

"@mapbox/tiny-sdf@^2.0.5":
version "2.0.5"
resolved "https://registry.yarnpkg.com/@mapbox/tiny-sdf/-/tiny-sdf-2.0.5.tgz#cdba698d3d65087643130f9af43a2b622ce0b372"
integrity sha512-OhXt2lS//WpLdkqrzo/KwB7SRD8AiNTFFzuo9n14IBupzIMa67yGItcK7I2W9D8Ghpa4T04Sw9FWsKCJG50Bxw==
"@mapbox/tiny-sdf@^2.0.6":
version "2.0.6"
resolved "https://registry.yarnpkg.com/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz#9a1d33e5018093e88f6a4df2343e886056287282"
integrity sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA==

"@mapbox/unitbezier@^0.0.1":
version "0.0.1"
Expand Down

0 comments on commit 31d0eb7

Please sign in to comment.