Skip to content

Commit

Permalink
5.8.0 Release
Browse files Browse the repository at this point in the history
Signed-off-by: SlavomirMazurPantheon <slavomir.mazur@pantheon.tech>
  • Loading branch information
SlavomirMazurPantheon committed Dec 20, 2022
1 parent abca9ea commit 477f39e
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## Deployment Release Notes

* ##### vm.m.p - 2022-MM-DD
* ##### vm.m.p - 2023-MM-DD

* ##### v5.8.0 - 2022-12-20

* ConfD update to version 8.0 [#174](https://github.com/YangCatalog/deployment/issues/174)

* ##### v5.7.0 - 2022-11-11

Expand Down
2 changes: 1 addition & 1 deletion backend
Submodule backend updated 58 files
+2 −0 .coveragerc
+35 −0 .github/workflows/linting.yml
+52 −20 .github/workflows/tests.yml
+2 −2 .vscode/launch.json
+15 −1 CHANGELOG.md
+1 −1 Dockerfile
+16 −11 README.md
+0 −0 api/cache/__init__.py
+12 −0 api/cache/api_cache.py
+1 −0 api/cache/flask_cache_dir/.gitkeep
+5 −2 api/receiver.py
+91 −0 api/views/README.md
+18 −0 api/views/comparisons/__init__.py
+372 −0 api/views/comparisons/comparisons.py
+0 −0 api/views/redisSearch/__init__.py
+1 −317 api/views/redisSearch/redisSearch.py
+1 −0 api/views/yangSearch/constants.py
+27 −77 api/views/yangSearch/elkSearch.py
+177 −31 api/views/yangSearch/grep_search.py
+1 −1 api/views/yangSearch/response_row.py
+104 −74 api/views/yangSearch/yangSearch.py
+28 −23 api/yangCatalogApi.py
+9 −0 codecov.yml
+1 −1 crontab
+1 −1 documentation/source/index.html.md
+6 −2 elasticsearchIndexing/create_indices.py
+3 −2 ietfYangDraftPull/draftPull.py
+1 −1 ietfYangDraftPull/draftPullUtility.py
+3 −2 ietfYangDraftPull/ianaPull.py
+5 −5 parseAndPopulate/modulesComplicatedAlgorithms.py
+6 −0 parseAndPopulate/populate.py
+5 −10 parseAndPopulate/resolve_expiration.py
+3 −7 parseAndPopulate/reviseSemver.py
+42 −46 prepare_environment.sh
+2 −2 recovery/README.md
+10 −15 recovery/elk_fill.py
+3 −2 requirements.txt
+3 −4 sandbox/check_schema.py
+2 −0 sandbox/constants.py
+10 −5 sandbox/generate_schema_urls.py
+22 −0 sandbox/password_reset.py
+5 −22 statistic/statistics.py
+0 −0 tests/resources/test_search/search_test_data.json
+6 −6 tests/test_api_admin.py
+3 −3 tests/test_api_internal.py
+10 −9 tests/test_api_search.py
+132 −0 tests/test_fetch_modules.py
+14 −0 tests/test_groupings.py
+1 −0 tests/test_modules.py
+11 −0 tests/test_modulesComplicatedAlgorithms.py
+589 −0 tests/test_resolvers.py
+67 −12 tests/test_search.py
+1 −0 tests_requirements.txt
+55 −0 utility/fetch_modules.py
+13 −4 utility/remove_unused.py
+15 −8 utility/revise_tree_type.py
+17 −0 utility/tests/test_util.py
+1 −1 utility/util.py
2 changes: 1 addition & 1 deletion k8s/templates/api-recovery/api-recovery-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
- image: localhost:32000/catalog_backend_api:latest
name: api-recovery
command: ["/bin/bash"]
args: ["-c", "source bin/activate; python recovery/recovery.py --type load"]
args: ["-c", "source bin/activate; python recovery/recovery.py --load"]
volumeMounts:
- mountPath: /etc/yangcatalog/yangcatalog.conf
name: yangcatalog-conf-pv
Expand Down
2 changes: 1 addition & 1 deletion module-compilation
Submodule module-compilation updated 56 files
+2 −2 .github/images/coverage.svg
+3 −3 .github/workflows/coverage.yml
+21 −10 .github/workflows/tests.yml
+14 −8 CHANGELOG.md
+10 −3 Dockerfile
+128 −115 bin/check_archived_drafts.py
+1 −1 bin/compilation_status.py
+12 −15 bin/job_log.py
+4 −4 bin/private_page.py
+7 −0 bin/redis_connections/constants.py
+16 −12 bin/redis_connections/redis_connection.py
+6 −1 bin/redis_connections/redis_user_notifications_connection.py
+47 −47 bin/utility/utility.py
+3 −3 bin/versions.py
+9 −16 bin/yang_get_stats.py
+2 −2 requirements.txt
+1 −1 tests/README.md
+0 −0 tests/resources/backup/.gitkeep
+0 −0 tests/resources/check_archived_drafts/ietf/.gitkeep
+0 −0 tests/resources/check_archived_drafts/ietf/archived-drafts-modules/.gitkeep
+0 −0 tests/resources/check_archived_drafts/ietf/my-id-archive-mirror/.gitkeep
+896 −0 tests/resources/check_archived_drafts/ietf/my-id-archive-mirror/draft-zhuang-bess-evpn-yang-00.txt
+4,144 −0 tests/resources/check_archived_drafts/ietf/my-id-archive-mirror/draft-zhuang-l2vpn-yang-cfg-00.txt
+2,912 −0 tests/resources/check_archived_drafts/ietf/my-id-archive-mirror/draft-zhuang-netmod-yang-poe-management-00.txt
+0 −0 tests/resources/check_archived_drafts/tmp/.gitkeep
+0 −0 tests/resources/check_archived_drafts/tmp/draft-with-YANG-strict/.gitkeep
+0 −0 tests/resources/check_archived_drafts/tmp/drafts-missing-modules/.gitkeep
+0 −0 ...rchived_drafts/tmp/drafts-missing-modules/yangmodels/yang/experimental/ietf-extracted-YANG-modules/.gitkeep
+1 −0 tests/resources/check_archived_drafts/var/unparsable-modules.json
+0 −0 tests/resources/html/private/.gitkeep
+0 −0 tests/resources/ietf/.gitkeep
+1 −4 tests/resources/test.conf
+858 −0 tests/resources/utility/check_yangcatalog_data/yang-catalog@2018-04-03.yang
+0 −0 tests/resources/utility/files_by_extension/f1.html
+0 −0 tests/resources/utility/files_by_extension/f1.txt
+0 −0 tests/resources/utility/files_by_extension/f2.html
+0 −0 tests/resources/utility/files_by_extension/f2.txt
+0 −0 tests/resources/utility/files_by_extension/recursive_dir1/f1.html
+0 −0 tests/resources/utility/files_by_extension/recursive_dir1/f1.txt
+0 −0 tests/resources/utility/files_by_extension/recursive_dir1/recursive_dir2/f1.html
+0 −0 tests/resources/utility/files_by_extension/recursive_dir1/recursive_dir2/f1.txt
+10 −0 tests/resources/utility/generation_of_compilation_result_file/test@2020-02-02_cisco.html
+0 −0 tests/resources/yang_get_stats/backup/IEEEStandardDraftYANGPageCompilation_2022_01_01.html
+0 −0 tests/resources/yang_get_stats/backup/IEEEStandardDraftYANGPageCompilation_history.json
+0 −0 tests/resources/yang_get_stats/backup/IETFYANGOutOfRFC_2022_01_01.html
+0 −0 tests/resources/yang_get_stats/backup/IETFYANGOutOfRFC_history.json
+0 −0 tests/resources/yang_get_stats/backup/IETFYANGPageMain_2022_01_01.html
+0 −0 tests/resources/yang_get_stats/backup/IETFYANGPageMain_history.json
+0 −0 tests/resources/yang_get_stats/backup/YANGPageMain_2022_01_01.html
+0 −0 tests/resources/yang_get_stats/backup/YANGPageMain_history.json
+0 −0 tests/resources/yang_get_stats/ietf/draft-with-YANG-no-strict/.gitkeep
+0 −0 tests/resources/yang_get_stats/ietf/draft-with-YANG-strict/.gitkeep
+0 −0 tests/resources/yang_get_stats/private/stats/.gitkeep
+189 −0 tests/test_check_archived_drafts.py
+18 −1 tests/test_get_stats.py
+193 −20 tests/test_utility.py
2 changes: 1 addition & 1 deletion yangre

0 comments on commit 477f39e

Please sign in to comment.