Curator-opensearch

Latest version: v0.0.13

Safety actively analyzes 681866 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 13 of 17

3.0.0

--------------------

**Release Notes**

The full release of Curator 3.0 is out! Check out all of the changes here!

*Note:* This release is _not_ reverse compatible with any previous version.

Because 3.0 is a major point release, there have been some major changes to
both the API as well as the CLI arguments and structure.

Be sure to read the updated command-line specific docs in the
[wiki](https://github.com/elasticsearch/curator/wiki) and change your
command-line arguments accordingly.

The API docs are still at http://curator.readthedocs.io. Be sure to read the
latest docs, or select the docs for 3.0.0.

**General**

* **Breaking changes to the API.** Because this is a major point revision,
changes to the API have been made which are non-reverse compatible. Before
upgrading, be sure to update your scripts and test them thoroughly.
* **Python 3 support** Somewhere along the line, Curator would no longer work
with curator. All tests now pass for both Python2 and Python3, with 99%
code coverage in both environments.
* **New CLI library.** Using Click now. http://click.pocoo.org/3/
This change is especially important as it allows very easy CLI integration
testing.
* **Pipelined filtering!** You can now use ``--older-than`` & ``--newer-than``
in the same command! You can also provide your own regex via the
``--regex`` parameter. You can use multiple instances of the ``--exclude``
flag.
* **Manually include indices!** With the ``--index`` paramter, you can add an
index to the working list. You can provide multiple instances of the
``--index`` parameter as well!
* **Tests!** So many tests now. Test coverage of the API methods is at 100%
now, and at 99% for the CLI methods. This doesn't mean that all of the
tests are perfect, or that I haven't missed some scenarios. It does mean,
however, that it will be much easier to write tests if something turns up
missed. It also means that any new functionality will now need to have
tests.
* **Iteration changes** Methods now only iterate through each index when
appropriate! In fact, the only commands that iterate are `alias` and
`optimize`. The `bloom` command will iterate, but only if you have added
the `--delay` flag with a value greater than zero.
* **Improved packaging!** Methods have been moved into categories of
``api`` and ``cli``, and further broken out into individual modules to help
them be easier to find and read.
* Check for allocation before potentially re-applying an allocation rule.
273 (ferki)
* Assigning replica count and routing allocation rules _can_ be done to closed
indices. 283 (ferki)

**Bug fixes**

* Don't accidentally delete ``.kibana`` index. 261 (malagoli)
* Fix segment count for empty indices. 265 (untergeek)
* Change bloom filter cutoff Elasticsearch version to 1.4. Reported in 267
(untergeek)

3.0.0rc1

-----------------------

**Release Notes**

RC1 is here! I'm re-releasing the Changes from all betas here, minus the
intra-beta code fixes. Barring any show stoppers, the official release will be
soon.

**General**

* **Breaking changes to the API.** Because this is a major point revision,
changes to the API have been made which are non-reverse compatible. Before
upgrading, be sure to update your scripts and test them thoroughly.
* **Python 3 support** Somewhere along the line, Curator would no longer work
with curator. All tests now pass for both Python2 and Python3, with 99%
code coverage in both environments.
* **New CLI library.** Using Click now. http://click.pocoo.org/3/
This change is especially important as it allows very easy CLI integration
testing.
* **Pipelined filtering!** You can now use ``--older-than`` & ``--newer-than``
in the same command! You can also provide your own regex via the
``--regex`` parameter. You can use multiple instances of the ``--exclude``
flag.
* **Manually include indices!** With the ``--index`` paramter, you can add an
index to the working list. You can provide multiple instances of the
``--index`` parameter as well!
* **Tests!** So many tests now. Test coverage of the API methods is at 100%
now, and at 99% for the CLI methods. This doesn't mean that all of the
tests are perfect, or that I haven't missed some scenarios. It does mean,
however, that it will be much easier to write tests if something turns up
missed. It also means that any new functionality will now need to have
tests.
* Methods now only iterate through each index when appropriate!
* Improved packaging! Hopefully the ``entry_point`` issues some users have
had will be addressed by this. Methods have been moved into categories of
``api`` and ``cli``, and further broken out into individual modules to help
them be easier to find and read.
* Check for allocation before potentially re-applying an allocation rule.
273 (ferki)
* Assigning replica count and routing allocation rules _can_ be done to closed
indices. 283 (ferki)

**Bug fixes**

* Don't accidentally delete ``.kibana`` index. 261 (malagoli)
* Fix segment count for empty indices. 265 (untergeek)
* Change bloom filter cutoff Elasticsearch version to 1.4. Reported in 267
(untergeek)

3.0.0b4

----------------------

**Notes**

Integration testing! Because I finally figured out how to use the Click
Testing API, I now have a good collection of command-line simulations,
complete with a real back-end. This testing found a few bugs (this is why
testing exists, right?), and fixed a few of them.

**Bug fixes**

* HUGE! `curator show snapshots` would _delete_ snapshots. This is fixed.
* Return values are now being sent from the commands.
* `scripttest` is no longer necessary (click.Test works!)
* Calling `get_snapshot` without a snapshot name returns all snapshots

3.0.0b3

----------------------

**Bug fixes**

* setup.py was lacking the new packages "curator.api" and "curator.cli" The
package works now.
* Python3 suggested I had to normalize the beta tag to just b3, so that's also
changed.
* Cleaned out superfluous imports and logger references from the __init__.py
files.

3.0.0beta2

--------------------------

**Bug fixes**

* Python3 issues resolved. Tests now pass on both Python2 and Python3

3.0.0beta1

--------------------------

**General**

* **Breaking changes to the API.** Because this is a major point revision,
changes to the API have been made which are non-reverse compatible. Before
upgrading, be sure to update your scripts and test them thoroughly.
* **New CLI library.** Using Click now. http://click.pocoo.org/3/
* **Pipelined filtering!** You can now use ``--older-than`` & ``--newer-than``
in the same command! You can also provide your own regex via the
``--regex`` parameter. You can use multiple instances of the ``--exclude``
flag.
* **Manually include indices!** With the ``--index`` paramter, you can add an
index to the working list. You can provide multiple instances of the
``--index`` parameter as well!
* **Tests!** So many tests now. Unit test coverage of the API methods is at
100% now. This doesn't mean that all of the tests are perfect, or that I
haven't missed some scenarios. It does mean that any new functionality will
need to also have tests, now.
* Methods now only iterate through each index when appropriate!
* Improved packaging! Hopefully the ``entry_point`` issues some users have
had will be addressed by this. Methods have been moved into categories of
``api`` and ``cli``, and further broken out into individual modules to help
them be easier to find and read.
* Check for allocation before potentially re-applying an allocation rule.
273 (ferki)

**Bug fixes**

* Don't accidentally delete ``.kibana`` index. 261 (malagoli)
* Fix segment count for empty indices. 265 (untergeek)
* Change bloom filter cutoff Elasticsearch version to 1.4. Reported in
267 (untergeek)

Page 13 of 17

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.