Skip to content

Commit

Permalink
Prepare for new release (#14)
Browse files Browse the repository at this point in the history
* misc: tweak workflows (#7)

Migrating conditions over as surface-security/surface#86

* feature: support lifecycle policies on index creation (#8)

* feature: support lifecycle policies on index creation

ElasticSearch supports multiple lifecycle policies but when instances
have many daily indexes, updating all existing indexes lifecycle
policies can be cumbersome. Hence, to facilitate its management,
collectors can specify lifecycle policies instead of attaching the
default one (if your ElasticSearch has one, otherwise it's simply empty)
which can be useful if you have different types of collectors and wish
to apply different policies to them.

* fixup: add testapp to installed apps

This ensures collectors are loaded every time. Since `testapp` serves
for testing, as well as to demonstrate how to use these packages, we
should ensure we have a working example in this app.

* misc: Update README

Add install instructions, as well as a how-to to implement new collectors.

* misc: bump version to new release

* Update the version on Django in setup.cfg install_requirements (#13)

Signed-off-by: pacuraro <[email protected]>

* misc: version bump for new release

---------

Signed-off-by: pacuraro <[email protected]>
Signed-off-by: Gustavo Silva <[email protected]>
Co-authored-by: Duarte Duarte <[email protected]>
Co-authored-by: pacuraro <[email protected]>
  • Loading branch information
3 people authored Jul 27, 2023
1 parent 448ec5a commit d17e69b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion olympus/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
__version__ = '0.0.4'
__version__ = '0.0.5'


# set default_app_config when using django earlier than 3.2
try:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ zip_safe = False
include_package_data = True
packages = find:
install_requires =
Django >= 3.0, < 4
Django >= 3.0, < 5
elasticsearch >= 6.8, < 7
# TODO: make tqdm optional
tqdm >= 4, < 5
Expand Down

0 comments on commit d17e69b

Please sign in to comment.