Skip to content

Commit

Permalink
5.11.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 Apr 13, 2023
1 parent 2379e12 commit 6345ee2
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Deployment Release Notes

* ##### v5.11.0 - 2023-04-13

* Rollback procedure description added to the README.md file
* New value added to the config files

* ##### v5.10.1 - 2023-03-20

* README.md file describing deployment to PROD created [#185](https://github.com/YangCatalog/deployment/issues/185)
Expand Down
2 changes: 1 addition & 1 deletion backend
Submodule backend updated 84 files
+2 −2 .github/workflows/linting.yml
+1 −1 .gitignore
+1 −10 .vscode/launch.json
+9 −0 CHANGELOG.md
+57 −75 README.md
+0 −13 api/receiver.py
+98 −87 api/views/README.md
+38 −45 api/views/admin.py
+0 −18 api/views/admin/__init__.py
+10 −44 api/views/comparisons.py
+0 −18 api/views/comparisons/__init__.py
+0 −18 api/views/errorHandlers/__init__.py
+0 −0 api/views/error_handler.py
+0 −18 api/views/healthCheck/__init__.py
+32 −56 api/views/health_check.py
+85 −0 api/views/json_checker.py
+1 −6 api/views/notifications.py
+0 −0 api/views/notifications/__init__.py
+0 −18 api/views/redisSearch/__init__.py
+37 −65 api/views/redis_search.py
+0 −18 api/views/userSpecificModuleMaintenance/__init__.py
+80 −112 api/views/user_specific_module_maintenance.py
+0 −9 api/views/yangSearch/json/grep_search.json
+0 −17 api/views/yangSearch/search_params.py
+0 −0 api/views/yang_search/__init__.py
+0 −0 api/views/yang_search/constants.py
+61 −57 api/views/yang_search/elk_search.py
+68 −38 api/views/yang_search/grep_search.py
+13 −0 api/views/yang_search/json/grep_search.json
+1 −2 api/views/yang_search/json/search.json
+10 −41 api/views/yang_search/response_row.py
+60 −0 api/views/yang_search/search_params.py
+60 −14 api/views/yang_search/yang_search.py
+0 −18 api/views/ycJobs/__init__.py
+1 −6 api/views/yc_jobs.py
+1 −1 api/wsgi.py
+10 −10 api/yangcatalog_api.py
+15 −14 automatic_push/iana_push.py
+21 −16 automatic_push/ietf_push.py
+208 −37 automatic_push/utils.py
+0 −1 crontab
+2 −4 documentation/README.md
+1 −10 documentation/source/index.html.md
+13 −12 elasticsearchIndexing/README.md
+9 −0 elasticsearchIndexing/json/initialize_yindex_index.json
+43 −23 elasticsearchIndexing/process-drafts.py
+1 −1 elasticsearchIndexing/process_changed_mods.py
+6 −7 elasticsearchIndexing/pyang_plugin/README.md
+1 −0 elasticsearchIndexing/pyang_plugin/yang_catalog_index_es.py
+1 −1 feed_redis.py
+3 −7 ietfYangDraftPull/README.md
+0 −179 ietfYangDraftPull/draftPullUtility.py
+0 −100 ietfYangDraftPull/openconfigPullLocal.py
+23 −67 ietfYangDraftPull/pull_local.py
+47 −56 parseAndPopulate/README.md
+0 −7 parseAndPopulate/groupings.py
+1 −1 parseAndPopulate/integrity.py
+4 −21 parseAndPopulate/parse_directory.py
+1 −1 parseAndPopulate/populate.py
+48 −24 recovery/README.md
+1 −1 recovery/elk_fill.py
+1 −1 recovery/elk_recovery.py
+1 −1 recovery/recovery.py
+1 −1 recovery/redis_users_recovery.py
+6 −6 redisConnections/redisConnection.py
+1 −1 redisConnections/tests/test_redisModulesConnection.py
+1 −1 requirements.txt
+0 −298 sandbox/check_schema.py
+16 −20 statistic/README.md
+1 −1 statistic/runYANGallstats.py
+7 −13 statistic/statistics.py
+35 −35 tests/resources/testlog.log
+69 −268 tests/test_api_admin.py
+166 −538 tests/test_api_contribute.py
+1 −1 tests/test_api_internal.py
+32 −292 tests/test_api_search.py
+61 −0 tests/test_json_checker.py
+4 −4 tests/test_parse_directory.py
+2 −2 tests/test_receiver.py
+14 −6 tests/test_search.py
+2 −2 tests/test_user_notifications.py
+76 −202 utility/repoutil.py
+20 −21 utility/script_config_dict.py
+3 −114 utility/tests/test_repoutil.py
2 changes: 1 addition & 1 deletion frontend
Submodule frontend updated 36 files
+5 −0 CHANGELOG.md
+55 −0 admin-ui/.eslintrc.json
+11 −1 admin-ui/angular.json
+1,223 −173 admin-ui/package-lock.json
+8 −1 admin-ui/package.json
+2 −5 admin-ui/src/app/components/text-editor/text-editor-save-dialog/text-editor-save-dialog.component.ts
+2 −4 admin-ui/src/app/modules/files/components/pie-chart/pie-chart.component.ts
+2 −5 admin-ui/src/app/modules/files/dialogs/delete-dialog/delete-dialog.component.ts
+3 −4 admin-ui/src/app/modules/healthcheck/dialogs/error-message-dialog/error-message-dialog.component.ts
+2 −2 admin-ui/src/app/modules/healthcheck/dialogs/info-message-dialog/info-message-dialog.component.ts
+1 −1 admin-ui/src/app/modules/healthcheck/healthcheck.service.ts
+1 −1 admin-ui/src/app/modules/nginx/pages/nginx/nginx.component.ts
+1 −1 admin-ui/src/app/modules/scripts/components/job-list/job-list.component.ts
+2 −5 admin-ui/src/app/modules/scripts/dialogs/confirm/confirm.component.ts
+2 −3 admin-ui/src/app/modules/scripts/pages/scripts/scripts.component.ts
+2 −6 admin-ui/src/app/modules/users-management/dialogs/delete-dialog/delete-dialog.component.ts
+2 −2 admin-ui/src/app/modules/users-management/dialogs/record-dialog/record-dialog.component.html
+1 −1 admin-ui/src/app/modules/users-management/pages/users/users.component.ts
+2 −4 admin-ui/src/app/navigation/header/header.component.ts
+220 −220 yangcatalog-ui/package-lock.json
+2 −1 yangcatalog-ui/src/app/features/impact-analysis/impact-analysis-visualisation/models/impact-vis-node-model.ts
+2 −2 yangcatalog-ui/src/app/features/impact-analysis/impact-analysis.component.ts
+8 −1 yangcatalog-ui/src/app/features/impact-analysis/impact-analysis.module.ts
+9 −1 yangcatalog-ui/src/app/features/static-content/static-content.module.ts
+2 −2 ...-ui/src/app/features/yang-module-details/yang-implementations-modal/yang-implementations-modal.component.ts
+8 −4 yangcatalog-ui/src/app/features/yang-module-details/yang-module-details.component.ts
+25 −0 yangcatalog-ui/src/app/features/yang-search/models/advanced-search-input.ts
+37 −13 yangcatalog-ui/src/app/features/yang-search/yang-search.component.html
+13 −3 yangcatalog-ui/src/app/features/yang-search/yang-search.component.scss
+145 −51 yangcatalog-ui/src/app/features/yang-search/yang-search.component.ts
+5 −0 yangcatalog-ui/src/app/features/yang-search/yang-search.service.ts
+14 −0 yangcatalog-ui/src/app/features/yang-validator/yang-validator.component.ts
+4 −4 yangcatalog-ui/src/app/features/yang-validator/yang-validator.service.ts
+0 −1 yangcatalog-ui/src/app/shared/ag-grid/app-ag-grid.component.ts
+ yangcatalog-ui/src/assets/img/code.png
+ yangcatalog-ui/src/assets/img/implementation.png
2 changes: 1 addition & 1 deletion yang-validator-extractor
2 changes: 1 addition & 1 deletion yangre
Submodule yangre updated 1 files
+4 −0 CHANGELOG.md

0 comments on commit 6345ee2

Please sign in to comment.