diff --git a/docs/changelog.asciidoc b/docs/changelog.asciidoc index 5dd160a2c..1e01389b1 100644 --- a/docs/changelog.asciidoc +++ b/docs/changelog.asciidoc @@ -304,4 +304,23 @@ If you are already passing the basic auth options in the `auth` configuration, t [discrete] ===== Calling `client.close` will reject new requests -Once you call `client.close` every new request after that will be rejected with a `NoLivingConnectionsError`. In-flight requests will be executed normally unless an in-flight request requires a retry, in which case it will be rejected. \ No newline at end of file +Once you call `client.close` every new request after that will be rejected with a `NoLivingConnectionsError`. In-flight requests will be executed normally unless an in-flight request requires a retry, in which case it will be rejected. + +[discrete] +===== Parameters rename + +- `ilm.delete_lifecycle`: `policy` parameter has been renamed to `name` +- `ilm.get_lifecycle`: `policy` parameter has been renamed to `name` +- `ilm.put_lifecycle`: `policy` parameter has been renamed to `name` +- `snapshot.cleanup_repository`: `repository` parameter has been renamed to `name` +- `snapshot.create_repository`: `repository` parameter has been renamed to `name` +- `snapshot.delete_repository`: `repository` parameter has been renamed to `name` +- `snapshot.get_repository`: `repository` parameter has been renamed to `name` +- `snapshot.verify_repository`: `repository` parameter has been renamed to `name` + +[discrete] +===== Removal of snake_cased methods + +The v7 client provided snake_cased methods, such as `client.delete_by_query`. This is no longer supported, now only camelCased method are present. +So `client.delete_by_query` can be accessed with `client.deleteByQuery` +