Skip to content

Commit bfe2807

Browse files
authored
Merge branch 'openstreetmap:main' into trees-wikidata
2 parents 93b2ea0 + 6e7e7be commit bfe2807

File tree

768 files changed

+32265
-92306
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

768 files changed

+32265
-92306
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Follow these steps to test your PR yourself and make it a lot easier and faster
2525

2626
**This is how it works:**
2727
1. After you submit your PR, the system will create a preview and comment on your PR:
28-
> 🍱 You can preview the tagging presets of this pull request here.
28+
> 🍱 Your pull request preview is ready.
2929
If this is your first contribution to this project, the preview will not happen right away but requires a click from one of the project members. We will do this ASAP.
3030

3131
2. Once the preview is ready, use it to test your changes.

.github/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ updates:
99
directory: "/"
1010
schedule:
1111
interval: "daily"
12+
versioning-strategy: increase-if-necessary

.github/release-drafter.yml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name-template: 'v$RESOLVED_VERSION'
2+
tag-template: 'v$RESOLVED_VERSION'
3+
categories:
4+
- title: 'New Presets'
5+
labels:
6+
- 'new-preset'
7+
- title: 'New and Changed Fields'
8+
labels:
9+
- 'field'
10+
- 'new-field'
11+
- 'new-value'
12+
- title: 'Changed Presets'
13+
labels:
14+
- 'preset'
15+
- 'add-field'
16+
- 'new-icon'
17+
- 'new-label'
18+
- title: 'Regional Presets and Fields'
19+
labels:
20+
- 'regional'
21+
- title: 'Deprecated Tags'
22+
labels:
23+
- 'deprecating'
24+
- title: 'Bug Fixes'
25+
labels:
26+
- 'bug'
27+
- title: 'Documentation and Other Changes'
28+
labels:
29+
- 'ci'
30+
- 'documentation'
31+
- 'new-category'
32+
- 'schema-builder'
33+
- 'schema'
34+
- title: 'Dependencies'
35+
collapse-after: 3
36+
labels:
37+
- 'dependencies'
38+
category-template: '#### $TITLE'
39+
change-template: '* $TITLE (#$NUMBER, thanks @$AUTHOR)'
40+
change-title-escapes: '\<*_&'
41+
version-resolver:
42+
major:
43+
labels:
44+
- 'breaking'
45+
minor:
46+
labels:
47+
- 'enhancement'
48+
- 'new-preset'
49+
- 'new-field'
50+
- 'new-value'
51+
- 'new-icon'
52+
- 'new-label'
53+
- 'new-category'
54+
- 'add-field'
55+
- 'deprecating'
56+
- 'regional'
57+
patch:
58+
labels:
59+
- 'bug'
60+
- 'documentation'
61+
default: minor
62+
template: '$CHANGES'

.github/workflows/deploy-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
env:
5959
NETLIFY_AUTH_TOKEN: ${{secrets.NETLIFY_AUTH_TOKEN}}
6060
NETLIFY_SITE_ID: ${{secrets.NETLIFY_SITE_ID}}
61-
run: ./node_modules/.bin/netlify deploy --dir=. --alias=pr-${{steps.pull-request-number.outputs.result}}
61+
run: ./node_modules/.bin/netlify deploy --no-build --dir=. --alias=pr-${{steps.pull-request-number.outputs.result}}
6262

