Skip to content

Commit e32b499

Browse files
authored
Expand GeneralNumber to support unsigned integer types (opensearch-project#339)
1 parent 1caf11d commit e32b499

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
1111
- Preprocessing - Add schema exclusion list to filter out schemas and their dependencies ([#328](https://github.com/opensearch-project/opensearch-protobufs/pull/328))
1212
- Postprocessing- Add postprocessing support ([#333](https://github.com/opensearch-project/opensearch-protobufs/pull/333))
1313
- Preprocessing - Collapses single-item composite schemas (oneOf, allOf, anyOf) by replacing the composite with its single child schema. ([#334](https://github.com/opensearch-project/opensearch-protobufs/pull/334))
14+
- Expand GeneralNumber to support unsigned integer types ([#339](https://github.com/opensearch-project/opensearch-protobufs/pull/339))
1415

1516
### Changed
1617
- Backward incompatible change for unimplemented query types `ScriptScoreQuery`, `SimpleQueryStringQuery`, `DisMaxQuery`, `IntervalsQuery`, `QueryStringQuery` and `TermsAggregation` ([#324](https://github.com/opensearch-project/opensearch-protobufs/pull/324))

tools/proto-convert/src/config/protobuf-schema-template/custom_message.mustache

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ message GeneralNumber {
2929
int64 int64_value = 2;
3030
float float_value = 3;
3131
double double_value = 4;
32+
uint32 uint32_value = 5;
33+
uint64 uint64_value = 6;
3234
}
3335
}
3436

0 commit comments

Comments
 (0)