Skip to content

Commit 670c27b

Browse files
committed
update changelog
Signed-off-by: xil <fridalu66@gmail.com>
1 parent da1262c commit 670c27b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
1010
- Change vendorExtension protobuf type handling to use protobuf type instead of openApi type ([#409](https://github.com/opensearch-project/opensearch-protobufs/pull/409))
1111
- Normalize mixed oneOf patterns ([#416](https://github.com/opensearch-project/opensearch-protobufs/pull/416))
1212
- Add normalizeAnyOfInAllOf transformation to prevent protobuf generator from flattening allOf+anyOf structures ([#425](https://github.com/opensearch-project/opensearch-protobufs/pull/425))
13-
- Updated deduplicateOneOfWithArrayType to preserve oneOf variants when they have different title attributes
13+
- Updated deduplicateOneOfWithArrayType to preserve oneOf variants when they have different title attributes ([#436](https://github.com/opensearch-project/opensearch-protobufs/pull/436))
1414
### Removed
1515

1616
### Fixed

tools/proto-convert/src/SchemaModifier.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export class SchemaModifier {
111111
if (!('$ref' in schema) && Array.isArray(schema.oneOf)) {
112112
const oneOfs = schema.oneOf;
113113

114-
const arrayMap = new Map<string, any>(); // signature -> array item
114+
const arrayMap = new Map<string, any>();
115115
var deleteIndx = -1;
116116

117117
// Collect all array items

0 commit comments

Comments
 (0)