Skip to content

Commit

Permalink
Bump @maplibre/maplibre-gl-style-spec from 23.0.0 to 23.1.0 (#5359)
Browse files Browse the repository at this point in the history
* Bump @maplibre/maplibre-gl-style-spec from 23.0.0 to 23.1.0

Bumps [@maplibre/maplibre-gl-style-spec](https://github.com/maplibre/maplibre-gl-style-spec) from 23.0.0 to 23.1.0.
- [Release notes](https://github.com/maplibre/maplibre-gl-style-spec/releases)
- [Changelog](https://github.com/maplibre/maplibre-style-spec/blob/main/CHANGELOG.md)
- [Commits](maplibre/maplibre-style-spec@v23.0.0...v23.1.0)

---
updated-dependencies:
- dependency-name: "@maplibre/maplibre-gl-style-spec"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fixes according to changed API

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Harel M <harel.mazor@gmail.com>
  • Loading branch information
dependabot[bot] and HarelM authored Jan 22, 2025
1 parent 81db4b5 commit 03a7d0e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@mapbox/unitbezier": "^0.0.1",
"@mapbox/vector-tile": "^1.3.1",
"@mapbox/whoots-js": "^3.1.0",
"@maplibre/maplibre-gl-style-spec": "^23.0.0",
"@maplibre/maplibre-gl-style-spec": "^23.1.0",
"@types/geojson": "^7946.0.15",
"@types/geojson-vt": "3.2.5",
"@types/mapbox__point-geometry": "^0.1.4",
Expand Down
4 changes: 2 additions & 2 deletions test/integration/symbol-shaping/shaping.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ if (typeof process !== 'undefined' && process.env !== undefined) {
}

function sectionForImage(name: string) {
return new FormattedSection('', ResolvedImage.fromString(name), null, null, null);
return new FormattedSection('', ResolvedImage.fromString(name), null, null, null, null);
}

function sectionForText(name: string, scale?: number) {
return new FormattedSection(name, null, scale, null, null);
return new FormattedSection(name, null, scale, null, null, null);
}

describe('shaping', () => {
Expand Down

0 comments on commit 03a7d0e

Please sign in to comment.