Compare commits

...

1 commit
main ... v5.1.1

Author SHA1 Message Date
Martin Raifer
ef032ae8f8
[backport: v5.1.1] add missing key to structure_power field
see #676
2022-12-09 11:25:55 +01:00
7 changed files with 32 additions and 3 deletions

View file

@ -17,6 +17,14 @@ _Breaking developer changes, which may affect downstream projects or sites that
[@xxxx]: https://github.com/xxxx
-->
# 5.1.1
#### Bugfixes
* Fix a bug causing `undefined` to be used as the tag key in the `structure` field ([#676])
[#676]: https://github.com/openstreetmap/id-tagging-schema/issues/676
# 5.1.0
#### :mega: Release Highlights

View file

@ -1,5 +1,6 @@
{
"type": "combo",
"key": "structure",
"label": "Structure",
"strings": {
"options": {

1
dist/fields.json vendored
View file

@ -3677,6 +3677,7 @@
},
"structure_power": {
"type": "combo",
"key": "structure",
"autoSuggestions": false,
"customValues": false,
"options": [

File diff suppressed because one or more lines are too long

19
dist/taginfo.json vendored
View file

@ -18672,6 +18672,25 @@
"key": "stroller",
"description": "🄵 Stroller Access"
},
{
"key": "structure",
"description": "🄵 Structure"
},
{
"key": "structure",
"value": "lattice",
"description": "🄵🅅 Structure: Lattice"
},
{
"key": "structure",
"value": "solid",
"description": "🄵🅅 Structure: Solid"
},
{
"key": "structure",
"value": "tubular",
"description": "🄵🅅 Structure: Tubular"
},
{
"key": "tunnel",
"description": "🄵 Structure, 🄵 Type"

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"type": "module",
"name": "@openstreetmap/id-tagging-schema",
"version": "5.1.0",
"version": "5.1.1",
"description": "The OpenStreetMap tagging model used by the iD editor",
"homepage": "https://github.com/openstreetmap/id-tagging-schema#readme",
"bugs": "https://github.com/openstreetmap/id-tagging-schema/issues",