File tree 2 files changed +12
-2
lines changed
2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
1
[[release-notes]]
2
2
== Release notes
3
3
4
+ * <<rn-8-11-0>>
4
5
* <<rn-8-10-1>>
5
6
* <<rn-8-10-0>>
6
7
* <<rn-8-9-0>>
31
32
* <<rn-8-1-0>>
32
33
* <<rn-8-0-0>>
33
34
35
+ [discrete]
36
+ [[rn-8-11-0]]
37
+ === 8.11.0 (2023-11-13)
38
+
39
+ - Support Python 3.12
40
+ - Removed deprecation warnings when using `body` parameter
41
+ - Added missing `scores` parameter to create trained model vocabulary API
42
+ - Added missing `delete_dest_index` parameter to delete transform API
43
+
34
44
[discrete]
35
45
[[rn-8-10-1]]
36
46
=== 8.10.1 (2023-10-13)
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ def _process_bulk_chunk_success(
262
262
if not ok and raise_on_error and status_code not in ignore_status :
263
263
# include original document source
264
264
if len (data ) > 1 :
265
- item ["data" ] = data [1 ] # type: ignore[misc]
265
+ item ["data" ] = data [1 ]
266
266
errors .append ({op_type : item })
267
267
268
268
if ok or not errors :
@@ -299,7 +299,7 @@ def _process_bulk_chunk_error(
299
299
op_type , action = data [0 ].copy ().popitem ()
300
300
info = {"error" : err_message , "status" : error .status_code , "exception" : error }
301
301
if op_type != "delete" and len (data ) > 1 :
302
- info ["data" ] = data [1 ] # type: ignore[misc]
302
+ info ["data" ] = data [1 ]
303
303
info .update (action )
304
304
exc_errors .append ({op_type : info })
305
305
You can’t perform that action at this time.
0 commit comments