Skip to content

Commit

Permalink
v5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tyrasd committed Nov 9, 2022
1 parent 93aa67b commit ffc9bff
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 19 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ _Breaking developer changes, which may affect downstream projects or sites that
-->


# 5.0.1

#### Bugfixes
* add missing `caseSensitive` property to many combo fields which require it


# 5.0.0

#### Schema Changes
Expand Down
52 changes: 35 additions & 17 deletions dist/fields.json
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,8 @@
"cycle_network": {
"key": "cycle_network",
"type": "networkCombo",
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"cycleway": {
"keys": [
Expand Down Expand Up @@ -935,7 +936,8 @@
"destination": {
"key": "destination",
"type": "semiCombo",
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"destination/ref_oneway": {
"key": "destination:ref",
Expand All @@ -944,12 +946,14 @@
"key": "oneway",
"value": "yes"
},
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"destination/ref": {
"key": "destination:ref",
"type": "semiCombo",
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"destination/symbol_oneway": {
"key": "destination:symbol",
Expand Down Expand Up @@ -1279,7 +1283,8 @@
"fire_hydrant/pressure": {
"key": "fire_hydrant:pressure",
"type": "combo",
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"fire_hydrant/type": {
"key": "fire_hydrant:type",
Expand Down Expand Up @@ -1502,7 +1507,8 @@
"generator/output/electricity": {
"key": "generator:output:electricity",
"type": "typeCombo",
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"generator/source": {
"key": "generator:source",
Expand Down Expand Up @@ -1534,7 +1540,8 @@
"genus": {
"key": "genus",
"type": "combo",
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"geyser/height": {
"key": "geyser:height",
Expand All @@ -1558,7 +1565,8 @@
"grades": {
"key": "grades",
"type": "combo",
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"grape_variety": {
"key": "grape_variety",
Expand Down Expand Up @@ -2334,7 +2342,8 @@
"network_road": {
"key": "network",
"type": "networkCombo",
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"network": {
"key": "network",
Expand All @@ -2350,7 +2359,8 @@
"not/name": {
"key": "not:name",
"type": "semiCombo",
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"note": {
"key": "note",
Expand Down Expand Up @@ -2401,12 +2411,14 @@
"opening_hours": {
"key": "opening_hours",
"type": "combo",
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"opening_hours/covid19": {
"key": "opening_hours:covid19",
"type": "combo",
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"operator": {
"key": "operator",
Expand Down Expand Up @@ -2764,6 +2776,7 @@
"key": "plant:output:electricity",
"type": "typeCombo",
"snake_case": false,
"caseSensitive": true,
"prerequisiteTag": {
"key": "plant:output:electricity",
"valueNot": "no"
Expand Down Expand Up @@ -2897,7 +2910,8 @@
"rating": {
"key": "rating",
"type": "combo",
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"rcn_ref": {
"key": "rcn_ref",
Expand Down Expand Up @@ -3519,7 +3533,8 @@
"species": {
"key": "species",
"type": "combo",
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"species/wikidata": {
"key": "species:wikidata",
Expand Down Expand Up @@ -3808,7 +3823,8 @@
"taxon": {
"key": "taxon",
"type": "combo",
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"tee": {
"key": "tee",
Expand Down Expand Up @@ -3919,7 +3935,8 @@
"traffic_sign": {
"key": "traffic_sign",
"type": "typeCombo",
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"traffic_sign/direction": {
"key": "traffic_sign:direction",
Expand Down Expand Up @@ -4130,7 +4147,8 @@
"via": {
"key": "via",
"type": "semiCombo",
"snake_case": false
"snake_case": false,
"caseSensitive": true
},
"video_calls": {
"key": "video",
Expand Down
2 changes: 1 addition & 1 deletion dist/fields.min.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "@openstreetmap/id-tagging-schema",
"version": "5.0.0",
"version": "5.0.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",
Expand Down

0 comments on commit ffc9bff

Please sign in to comment.