Skip to content

Commit

Permalink
5.10.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 Mar 7, 2023
1 parent d1d8aa5 commit 52ac941
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## Deployment Release Notes

* ##### v5.10.0 - 2023-03-07

* xym tool update to version 0.6.2 [#183](https://github.com/YangCatalog/deployment/issues/183)
* 2 new values added to the config files
* Content of 2 new directories exposed and accessible by API now

* ##### v5.9.0 - 2023-01-26

* Load ConfD hashed password from env file [#179](https://github.com/YangCatalog/deployment/issues/179)
Expand Down
2 changes: 1 addition & 1 deletion backend
Submodule backend updated 85 files
+0 −18 .travis.yml
+4 −4 .vscode/launch.json
+12 −0 CHANGELOG.md
+12 −8 README.md
+0 −21 api/authentication/auth.py
+12 −13 api/receiver.py
+2 −3 api/sender.py
+8 −6 api/views/admin/admin.py
+0 −6 api/views/comparisons/comparisons.py
+0 −1 api/views/healthCheck/healthCheck.py
+2 −5 api/views/redisSearch/redisSearch.py
+14 −37 api/views/userSpecificModuleMaintenance/moduleMaintenance.py
+1 −1 api/views/yangSearch/elkSearch.py
+8 −31 api/views/yangSearch/grep_search.py
+1 −1 api/views/yangSearch/response_row.py
+37 −6 api/views/yangSearch/yangSearch.py
+85 −213 api/views/ycJobs/ycJobs.py
+33 −0 automatic_push/README.md
+0 −0 automatic_push/__init__.py
+143 −0 automatic_push/iana_push.py
+234 −0 automatic_push/ietf_push.py
+94 −0 automatic_push/utils.py
+3 −3 crontab
+14 −21 documentation/source/index.html.md
+8 −1 elasticsearchIndexing/build_yindex.py
+10 −0 elasticsearchIndexing/models/index_build.py
+3 −22 elasticsearchIndexing/process_changed_mods.py
+0 −1 elasticsearchIndexing/pyang_plugin/json_tree.py
+1 −4 elasticsearchIndexing/pyang_plugin/yang_catalog_index_es.py
+2 −18 ietfYangDraftPull/README.md
+0 −182 ietfYangDraftPull/draftPull.py
+6 −150 ietfYangDraftPull/draftPullUtility.py
+0 −174 ietfYangDraftPull/ianaPull.py
+5 −5 ietfYangDraftPull/openconfigPullLocal.py
+12 −9 ietfYangDraftPull/pull_local.py
+1 −1 lint_requirements.txt
+13 −10 parseAndPopulate/file_hasher.py
+77 −261 parseAndPopulate/groupings.py
+0 −7 parseAndPopulate/integrity.py
+0 −0 parseAndPopulate/models/directory_paths.py
+0 −21 parseAndPopulate/models/schema_parts.py
+23 −0 parseAndPopulate/models/vendor_modules.py
+37 −43 parseAndPopulate/modules.py
+47 −78 parseAndPopulate/modulesComplicatedAlgorithms.py
+16 −29 parseAndPopulate/parse_directory.py
+8 −8 parseAndPopulate/populate.py
+2 −2 parseAndPopulate/resolve_expiration.py
+6 −14 parseAndPopulate/resolvers/implementations.py
+4 −88 parseAndPopulate/resolvers/imports.py
+8 −23 parseAndPopulate/resolvers/submodule.py
+2 −2 parseAndPopulate/reviseSemver.py
+3 −3 recovery/recovery.py
+37 −0 redisConnections/data_transfer_objects.py
+40 −39 redisConnections/redis_users_connection.py
+3 −3 requirements.txt
+37 −43 sandbox/check_schema.py
+2 −6 sandbox/compare_databases.py
+48 −0 sandbox/consolidate_schema_urls.py
+0 −83 sandbox/generate_schema_urls.py
+51 −0 sandbox/save_yang_files.py
+2 −1 statistic/statistics.py
+0 −9 tests/resources/dumper/test_data.json
+4 −7 tests/resources/groupings/request-data.json
+2 −4 tests/resources/receiver_tests_data.json
+2 −3 tests/resources/request-data.json
+11 −7 tests/test_api_contribute.py
+0 −159 tests/test_api_internal.py
+16 −4 tests/test_api_search.py
+11 −15 tests/test_dumper.py
+47 −63 tests/test_groupings.py
+18 −23 tests/test_modules.py
+6 −17 tests/test_parse_directory.py
+11 −29 tests/test_resolvers.py
+1 −1 tests/test_search.py
+2 −2 utility/confdFullCheck.py
+189 −0 utility/elasticsearch_util.py
+12 −13 utility/message_factory.py
+270 −24 utility/repoutil.py
+1 −1 utility/revise_tree_type.py
+1 −4 utility/scriptConfig.py
+13 −8 utility/script_config_dict.py
+2 −1 utility/staticVariables.py
+2 −48 utility/tests/test_util.py
+3 −3 utility/user_reminder.py
+35 −196 utility/util.py
2 changes: 1 addition & 1 deletion frontend
Submodule frontend updated 45 files
+9 −0 CHANGELOG.md
+2 −2 Dockerfile
+619 −525 admin-ui/package-lock.json
+0 −0 yangcatalog-ui/.browserslistrc
+11 −4 yangcatalog-ui/angular.json
+4,765 −4,945 yangcatalog-ui/package-lock.json
+26 −27 yangcatalog-ui/package.json
+1 −1 yangcatalog-ui/src/app/app.component.html
+26 −2 yangcatalog-ui/src/app/app.component.ts
+2 −1 yangcatalog-ui/src/app/app.module.ts
+19 −0 yangcatalog-ui/src/app/app.service.ts
+7 −10 yangcatalog-ui/src/app/core/advanced-format.pipe.ts
+5 −5 yangcatalog-ui/src/app/core/data.service.ts
+4 −4 yangcatalog-ui/src/app/core/yc-validations.service.ts
+4 −4 yangcatalog-ui/src/app/features/account/account.component.ts
+1 −1 ...app/features/impact-analysis/impact-analysis-visualisation/impact-nodes-list/impact-nodes-list.component.ts
+1 −1 ...src/app/features/impact-analysis/impact-analysis-visualisation/impact-warnings/impact-warnings.component.ts
+9 −9 yangcatalog-ui/src/app/features/impact-analysis/impact-analysis.component.ts
+21 −21 yangcatalog-ui/src/app/features/private/private.component.ts
+3 −3 yangcatalog-ui/src/app/features/private/private.service.ts
+1 −1 yangcatalog-ui/src/app/features/statistics/yang-stats.component.ts
+2 −2 yangcatalog-ui/src/app/features/yang-implementations/yang-implementations.component.ts
+1 −1 yangcatalog-ui/src/app/features/yang-module-details/models/module-implementation-model.ts
+1 −1 yangcatalog-ui/src/app/features/yang-module-details/models/module-info-meta-data-model.ts
+4 −4 ...-ui/src/app/features/yang-module-details/yang-implementations-modal/yang-implementations-modal.component.ts
+9 −2 yangcatalog-ui/src/app/features/yang-module-details/yang-module-details.component.html
+12 −1 yangcatalog-ui/src/app/features/yang-module-details/yang-module-details.component.ts
+3 −0 yangcatalog-ui/src/app/features/yang-search/yang-search.component.html
+9 −8 yangcatalog-ui/src/app/features/yang-search/yang-search.component.ts
+0 −1 yangcatalog-ui/src/app/features/yang-search/yang-search.module.ts
+2 −2 yangcatalog-ui/src/app/features/yang-show-node/yang-show-node.component.ts
+1 −1 yangcatalog-ui/src/app/features/yang-tree/yang-tree.component.ts
+2 −2 yangcatalog-ui/src/app/features/yang-validator/api-overview/api-overview.component.html
+1 −1 yangcatalog-ui/src/app/features/yang-validator/models/validation-error.ts
+13 −11 yangcatalog-ui/src/app/features/yang-validator/models/validation-output.ts
+35 −36 yangcatalog-ui/src/app/features/yang-validator/yang-validator.component.ts
+4 −4 yangcatalog-ui/src/app/shared/ag-grid/ag-cell-template-renderer/ag-cell-template-renderer.component.spec.ts
+4 −4 yangcatalog-ui/src/app/shared/ag-grid/app-ag-grid.component.spec.ts
+2 −5 yangcatalog-ui/src/app/shared/ag-grid/app-ag-grid.module.ts
+4 −0 yangcatalog-ui/src/app/shared/notification-example.json
+1 −1 yangcatalog-ui/src/app/shared/title/title.service.ts
+4 −0 yangcatalog-ui/src/proxy.conf.json
+3 −1 yangcatalog-ui/src/tsconfig.app.json
+1 −1 yangcatalog-ui/tsconfig.json
+65 −2 yangcatalog-ui/tslint.json
2 changes: 1 addition & 1 deletion yangre

0 comments on commit 52ac941

Please sign in to comment.