Skip to content

Commit 6aebba0

Browse files
committed
Bump version to 2.1.3, incorporating correct nominatim api url and translations
1 parent 8559c3d commit 6aebba0

File tree

3 files changed

+484
-521
lines changed

3 files changed

+484
-521
lines changed

.github/workflows/ohm.upstream-sync.yml

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
run: |
3131
if git show-ref --quiet refs/heads/release-candidate; then
3232
git branch --remote -D origin/release-candidate
33+
git branch -D release-candidate
3334
fi
3435
if git show-ref --quiet refs/heads/the-sacrifice; then
3536
git branch --remote -D origin/the-sacrifice

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "overpass-turbo",
3-
"version": "2.1.2",
3+
"version": "2.1.3",
44
"description": "A web based data mining tool for OpenHistoricalMap using Overpass API",
55
"homepage": "https://overpass-turbo.openhistoricalmap.org/",
66
"repository": "git+https://github.com/OpenHistoricalMap/overpass-turbo.git",
77
"license": "MIT",
8-
"packageManager": "yarn@4.3.1",
8+
"packageManager": "yarn@4.5.3",
99
"scripts": {
1010
"prepare": "husky",
1111
"test": "yarn run test:eslint && yarn run test:style && yarn run test:vitest",
@@ -14,7 +14,7 @@
1414
"test:vitest": "vitest",
1515
"fix:style": "prettier --write .",
1616
"start": "vite",
17-
"dev": "vite --host=127.0.0.1",
17+
"dev": "vite",
1818
"build": "vite build"
1919
},
2020
"devDependencies": {
@@ -26,23 +26,23 @@
2626
"@typescript-eslint/eslint-plugin": "^5.57.1",
2727
"@typescript-eslint/parser": "^5.57.1",
2828
"eslint": "^8.38.0",
29-
"happy-dom": "^14.12.0",
29+
"happy-dom": "^15.10.2",
3030
"husky": "^9.0.11",
3131
"lint-staged": "^15.2.7",
3232
"peggy": "^3.0.2",
3333
"prettier": "^3.3.2",
3434
"request": "^2.67.0",
3535
"typescript": "^5.0.4",
36-
"vite": "^5.2.14",
36+
"vite": "^6.0.12",
3737
"vite-plugin-favicons-inject": "^2.2.0",
38-
"vitest": "^1.6.0"
38+
"vitest": "^3.0.0-beta.3"
3939
},
4040
"dependencies": {
4141
"@fortawesome/fontawesome-free": "^5.13.0",
4242
"@maplibre/maplibre-gl-leaflet": "^0.0.20",
4343
"@openstreetmap/id-tagging-schema": "^3.5.1",
4444
"bulma": "^0.9.4",
45-
"canvg": "4.0.1",
45+
"canvg": "4.0.3",
4646
"codemirror": "https://github.com/codemirror/CodeMirror/archive/v2.38.tar.gz",
4747
"colorbrewer": "^1.5.7",
4848
"colormap": "^2.3.2",
@@ -68,6 +68,6 @@
6868
"trailingComma": "none"
6969
},
7070
"lint-staged": {
71-
"**/*": "prettier --write --ignore-unknown"
71+
"**/*": "prettier --write --ignore-unknown --no-error-on-unmatched-pattern"
7272
}
7373
}

0 commit comments

Comments
 (0)