Releases: chaoss/augur
Releases · chaoss/augur
v0.70.0 - Windows 95 Man!
What's Changed
- add podman compose file by @GaryPWhite in #2780
- handle rate limiting and more repo load messages by @GaryPWhite in #2782
- Fix some typos and broken links in the docs by @mhauru in #2773
- Add full collection for messages by @ABrain7710 in #2788
New Contributors
Full Changelog: v0.63.3...v0.70.0
v0.63.3 - Supply Chain Gang
What's Changed
- Add Check to SQL Update Statements to Avoid constraints on
date_last_collected
by @IsaacMilarky in #2759 - Fix Facade Task Signature to Take
repo_git
instead ofrepo_id
by @IsaacMilarky in #2775 - add last_collected checks to retry_errored_repos to correctly follow … by @sgoggins in #2760
- Dev patch release by @sgoggins in #2774
- Rollback transaction when query throws exception by @ABrain7710 in #2777
Full Changelog: v0.63.1...v0.63.3
v0.63.1 - April Ludgate
What's Changed
Full Changelog: v0.63.0...v0.63.1
The Specific error message in the flower and augur logs was:
ImportError: cannot import name 'triu' from 'scipy.linalg' (/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/scipy/linalg/__init__.py)
FULL Stack Trace:
2024-04-05 18:08:23 linda augur[614166] INFO Starting facade worker processes with concurrency=20
Traceback (most recent call last):
File "/home/sean/github/virtualenv/rh-k12/bin/celery", line 8, in <module>
sys.exit(main())
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/__main__.py", line 15, in main
sys.exit(_main())
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/bin/celery.py", line 217, in main
return celery(auto_envvar_prefix="CELERY")
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/click/core.py", line 1128, in __call__
return self.main(*args, **kwargs)
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/click/core.py", line 1053, in main
rv = self.invoke(ctx)
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/click/core.py", line 1659, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/click/core.py", line 1395, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/click/core.py", line 754, in invoke
return __callback(*args, **kwargs)
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/click/decorators.py", line 26, in new_func
return f(get_current_context(), *args, **kwargs)
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/bin/base.py", line 134, in caller
return f(ctx, *args, **kwargs)
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/bin/worker.py", line 343, in worker
worker = app.Worker(
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/worker/worker.py", line 94, in __init__
self.app.loader.init_worker()
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/loaders/base.py", line 111, in init_worker
self.import_default_modules()
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/loaders/base.py", line 106, in import_default_modules
return [self.import_task_module(m) for m in self.default_modules]
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/loaders/base.py", line 106, in <listcomp>
return [self.import_task_module(m) for m in self.default_modules]
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/loaders/base.py", line 86, in import_task_module
return self.import_from_cwd(module)
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/loaders/base.py", line 92, in import_from_cwd
return import_from_cwd(
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/utils/imports.py", line 105, in import_from_cwd
return imp(module, package=package)
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/loaders/base.py", line 89, in import_module
return importlib.import_module(module, package=package)
File "/usr/lib/python3.10/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1050, in _gcd_import
File "<frozen importlib._bootstrap>", line 1027, in _find_and_load
File "<frozen importlib._bootstrap>", line 1006, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 688, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 883, in exec_module
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "/home/sean/github/rh-k12/augur/tasks/data_analysis/message_insights/tasks.py", line 11, in <module>
from augur.tasks.data_analysis.message_insights.message_novelty import novelty_analysis
File "/home/sean/github/rh-k12/augur/tasks/data_analysis/message_insights/message_novelty.py", line 10, in <module>
from gensim.models.doc2vec import Doc2Vec, TaggedDocument
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/gensim/__init__.py", line 11, in <module>
from gensim import parsing, corpora, matutils, interfaces, models, similarities, utils # noqa:F401
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/gensim/corpora/__init__.py", line 6, in <module>
from .indexedcorpus import IndexedCorpus # noqa:F401 must appear before the other classes
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/gensim/corpora/indexedcorpus.py", line 14, in <module>
from gensim import interfaces, utils
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/gensim/interfaces.py", line 19, in <module>
from gensim import utils, matutils
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/gensim/matutils.py", line 20, in <module>
from scipy.linalg import get_blas_funcs, triu
ImportError: cannot import name 'triu' from 'scipy.linalg' (/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/scipy/linalg/__init__.py)
Traceback (most recent call last):
File "/home/sean/github/virtualenv/rh-k12/bin/celery", line 8, in <module>
sys.exit(main())
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/__main__.py", line 15, in main
sys.exit(_main())
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/bin/celery.py", line 217, in main
return celery(auto_envvar_prefix="CELERY")
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/click/core.py", line 1128, in __call__
return self.main(*args, **kwargs)
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/click/core.py", line 1053, in main
rv = self.invoke(ctx)
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/click/core.py", line 1659, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/click/core.py", line 1395, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/click/core.py", line 754, in invoke
return __callback(*args, **kwargs)
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/click/decorators.py", line 26, in new_func
return f(get_current_context(), *args, **kwargs)
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/bin/base.py", line 134, in caller
return f(ctx, *args, **kwargs)
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/bin/worker.py", line 343, in worker
worker = app.Worker(
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/worker/worker.py", line 94, in __init__
self.app.loader.init_worker()
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/loaders/base.py", line 111, in init_worker
self.import_default_modules()
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/loaders/base.py", line 106, in import_default_modules
return [self.import_task_module(m) for m in self.default_modules]
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/loaders/base.py", line 106, in <listcomp>
return [self.import_task_module(m) for m in self.default_modules]
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/loaders/base.py", line 86, in import_task_module
return self.import_from_cwd(module)
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/loaders/base.py", line 92, in import_from_cwd
return import_from_cwd(
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/utils/imports.py", line 105, in import_from_cwd
return imp(module, package=package)
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/celery/loaders/base.py", line 89, in import_module
return importlib.import_module(module, package=package)
File "/usr/lib/python3.10/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1050, in _gcd_import
File "<frozen importlib._bootstrap>", line 1027, in _find_and_load
File "<frozen importlib._bootstrap>", line 1006, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 688, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 883, in exec_module
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "/home/sean/github/rh-k12/augur/tasks/data_analysis/message_insights/tasks.py", line 11, in <module>
from augur.tasks.data_analysis.message_insights.message_novelty import novelty_analysis
File "/home/sean/github/rh-k12/augur/tasks/data_analysis/message_insights/message_novelty.py", line 10, in <module>
from gensim.models.doc2vec import Doc2Vec, TaggedDocument
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site-packages/gensim/__init__.py", line 11, in <module>
from gensim import parsing, corpora, matutils, interfaces, models, similarities, utils # noqa:F401
File "/home/sean/github/virtualenv/rh-k12/lib/python3.10/site...
v0.63.0 - Ides of March
What's Changed
- Dev updated from Main following Action Changes for Baseline by @sgoggins in #2709
- Add gitlab contributors for issues by @ABrain7710 in #2718
- Clean up unused imports and start defining collection database engine in db folder by @ABrain7710 in #2717
- Patch DB CLI to Include GitLab Logic by @IsaacMilarky in #2719
- Add
augur api start
andaugur collection start
commands by @ABrain7710 in #2681 - Handling database engines in the CLI by @ABrain7710 in #2721
- Improve profile page by @Ulincsys in #2726
- Db improvements by @ABrain7710 in #2728
- Change server.py to create engine like before by @ABrain7710 in #2730
- Config usage improvements by @ABrain7710 in #2729
- Change server.py back to using AugurConfig by @ABrain7710 in #2732
- Add 'Road's and Bridges' Style Project Labeling Endpoint to Augur by @IsaacMilarky in #2734
- Add init.py to gitlab task folder by @Ulincsys in #2736
- Allow exception visibility in CLI by @Ulincsys in #2735
- Add Repository ID Parameters to Line Complexity Endpoints by @IsaacMilarky in #2731
- Fix Install Chmod Issue as Well as SQL Syntax by @IsaacMilarky in #2737
- Fix engine.execute error : Dev update by @sgoggins in #2738
- Fix RabbitMQ config issue in Docker by @Ulincsys in #2739
- Dev update to index branch by @sgoggins in #2740
- Facade Quick Fix by @IsaacMilarky in #2742
- Add gitlab mr contributors by @ABrain7710 in #2743
- Update dev with hot fixes by @sgoggins in #2744
- Dev to index patch by @sgoggins in #2745
- Index patch 334: Adds several performance indexes by @sgoggins in #2746
- Dev api fixes by @ABrain7710 in #2748
- Release by @sgoggins in #2747
Full Changelog: v0.62.6...v0.63.0
v0.62.6 - KC Chiefs
What's Changed
- Fix Script Lacking Identifier for GH Actions by @IsaacMilarky in #2712
- Remove Unneeded 'git commit' Call in Github Action Script Because it Returns Non-Zero Bash Code by @IsaacMilarky in #2714
- Disable Method Docstring Requirement for Pylint by @IsaacMilarky in #2723
Full Changelog: v0.62.5...v0.62.6
v0.62.5 - KC Chiefs
What's Changed
- Fix query string by @ABrain7710 in #2696
- Main into dev by @sgoggins in #2704
- Release by @sgoggins in #2705
- Clean up installation docs / remove misc. docker installation files by @GaryPWhite in #2706
- Add GitHub Action to Always Keep Dev up to Date with Main by @IsaacMilarky in #2707
- Fix Issue with Auto-merge GitHub Action by @IsaacMilarky in #2711
- API Patch: Repairs Viz API Issues for PRs on some instances. by @sgoggins in #2710
Full Changelog: v0.62.4...v0.62.5
v0.62.4 - KC Chiefs
What's Changed
- docker-compose -> docker compose by @GaryPWhite in #2690
- updated Dockerfile Augur versions by @sgoggins in #2691
Full Changelog: v0.62.3...v0.62.4
v0.62.3 - KC Chiefs
v0.62.2 - KC Chiefs
What's Changed
- add rabbitmq docker configuration by @GaryPWhite in #2684
- Updating versioning for release publication by @sgoggins in #2685
Full Changelog: v0.62.1...v0.62.2
v0.62.1 - KC Chiefs
What's Changed
- Mark 404'd Repos to be Ignored and Re-collect Errored Repos by @IsaacMilarky in #2678
- Fix NULL Data Issue in 2 visualization endpoints by @sgoggins in #2682
Full Changelog: v0.62.0...v0.62.1