Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions .redocly.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
plugins:
[]
plugins: []
# This section is where you can import local plugins.
# We don't support community plugins.
# You don't need to import our built-in plugins and rules.
Expand All @@ -11,14 +10,12 @@ extends:
# You may override specific settings in the subsequent sections.
- recommended # This is the default (and built in) configuration. If it is too strict, try `minimal`.

resolve:
{}
resolve: {}
# Use this when you have external links in your definition that are not publicly accessible.
# Not required for Redocly API registry links.
# We recommend using environment variables for when possible.

preprocessors:
{}
preprocessors: {}
# Preprocessors are rarely indicated -- avoid if possible.
# This section can be omitted.

Expand All @@ -30,7 +27,6 @@ rules:
severity: error
no-empty-servers: off

decorators:
{}
decorators: {}
# Decorators modify the the definition after validation is complete, only in the bundling process.
# This section can be omitted if you don't use decorators.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"1.6.1"}
{".":"1.7.0"}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.7.0](https://github.com/MapColonies/osm-change-generator-server/compare/v1.6.1...v1.7.0) (2025-12-09)


### Features

* **change:** support tag key-value length filtering ([2643f29](https://github.com/MapColonies/osm-change-generator-server/commit/2643f296e2b2a9ee7130d077a1299ef42543468d))

## [1.6.1](https://github.com/MapColonies/osm-change-generator-server/compare/v1.6.0...v1.6.1) (2025-08-14)


Expand Down
4 changes: 3 additions & 1 deletion config/custom-environment-variables.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@
"shouldHandlePrecision": {
"__name": "APP_SHOULD_HANDLE_PRECISION",
"__format": "boolean"
}
},
"maxTagKeyLength": "APP_MAX_TAG_KEY_LENGTH",
"maxTagValueLength": "APP_MAX_TAG_VALUE_LENGTH"
},
"server": {
"port": "SERVER_PORT",
Expand Down
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: change-generator
description: A Helm chart for osm-change-generator-server service
type: application
version: 1.6.1
appVersion: 1.6.1
version: 1.7.0
appVersion: 1.7.0
6 changes: 6 additions & 0 deletions helm/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,10 @@ data:
{{- else }}
APP_SHOULD_HANDLE_PRECISION: 'false'
{{- end }}
{{- if .Values.env.app.maxTagKeyLength.enabled }}
APP_MAX_TAG_KEY_LENGTH: {{ .Values.env.app.maxTagKeyLength.value | quote }}
{{- end }}
{{- if .Values.env.app.maxTagValueLength.enabled }}
APP_MAX_TAG_VALUE_LENGTH: {{ .Values.env.app.maxTagValueLength.value | quote }}
{{- end }}
{{- end }}
6 changes: 6 additions & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@ env:
app:
shouldHandleLOD2: false
shouldHandlePrecision: false
maxTagKeyLength:
enabled: false
# value: 255
maxTagValueLength:
enabled: false
# value: 255


route:
Expand Down
2 changes: 1 addition & 1 deletion openapi3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ info:
description: >-
A restful API for generating osm-change based on the diff between geojson
and osm entity
version: 1.6.1
version: 1.7.0
license:
name: MIT
url: https://opensource.org/licenses/MIT
Expand Down
Loading
Loading