6363
- name: Add comment to pull request
6464
uses: actions/github-script@v7
@@ -80,7 +80,7 @@ jobs:
8080
owner: context.repo.owner,
8181
repo: context.repo.repo,
8282
issue_number: pullRequestNumber,
83-
body: `${start} **[Your pull request preview is ready](https://pr-${pullRequestNumber}--ideditor-presets-preview.netlify.app/id/dist/#locale=en&map=17.00/14.65485/121.06466)**\n\nPlease use this preview to check your changes. Ideally use [the **test documentation** template](https://github.com/openstreetmap/id-tagging-schema/blob/main/.github/PULL_REQUEST_TEMPLATE.md?plain=1#L38-L69) and document your test results by commenting on the PR. This will speed up the review process for everyone.\n\nFYI, once this PR is merged, you can use [the iD Editor Preview](http://preview.ideditor.com/) to test your changes in interaction with all other changes.`
83+
body: `${start} **[Your pull request preview is ready](https://pr-${pullRequestNumber}--ideditor-presets-preview.netlify.app/id/dist/#locale=en&map=18.00/48.841708/2.587656)**\n\nPlease use this preview to check your changes. Ideally use [the **test documentation** template](https://github.com/openstreetmap/id-tagging-schema/blob/main/.github/PULL_REQUEST_TEMPLATE.md?plain=1#L38-L69) and document your test results by commenting on the PR. This will speed up the review process for everyone.\n\nFYI, once this PR is merged, you can use [the iD Editor Preview](http://preview.ideditor.com/) to test your changes in interaction with all other changes.`
8484
});
8585
} else {
8686
console.log(`Preview URL comment already added to PR #${pullRequestNumber}`);
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
update_release_draft:
13+
permissions:
14+
contents: write
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: release-drafter/release-drafter@v6
18+
with:
19+
disable-autolabeler: true
20+
env:
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ jobs:
5454
env:
5555
NETLIFY_AUTH_TOKEN: ${{secrets.NETLIFY_AUTH_TOKEN}}
5656
NETLIFY_SITE_ID: ${{secrets.NETLIFY_SITE_ID}}
57-
run: ./node_modules/.bin/netlify deploy --prod --dir=iD/dist
57+
run: ./node_modules/.bin/netlify deploy --no-build --prod --dir=iD/dist

CHANGELOG.md

Lines changed: 157 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,163 @@ _Breaking developer changes, which may affect downstream projects or sites that
2323
[@xxxx]: https://github.com/xxxx
2424
-->
2525

26+
27+
# 6.12.0
28+
##### 2025-Jul-23
29+
30+
#### New Presets
31+
* Add preset for `climbing=route` point, way and relation ([#1598], thanks [@harahu])
32+
* Add preset for `climbing=crag` point and relation ([#1597], thanks [@harahu])
33+
* Add preset for `memorial=blue_plaque` ([#1601], thanks [@hb0nd])
34+
* Add preset for `climbing=route_bottom` ([#1590], thanks [@zbycz])
35+
* Add historic=aircraft Preset ([#1556], thanks [@novolife])
36+
* Create teahouse preset ([#1555], thanks [@novolife])
37+
#### New and Changed Fields
38+
* Add bridge to the structure field of canal ([#1587], thanks [@novolife])
39+
* Add preset for `climbing=area` ([#1596], thanks [@harahu])
40+
* Add "Suitable For Dogs" field to `amenity=drinking_water` preset ([#1584], thanks [@codeinabox])
41+
* Add roof shape and roof height fields to building presets ([#1552], thanks [@trs998])
42+
* Fix fields of `historic=aircraft` ([#1566], thanks [@novolife])
43+
#### Changed Presets
44+
* Add terms to `shop=fabric` ([#1619], thanks [@matkoniecz])
45+
* Add term "solicitor" to lawyer preset ([#1604], thanks [@hb0nd])
46+
* Add terms to `amenity=toilets` preset ([#1583], thanks [@matkoniecz])
47+
* Add `direction` field to Observation Tower preset ([#1575], thanks [@zbycz])
48+
* Add terms to `amenity=telephone` ([#1574], thanks [@matkoniecz])
49+
* Make `social_facility` more findable ([#1576], thanks [@matkoniecz])
50+
* Add term "apparel" to `shop=clothes` preset ([#1382], thanks [@matkoniecz])
51+
* Add term to `shop=stationery` to prevent misspelling ([#1514], thanks [@matkoniecz])
52+
* Add `ref` key to `natural=tree` `moreFields` ([#1398], thanks [@gy-mate])
53+
#### Regional Presets and Fields
54+
* Add preset for `memorial=blue_plaque` ([#1601], thanks [@hb0nd])
55+
#### Documentation and Other Changes
56+
* Docs: Update broken transifex links ([#1630], thanks [@homersimpsons])
57+
* Docs/Governance: Add closing of abandoned PRs to responsibilities of the the triage role ([#1603], thanks [@matkoniecz])
58+
* Docs: Add detailed information on integration testing ([#1593], thanks [@harahu])
59+
* Docs: Streamline wording of PR preview ([#1606], thanks [@tordans])
60+
61+
[#1382]: https://github.com/openstreetmap/id-tagging-schema/pull/1382
62+
[#1398]: https://github.com/openstreetmap/id-tagging-schema/pull/1398
63+
[#1514]: https://github.com/openstreetmap/id-tagging-schema/pull/1514
64+
[#1552]: https://github.com/openstreetmap/id-tagging-schema/pull/1552
65+
[#1555]: https://github.com/openstreetmap/id-tagging-schema/pull/1555
66+
[#1556]: https://github.com/openstreetmap/id-tagging-schema/pull/1556
67+
[#1566]: https://github.com/openstreetmap/id-tagging-schema/pull/1566
68+
[#1574]: https://github.com/openstreetmap/id-tagging-schema/pull/1574
69+
[#1575]: https://github.com/openstreetmap/id-tagging-schema/pull/1575
70+
[#1576]: https://github.com/openstreetmap/id-tagging-schema/pull/1576
71+
[#1583]: https://github.com/openstreetmap/id-tagging-schema/pull/1583
72+
[#1584]: https://github.com/openstreetmap/id-tagging-schema/pull/1584
73+
[#1587]: https://github.com/openstreetmap/id-tagging-schema/pull/1587
74+
[#1590]: https://github.com/openstreetmap/id-tagging-schema/pull/1590
75+
[#1593]: https://github.com/openstreetmap/id-tagging-schema/pull/1593
76+
[#1596]: https://github.com/openstreetmap/id-tagging-schema/pull/1596
77+
[#1597]: https://github.com/openstreetmap/id-tagging-schema/pull/1597
78+
[#1598]: https://github.com/openstreetmap/id-tagging-schema/pull/1598
79+
[#1601]: https://github.com/openstreetmap/id-tagging-schema/pull/1601
80+
[#1603]: https://github.com/openstreetmap/id-tagging-schema/pull/1603
81+
[#1604]: https://github.com/openstreetmap/id-tagging-schema/pull/1604
82+
[#1606]: https://github.com/openstreetmap/id-tagging-schema/pull/1606
83+
[#1619]: https://github.com/openstreetmap/id-tagging-schema/pull/1619
84+
[#1630]: https://github.com/openstreetmap/id-tagging-schema/pull/1630
85+
[@homersimpsons]: https://github.com/@homersimpsons
86+
[@hb0nd]: https://github.com/@hb0nd
87+
[@novolife]: https://github.com/@novolife
88+
[@codeinabox]: https://github.com/@codeinabox
89+
[@trs998]: https://github.com/@trs998
90+
[@zbycz]: https://github.com/@zbycz
91+
92+
93+
# 6.11.0
94+
##### 2025-May-12
95+
96+
#### New Presets
97+
* Add `crossing=informal` as unsearchable preset for point and line geometries ([#1140], thanks [@mikaeldui])
98+
#### New and Changed Fields
99+
* Remove `source` field by marking it as a field to be used on changesets (only) ([#1508], thanks [@tordans])
100+
#### Changed Presets
101+
* Add `ref` field to `amenity=bicycle_rental` ([#1519], thanks [@kjonosm])
102+
* Update reference tags for recycling containers and centres ([#1497], thanks [@Dimitar5555])
103+
* Add search term "empty" to Vacant Shop preset ([#1499], thanks [@matkoniecz])
104+
#### Deprecated Tags
105+
* Remove `highway=ford` deprecation ([#1492], thanks [@quincylvania])
106+
#### Bug Fixes
107+
* Fix broken "Address" documentation link ([#1489], thanks [@Vectorial1024])
108+
#### Documentation and Other Changes
109+
* Consistently use term "Wikibase" for data items also in contribution guidelines ([#1504], thanks [@matkoniecz])
110+
* Clarify term "Wikibase" for data items in the OSM wiki ([#1502], thanks [@matkoniecz])
111+
* Set up `release-drafter` ([#1503])
112+
113+
[#1140]: https://github.com/openstreetmap/id-tagging-schema/pull/1140
114+
[#1508]: https://github.com/openstreetmap/id-tagging-schema/pull/1508
115+
[#1519]: https://github.com/openstreetmap/id-tagging-schema/pull/1519
116+
[#1497]: https://github.com/openstreetmap/id-tagging-schema/pull/1497
117+
[#1499]: https://github.com/openstreetmap/id-tagging-schema/pull/1499
118+
[#1492]: https://github.com/openstreetmap/id-tagging-schema/pull/1492
119+
[#1489]: https://github.com/openstreetmap/id-tagging-schema/pull/1489
120+
[#1504]: https://github.com/openstreetmap/id-tagging-schema/pull/1504
121+
[#1502]: https://github.com/openstreetmap/id-tagging-schema/pull/1502
122+
[#1503]: https://github.com/openstreetmap/id-tagging-schema/pull/1503
123+
[@Vectorial1024]: https://github.com/Vectorial1024
124+
125+
126+
# 6.10.0
127+
##### 2025-Mar-20
128+
129+
#### New Presets
130+
* Add preset for `amenity=veterinary_pharmacy` ([#1451], thanks [@Avan2021])
131+
* Add preset for `shop=groundskeeping` ([#1448], thanks [@Avan2021])
132+
* Add preset for `shop=bbq` ([#1430], thanks [@andrewharvey])
133+
#### Changed Presets
134+
* Show `fire_hydrant/position` field by default for all Hydrants ([#1441], thanks [@sun-geo])
135+
* Add `wheelchair` field to Cycle Barrier preset ([#1232], thanks [@k-yle])
136+
* Add `operator` field to `highway=street_lamp` ([#1327], thanks [@CorruptComputer])
137+
* Use couch icon for `craft=upholsterer` ([#1462], thanks [@westnordost])
138+
* Update icons for some shop presets: (`vacant` [#1457], `art` [#1458], `craft` [#1459], `e-cigarette` [#1460], `amenity=marketplace` [#1461], thanks [@westnordost])
139+
#### New and Changed Fields
140+
* Add fields for Cycle Barrier properties: `cycle_barrier` type, `cycle_barrier:installation`, `deflection` angle, `maxwidth:physical`, `opening` width, `overlap` width and `spacing` distance ([#1232], thanks [@k-yle])
141+
* Add field for Center-Pivot Irrigation `irrigation=pivot` ([#1320], thanks [@arch0345])
142+
* Add `entrance=shop` value also to Entrance Type field ([#1446])
143+
* Add field toilets to `amenity=fast_food` as `moreFileds` ([#1454], thanks [@Avan2021])
144+
* Use translated strings for `bridge` and `tunnel` values also in `structure` fields
145+
* Add values `stone` and `tilework` to Artwork Type field ([#1443], thanks [@okainov])
146+
#### Bugfixes
147+
* Remove tag deprecation rule for `shop=photo_studio` ([#1407])
148+
#### Documentation and Other Changes
149+
* Remove `interim` directory in main branch (it's now available in a dedicated branch called `interim`) ([#1307])
150+
151+
[#1232]: https://github.com/openstreetmap/id-tagging-schema/pull/1232
152+
[#1232]: https://github.com/openstreetmap/id-tagging-schema/pull/1232
153+
[#1320]: https://github.com/openstreetmap/id-tagging-schema/pull/1320
154+
[#1327]: https://github.com/openstreetmap/id-tagging-schema/pull/1327
155+
[#1307]: https://github.com/openstreetmap/id-tagging-schema/pull/1307
156+
[#1407]: https://github.com/openstreetmap/id-tagging-schema/issues/1407
157+
[#1430]: https://github.com/openstreetmap/id-tagging-schema/pull/1430
158+
[#1441]: https://github.com/openstreetmap/id-tagging-schema/pull/1441
159+
[#1443]: https://github.com/openstreetmap/id-tagging-schema/pull/1443
160+
[#1446]: https://github.com/openstreetmap/id-tagging-schema/pull/1446
161+
[#1448]: https://github.com/openstreetmap/id-tagging-schema/pull/1448
162+
[#1451]: https://github.com/openstreetmap/id-tagging-schema/pull/1451
163+
[#1454]: https://github.com/openstreetmap/id-tagging-schema/pull/1454
164+
[#1457]: https://github.com/openstreetmap/id-tagging-schema/pull/1457
165+
[#1458]: https://github.com/openstreetmap/id-tagging-schema/pull/1458
166+
[#1459]: https://github.com/openstreetmap/id-tagging-schema/pull/1459
167+
[#1460]: https://github.com/openstreetmap/id-tagging-schema/pull/1460
168+
[#1461]: https://github.com/openstreetmap/id-tagging-schema/pull/1461
169+
[#1462]: https://github.com/openstreetmap/id-tagging-schema/pull/1462
170+
[@Avan2021]: https://github.com/Avan2021
171+
[@sun-geo]: https://github.com/sun-geo
172+
[@CorruptComputer]: https://github.com/CorruptComputer
173+
174+
175+
# 6.9.1
176+
##### 2025-Feb-18
177+
178+
* fix "Detached House" translation in en-GB ([#1438])
179+
180+
[#1438]: https://github.com/openstreetmap/id-tagging-schema/issues/1438
181+
182+
26183
# 6.9.0
27184
##### 2025-Feb-06
28185

0 commit comments

Comments
 (0)