File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 11[[release-notes]]
22== Release notes
33
4+ * <<rn-8-11-0>>
45* <<rn-8-10-1>>
56* <<rn-8-10-0>>
67* <<rn-8-9-0>>
3132* <<rn-8-1-0>>
3233* <<rn-8-0-0>>
3334
35+ [discrete]
36+ [[rn-8-11-0]]
37+ === 8.11.0 (2023-11-13)
38+
39+ - Support Python 3.12
40+ - Added missing `scores` parameter to create trained model vocabulary API
41+ - Added missing `delete_dest_index` parameter to delete transform API
42+
3443[discrete]
3544[[rn-8-10-1]]
3645=== 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(
262262 if not ok and raise_on_error and status_code not in ignore_status :
263263 # include original document source
264264 if len (data ) > 1 :
265- item ["data" ] = data [1 ] # type: ignore[misc]
265+ item ["data" ] = data [1 ]
266266 errors .append ({op_type : item })
267267
268268 if ok or not errors :
@@ -299,7 +299,7 @@ def _process_bulk_chunk_error(
299299 op_type , action = data [0 ].copy ().popitem ()
300300 info = {"error" : err_message , "status" : error .status_code , "exception" : error }
301301 if op_type != "delete" and len (data ) > 1 :
302- info ["data" ] = data [1 ] # type: ignore[misc]
302+ info ["data" ] = data [1 ]
303303 info .update (action )
304304 exc_errors .append ({op_type : info })
305305
You can’t perform that action at this time.
0 commit comments