Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport 8.11] 8.11.0 changelog (#2097) * Changelog for 8.11.0 * Add redaction docs link to changelog #2100

Closed
wants to merge 27 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
85fe814
Auto-generated code for main (#2028)
elasticmachine Oct 4, 2023
186692c
Auto-generated code for main (#2030)
elasticmachine Oct 16, 2023
f7f1d7c
Auto-generated code for main (#2033)
elasticmachine Oct 18, 2023
78cc262
Auto-generated code for main (#2034)
elasticmachine Oct 23, 2023
a28a6a3
Improve proxy configuration docs (#2035)
JoshMock Oct 23, 2023
d194a22
Fix backport action (#2036)
JoshMock Oct 24, 2023
f7ed039
Add important flag to proxy config docs (#2040)
JoshMock Oct 24, 2023
84a93c2
Skip unit tests for PRs where code did not change (#2041)
JoshMock Oct 24, 2023
dc7d603
Fix unit test workflow (#2045)
JoshMock Oct 31, 2023
a6392eb
Auto-generated code for main (#2047)
elasticmachine Nov 1, 2023
f1e83ae
Add more docs about keep-alive connections (#2048)
JoshMock Nov 2, 2023
96d0adb
Action to auto-close stale issues and PRs (#2051)
JoshMock Nov 2, 2023
2d139e5
Improve unit test path filtering rules (#2052)
JoshMock Nov 2, 2023
1adc8c3
Fix version bump script (#2054)
JoshMock Nov 2, 2023
9e2ff66
Set module type to commonjs (#2053)
JoshMock Nov 2, 2023
3c5178c
Stop supporting Node v14 and v16 (#2055)
JoshMock Nov 2, 2023
ab10e46
Auto-generated code for main (#2058)
elasticmachine Nov 3, 2023
99bcff0
Path filtering improvement (#2059)
JoshMock Nov 3, 2023
5fb65d0
Update how users/permissions are set up on CI Docker image (#2060)
JoshMock Nov 3, 2023
b477470
Auto-generated code for main (#2061)
elasticmachine Nov 6, 2023
abd5018
Bump version in main to 8.10.3 (#2066)
JoshMock Nov 7, 2023
845ddaa
Auto-generated code for main (#2064)
elasticmachine Nov 8, 2023
b7b16d8
Fix arg-parsing issue in codegen script (#2068)
JoshMock Nov 8, 2023
4269197
Throw an explicit error when asStream is used with bulk helper (#2078)
JoshMock Nov 16, 2023
06e3b05
[DOCS] Adds a signpost for downloading ES or signing-up for ESS (#2084)
szabosteve Nov 27, 2023
c2c417a
Bump transport to 8.4.0 (#2095)
JoshMock Dec 12, 2023
1fb7898
8.11.0 changelog (#2097)
JoshMock Dec 12, 2023
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
Prev Previous commit
Next Next commit
Auto-generated code for main (#2047)
elasticmachine authored Nov 1, 2023
commit a6392ebe07c3d2884a725d024c7d237dd99cbd98
1 change: 1 addition & 0 deletions docs/reference.asciidoc
Original file line number Diff line number Diff line change
@@ -6370,6 +6370,7 @@ client.ml.putTrainedModelVocabulary({ model_id, vocabulary })
** *`model_id` (string)*: The unique identifier of the trained model.
** *`vocabulary` (string[])*: The model vocabulary, which must not be empty.
** *`merges` (Optional, string[])*: The optional model merges if required by the tokenizer.
** *`scores` (Optional, number[])*: The optional vocabulary value scores if required by the tokenizer.

[discrete]
==== reset_job
2 changes: 1 addition & 1 deletion src/api/api/ml.ts
Original file line number Diff line number Diff line change
@@ -1923,7 +1923,7 @@ export default class Ml {
async putTrainedModelVocabulary (this: That, params: T.MlPutTrainedModelVocabularyRequest | TB.MlPutTrainedModelVocabularyRequest, options?: TransportRequestOptions): Promise<T.MlPutTrainedModelVocabularyResponse>
async putTrainedModelVocabulary (this: That, params: T.MlPutTrainedModelVocabularyRequest | TB.MlPutTrainedModelVocabularyRequest, options?: TransportRequestOptions): Promise<any> {
const acceptedPath: string[] = ['model_id']
const acceptedBody: string[] = ['vocabulary', 'merges']
const acceptedBody: string[] = ['vocabulary', 'merges', 'scores']
const querystring: Record<string, any> = {}
// @ts-expect-error
const userBody: any = params?.body
1 change: 1 addition & 0 deletions src/api/types.ts
Original file line number Diff line number Diff line change
@@ -14051,6 +14051,7 @@ export interface MlPutTrainedModelVocabularyRequest extends RequestBase {
model_id: Id
vocabulary: string[]
merges?: string[]
scores?: double[]
}

export type MlPutTrainedModelVocabularyResponse = AcknowledgedResponseBase
1 change: 1 addition & 0 deletions src/api/typesWithBodyKey.ts
Original file line number Diff line number Diff line change
@@ -14313,6 +14313,7 @@ export interface MlPutTrainedModelVocabularyRequest extends RequestBase {
body?: {
vocabulary: string[]
merges?: string[]
scores?: double[]
}
}