Configure Renovate#2
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
onap-github
pushed a commit
that referenced
this pull request
Jun 29, 2026
Replace the AngularJS GeneralViewModel (1079-line controller) and general-view.html (679-line template) with a pure-Angular GeneralTabComponent (reactive form), downgraded via @angular/upgrade/static and rendered in the ui-router workspace.general state. This is Phase 3 of the AngularJS removal migration (SDC-4829); child-tab rendering and the workspace shell (WorkspaceContainerComponent, Phase 2) are unchanged. Architecture: - Reactive form (ReactiveFormsModule) built by GeneralFormService; category / model / base-type logic in ComponentMetadataService and the component. - No @input: the component reads/writes the shared Angular WorkspaceService (downgradeComponent propagateDigest:false). ChangeDetectionStrategy.OnPush with guarded detectChanges(); all RxJS subscriptions use takeUntil(destroy$); AngularJS services resolved lazily via $injector.get() in ngOnInit. - All Selenium data-tests-id attributes preserved (incl. the i-sdc-tag-input tags widget + chips). This also structurally fixes the Phase-2 save() data-loss regression: the shim $scope.save no-op is removed; GeneralTabComponent owns save() (a real updateComponent() PUT) and the ON_LIFECYCLE_CHANGE_WITH_SAVE -> save -> handleChangeLifecycleState chain. The shell's commitPendingFormValues() debounce hack is removed (the reactive form keeps WorkspaceService.component current). The migrated tab ports every behavior the old controller had beyond visible bindings: category-dropdown population (initCategories) and the structured component.categories array built on selection; instantiation types, models, base types, environment context; create-mode contactId auto-set and default icon; tags add/delete; full patch-from / sync-to of all form controls (including the Service-only fields) so EDIT/VIEW shows persisted values and edits round-trip on save. Six reactive-form/ng-model parity fixes were required so values the old two-way ng-model bindings carried for free are not lost: 1. The model <select>'s empty "no model" option must coerce '' to null before it reaches the component. The old ng-model mapped the blank <option value=""> to null; the backend keys its datatype cache by model name (ApplicationDataTypeCache.getDataTypeDefinitionMapByModel), so a component persisted with model="" resolves an empty datatype scope and the backend then rejects even basic string/boolean properties with "Unsupported datatype found for property" on a later page. Coercing ''->null in syncFormToComponent and onModelChange fixes the property/composition failures on VFs created through the migrated General tab. 2. The init* methods that apply a default to the component (initEnvironmentContext, initInstantiationTypes, single-option VSP model) must also reflect that default into the reactive control. The old ng-model bound component.environmentContext / component.instantiationType, so setting the component updated the <select>; with formControlName the control kept its '' build default, and the next syncFormToComponent overwrote the component default back to ''. For a Service create this sent an empty Environment Context and the backend rejected it with "Invalid Environment context". The new patchControl() helper reflects each applied default into the form. 3. vendorName/vendorRelease must be required only for Resources. The old template wrapped them in ng-if="component.isResource()", and an unrendered AngularJS ng-model field never registered in editForm.$valid, so a Service was unaffected by them. The reactive form required them unconditionally while the new template hides them for Services (*ngIf), leaving a Service's form permanently invalid; the lifecycle-save gate then aborted on !form.valid and the certify modal never opened (Selenium timed out on the checkindialog textarea in EtsiModelUiTests.createServiceWithModel). buildForm() now takes isResource and gates the required validator accordingly. 4. Category-specific metadata (the per-category metadataKeys subsystem) must be ported. The old onCategoryChange seeded component.categorySpecificMetadata from the selected category's (and subcategory's) metadataKeys, and the old template rendered each key as a <select> (when it defines validValues) or an <input>, with data-tests-id="{{key}}". This surfaces fields like "ETSI Version" for the ETSI NFV Network Service category. The migrated tab had neither the population nor the <select> rendering, so the ETSI Version select never appeared and EtsiNetworkServiceUiTests.createService timed out waiting for it. Ported initCategorySpecificMetadata() plus the metadata-key helpers (getMetadataKey/getMetadataKeyValidValues/isMetadataKeyMandatory/ isMetadataKeyForComponentCategory/isCategoryServiceMetadataKey/ getMetadataDisplayName) and the <select>/<input> template variants; the dedicated Service keys (Naming Policy/Service Type/Service Function/Service Role) are excluded since they have their own controls. 5. The component name must render as a non-deletable "special" tag chip. The old sdc-tags directive showed component.name as a separate chip (no delete) that still carried data-tests-id="i-sdc-tag-text", and stripped the name from the editable tag list on load. The migrated tags widget rendered only the editable tags (name filtered out) and no special chip, so (a) an onboarded VF with only the name tag exposed zero i-sdc-tag-text elements and the onboarding flows (OnboardingFlowsUi.onapOnboardVNFflow/onboardCNFTest, which wait for the tags table via VfVerificator.verifyOnboardedVnfMetadata) timed out, and (b) after a rename the persisted old name leaked as a deletable chip (Service.updateService tags assertion). The name is now stripped from component.tags on load (mirroring the old controller) and rendered as a live-bound special chip; save()/ updateComponent re-adds the current name via Component.handleTags, so the backend round-trip is unchanged. 6. Category options must be sorted by name. The old template rendered the category optgroups with |orderBy:'name'; the migrated template rendered them in raw array order. The Selenium category pickers use Select.selectByVisibleText(sub), which selects the FIRST option with that text, and several main categories share a subcategory name (e.g. "Database" under Application L4+, DCAE Component and Generic). Without the sort the first match was environment-dependent, so a VFC imported under the ETSI model exported main category "Generic" instead of "Application L4+" (ImportVfcUiTest.checkEtsiMetadata). initCategories() now sorts a copy of the cached categories by name (Application L4+ sorts first), matching the old ordering; the shared CacheService array is not mutated. Verified: 71 GeneralTabComponent unit tests + full Jest suite (634) green (coverage thresholds unchanged); production webpack (AOT) build clean. The full set of previously-failing flows was reproduced against the production Docker build via the webseal-simulator and confirmed fixed: ETSI Network Service create renders the ETSI Version select (options 3.3.1/2.7.1/2.5.1) and creates with POST 201; an onboarded/created component exposes exactly one i-sdc-tag-text chip (its name) with no delete control; a rename does not leak the old name as a chip; and the resource category dropdown is sorted so the first "Database" option resolves to Application L4+. Review follow-up (PS6): nine code-review findings fixed, all ported from the old GeneralViewModel (the behavioral spec) and verified on the production Docker build via the webseal-simulator: - #1 (was a clear bug) The Service Role / Service Function dropdowns bound to component.serviceRoleValues / serviceFunctionValues, which exist nowhere, so both rendered zero options. They now bind to getMetadataKeyValidValues('Service Role'|'Service Function') (which appends the "Others" sentinel), with the dropdown-or-free-text fallback and the setServiceRole/setServiceFunction/setFunctionRole "Others" handling restored. The on-change handlers patch the reactive control too, so the selection is not clobbered by the next syncFormToComponent. - #2 Per-field disable predicates restored (the template had collapsed every field to isViewMode()): model is create-only; category/vendorName are locked for certified and CSAR-imported assets; instantiation type and base type follow the old isCsarComponent()/mode rules. This stops a user mutating the model scope key on a checked-out asset. - #3 onCategoryChange now loads the category's base types and auto-selects the required/default base type in create mode (loadBaseTypes/clearBaseTypes ported); previously a Service create on a base-type-required category got none. - #4 Restored updateIcon/possibleToUpdateIcon (the change-icon button), async name-uniqueness validation (nameExist error + breadcrumb title update), and the componentCsar checkout auto-save. - #5 isModelRequired now toggles a Validators.required on the model control and the blank model option is gated by showDefaultModelOption (VSP-import path). - #6 calculateUnique now uses ComponentMetadataService (was dead-injected). - #7 addTag enforces the tag validation pattern. - #8 name maxlength restored to 50. - #9 onEcompGeneratedNamingChange clears namingPolicy when generated naming is off. Verified: 108 GeneralTabComponent unit tests green (71 prior + 37 new in general-tab-fixes.spec.ts), production webpack (AOT) build clean, and the live sim confirmed the Service Role/Function dropdowns populate (incl. Others), the "Others" free-text round-trips and persists via the metadata PUT (model saved as null, not ""), base types load on category change, the icon modal opens, and the per-field disable locks hold for both a Service and a VF. A Playwright guard for the Service-field dropdowns was added to general-tab-save.spec.ts. Issue-ID: SDC-4829 Change-Id: Ib4ae02c4eb2d098e9e9c64a5146f01e1903e3a7d Signed-off-by: Fiete Ostkamp <fiete.ostkamp@telekom.de>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Welcome to Renovate! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin.
🚦 To activate Renovate, merge this Pull Request. To disable Renovate, simply close this Pull Request unmerged.
Detected Package Files
sdc-os-chef/docker-compose.yml(docker-compose)asdctool/sdc-cassandra-init/Dockerfile(dockerfile)catalog-be-plugins/backend-all-plugins/src/main/docker/backend-all-plugins/Dockerfile(dockerfile)catalog-be/sdc-backend-init/Dockerfile(dockerfile)catalog-be/src/main/docker/backend/Dockerfile(dockerfile)catalog-fe/sdc-frontend/Dockerfile(dockerfile)cucumber-js-test-apis-ci/docker/Dockerfile(dockerfile)openecomp-be/dist/sdc-onboard-backend-docker/artifacts/Dockerfile(dockerfile)openecomp-be/dist/sdc-onboard-db-init-docker/artifacts/Dockerfile(dockerfile)sdc-os-chef/sdc-cassandra/Dockerfile(dockerfile)utils/webseal-simulator/sdc-simulator/Dockerfile(dockerfile)asdctool/pom.xml(maven)catalog-be-plugins/backend-all-plugins/pom.xml(maven)catalog-be-plugins/etsi-nfv-nsd-csar-plugin/pom.xml(maven)catalog-be-plugins/pom.xml(maven)catalog-be/pom.xml(maven)catalog-dao/pom.xml(maven)catalog-fe/pom.xml(maven)catalog-model/pom.xml(maven)catalog-ui/pom.xml(maven)common-app-api/pom.xml(maven)common-app-logging/pom.xml(maven)common-be/pom.xml(maven)common/onap-common-configuration-management/onap-configuration-management-api/pom.xml(maven)common/onap-common-configuration-management/onap-configuration-management-core/pom.xml(maven)common/onap-common-configuration-management/pom.xml(maven)common/onap-generic-artifact-browser/onap-generic-artifact-browser-component-tests/pom.xml(maven)common/onap-generic-artifact-browser/onap-generic-artifact-browser-service/pom.xml(maven)common/onap-generic-artifact-browser/pom.xml(maven)common/onap-tosca-datatype/pom.xml(maven)common/pom.xml(maven)cucumber-js-test-apis-ci/pom.xml(maven)integration-tests/pom.xml(maven)onboarding/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/action-library-rest/action-library-rest-services/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/action-library-rest/action-library-rest-types/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/action-library-rest/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/application-config-rest/application-config-rest-services/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/application-config-rest/application-config-rest-types/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/application-config-rest/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/conflict-rest/conflict-rest-services/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/conflict-rest/conflict-rest-types/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/conflict-rest/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/externaltesting-rest/externaltesting-rest-services/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/externaltesting-rest/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/healthcheck-rest/healthcheck-rest-services/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/healthcheck-rest/healthcheck-rest-types/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/healthcheck-rest/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/item-permissions-rest/item-permissions-rest-services/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/item-permissions-rest/item-permissions-rest-types/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/item-permissions-rest/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/item-rest/item-rest-services/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/item-rest/item-rest-types/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/item-rest/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/notifications-fe/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/notifications-rest/notifications-rest-services/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/notifications-rest/notifications-rest-types/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/notifications-rest/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/onboarding-rest-war/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/togglz-rest/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/togglz-rest/togglz-rest-services/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/togglz-rest/togglz-rest-types/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/unique-type-rest/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/unique-type-rest/unique-type-rest-services/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/unique-type-rest/unique-type-rest-types/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/validation-rest/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/validation-rest/validation-rest-services/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/validation-rest/validation-rest-types/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-types/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vendor-software-products-rest-services/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vendor-software-products-rest-types/pom.xml(maven)openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vnf-repository-rest-services/pom.xml(maven)openecomp-be/api/pom.xml(maven)openecomp-be/backend/openecomp-sdc-action-manager/pom.xml(maven)openecomp-be/backend/openecomp-sdc-activity-log-manager/pom.xml(maven)openecomp-be/backend/openecomp-sdc-application-config-manager/pom.xml(maven)openecomp-be/backend/openecomp-sdc-conflict-manager/pom.xml(maven)openecomp-be/backend/openecomp-sdc-healthcheck-manager/pom.xml(maven)openecomp-be/backend/openecomp-sdc-item-permissions-manager/pom.xml(maven)openecomp-be/backend/openecomp-sdc-security-util/pom.xml(maven)openecomp-be/backend/openecomp-sdc-validation-manager/pom.xml(maven)openecomp-be/backend/openecomp-sdc-vendor-license-manager/pom.xml(maven)openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/pom.xml(maven)openecomp-be/backend/pom.xml(maven)openecomp-be/dist/pom.xml(maven)openecomp-be/dist/sdc-onboard-backend-docker/pom.xml(maven)openecomp-be/dist/sdc-onboard-db-init-docker/pom.xml(maven)openecomp-be/lib/openecomp-common-lib/pom.xml(maven)openecomp-be/lib/openecomp-conflict-lib/openecomp-conflict-api/pom.xml(maven)openecomp-be/lib/openecomp-conflict-lib/openecomp-conflict-core/pom.xml(maven)openecomp-be/lib/openecomp-conflict-lib/pom.xml(maven)openecomp-be/lib/openecomp-core-lib/openecomp-config-lib/pom.xml(maven)openecomp-be/lib/openecomp-core-lib/openecomp-facade-lib/openecomp-facade-api/pom.xml(maven)openecomp-be/lib/openecomp-core-lib/openecomp-facade-lib/openecomp-facade-core/pom.xml(maven)openecomp-be/lib/openecomp-core-lib/openecomp-facade-lib/pom.xml(maven)openecomp-be/lib/openecomp-core-lib/openecomp-nosqldb-lib/openecomp-nosqldb-api/pom.xml(maven)openecomp-be/lib/openecomp-core-lib/openecomp-nosqldb-lib/openecomp-nosqldb-core/pom.xml(maven)openecomp-be/lib/openecomp-core-lib/openecomp-nosqldb-lib/pom.xml(maven)openecomp-be/lib/openecomp-core-lib/openecomp-session-lib/pom.xml(maven)openecomp-be/lib/openecomp-core-lib/openecomp-utilities-lib/pom.xml(maven)openecomp-be/lib/openecomp-core-lib/openecomp-zusammen-lib/openecomp-zusammen-api/pom.xml(maven)openecomp-be/lib/openecomp-core-lib/openecomp-zusammen-lib/openecomp-zusammen-core/pom.xml(maven)openecomp-be/lib/openecomp-core-lib/openecomp-zusammen-lib/pom.xml(maven)openecomp-be/lib/openecomp-core-lib/pom.xml(maven)openecomp-be/lib/openecomp-healing-lib/openecomp-sdc-healing-api/pom.xml(maven)openecomp-be/lib/openecomp-healing-lib/openecomp-sdc-healing-core/pom.xml(maven)openecomp-be/lib/openecomp-healing-lib/openecomp-sdc-healing-impl/pom.xml(maven)openecomp-be/lib/openecomp-healing-lib/pom.xml(maven)openecomp-be/lib/openecomp-heat-lib/pom.xml(maven)openecomp-be/lib/openecomp-item-permissions-lib/openecomp-item-permissions-api/pom.xml(maven)openecomp-be/lib/openecomp-item-permissions-lib/openecomp-item-permissions-core/pom.xml(maven)openecomp-be/lib/openecomp-item-permissions-lib/openecomp-item-permissions-impl/pom.xml(maven)openecomp-be/lib/openecomp-item-permissions-lib/pom.xml(maven)openecomp-be/lib/openecomp-sdc-action-lib/openecomp-sdc-action-api/pom.xml(maven)openecomp-be/lib/openecomp-sdc-action-lib/openecomp-sdc-action-core/pom.xml(maven)openecomp-be/lib/openecomp-sdc-action-lib/pom.xml(maven)openecomp-be/lib/openecomp-sdc-activity-log-lib/openecomp-sdc-activity-log-api/pom.xml(maven)openecomp-be/lib/openecomp-sdc-activity-log-lib/openecomp-sdc-activity-log-core/pom.xml(maven)openecomp-be/lib/openecomp-sdc-activity-log-lib/pom.xml(maven)openecomp-be/lib/openecomp-sdc-datatypes-lib/pom.xml(maven)openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-api/pom.xml(maven)openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-core/pom.xml(maven)openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-impl/pom.xml(maven)openecomp-be/lib/openecomp-sdc-enrichment-lib/pom.xml(maven)openecomp-be/lib/openecomp-sdc-externaltesting-lib/openecomp-sdc-externaltesting-api/pom.xml(maven)openecomp-be/lib/openecomp-sdc-externaltesting-lib/openecomp-sdc-externaltesting-impl/pom.xml(maven)openecomp-be/lib/openecomp-sdc-externaltesting-lib/pom.xml(maven)openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/pom.xml(maven)openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-core/pom.xml(maven)openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-spring/pom.xml(maven)openecomp-be/lib/openecomp-sdc-logging-lib/pom.xml(maven)openecomp-be/lib/openecomp-sdc-model-lib/openecomp-sdc-model-api/pom.xml(maven)openecomp-be/lib/openecomp-sdc-model-lib/openecomp-sdc-model-impl/pom.xml(maven)openecomp-be/lib/openecomp-sdc-model-lib/pom.xml(maven)openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-api/pom.xml(maven)openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-core/pom.xml(maven)openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-websocket/pom.xml(maven)openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/pom.xml(maven)openecomp-be/lib/openecomp-sdc-notification-lib/pom.xml(maven)openecomp-be/lib/openecomp-sdc-tosca-generator-lib/openecomp-sdc-tosca-generator-api/pom.xml(maven)openecomp-be/lib/openecomp-sdc-tosca-generator-lib/openecomp-sdc-tosca-generator-core/pom.xml(maven)openecomp-be/lib/openecomp-sdc-tosca-generator-lib/pom.xml(maven)openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-api/pom.xml(maven)openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/pom.xml(maven)openecomp-be/lib/openecomp-sdc-translator-lib/pom.xml(maven)openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-api/pom.xml(maven)openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-core/pom.xml(maven)openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/pom.xml(maven)openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-sdk/pom.xml(maven)openecomp-be/lib/openecomp-sdc-validation-lib/pom.xml(maven)openecomp-be/lib/openecomp-sdc-vendor-license-lib/openecomp-sdc-vendor-license-api/pom.xml(maven)openecomp-be/lib/openecomp-sdc-vendor-license-lib/openecomp-sdc-vendor-license-core/pom.xml(maven)openecomp-be/lib/openecomp-sdc-vendor-license-lib/pom.xml(maven)openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-api/pom.xml(maven)openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-core/pom.xml(maven)openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/pom.xml(maven)openecomp-be/lib/openecomp-sdc-versioning-lib/openecomp-sdc-versioning-api/pom.xml(maven)openecomp-be/lib/openecomp-sdc-versioning-lib/openecomp-sdc-versioning-core/pom.xml(maven)openecomp-be/lib/openecomp-sdc-versioning-lib/pom.xml(maven)openecomp-be/lib/openecomp-tosca-converter-lib/openecomp-tosca-converter-api/pom.xml(maven)openecomp-be/lib/openecomp-tosca-converter-lib/openecomp-tosca-converter-core/pom.xml(maven)openecomp-be/lib/openecomp-tosca-converter-lib/pom.xml(maven)openecomp-be/lib/openecomp-tosca-lib/pom.xml(maven)openecomp-be/lib/pom.xml(maven)openecomp-be/pom.xml(maven)openecomp-be/tools/swagger-ui/pom.xml(maven)openecomp-be/tools/zusammen-tools/pom.xml(maven)openecomp-ui/pom.xml(maven)pom.xml(maven)sdc-os-chef/pom.xml(maven)utils/webseal-simulator/pom.xml(maven)catalog-ui/package.json(npm)cucumber-js-test-apis-ci/cucumber-common/package.json(npm)cucumber-js-test-apis-ci/package.json(npm)dox-sequence-diagram-ui/package.json(npm)openecomp-ui/package.json(npm)Configuration Summary
Based on the default config's presets, Renovate will:
fixfor dependencies andchorefor all othersnode_modules,bower_components,vendorand various test/tests directories🔡 Would you like to change the way Renovate is upgrading your dependencies? Simply edit the
renovate.jsonin this branch with your custom config and the list of Pull Requests in the "What to Expect" section below will be updated the next time Renovate runs.What to Expect
With your current configuration, Renovate will create 323 Pull Requests:
Pin dependencies
renovate/pin-dependenciesmaster21.1.102.15.01.1.36.7.70.16.26.26.38.2.622.4.47.1.53.3.46.24.11.3.56.26.06.23.01.7.06.24.12.2.60.1.190.2.34.6.02.5.70.23.10.28.110.26.44.13.03.0.03.4.01.2.04.19.12.9.02.1.01.9.02.13.02.6.27.10.00.6.44.16.34.17.12.1.20.8.51.1.110.10.10.4.53.2.02.30.10.17.40.14.00.1.21.2.52.1.01.3.01.3.02.99.121.2.123.6.01.12.15.2.32.9.60.5.70.13.24.17.102.2.10.5.12.22.24.9.20.3.51.0.1061.0.20.12.70.13.05.1.20.2.1415.6.21.1.50.5.116.4.20.32.13.0.10.61.02.6.02.6.016.4.24.3.42.2.15.0.71.0.31.3.216.4.22.4.03.7.23.4.11.6.02.2.16.0.74.1.10.7.20.1.61.12.53.2.20.13.20.20.33.8.01.3.00.5.91.0.10.7.54.9.04.16.52.1.51.12.23.1.52.0.0Update com.sun.xml.version to v2.3.4
renovate/com.sun.xml.versionmaster2.3.42.3.4Update cxf.version to v3.4.4
renovate/cxf.versionmaster3.4.43.4.43.4.4Update dependency @types/lodash to v4.14.170
renovate/lodash-4.xmaster4.14.170Update dependency @types/q to v0.0.38
renovate/q-0.xmaster0.0.38Update dependency angular-tooltips to v0.1.25
renovate/angular-tooltips-0.xmaster0.1.25Update dependency babel-loader to v7.1.5
renovate/babel-monorepomaster7.1.5Update dependency com.amdocs.zusammen.plugin:zusammen-collaboration-cassandra-plugin to v1.0.3
renovate/zusammen-collaboration-store.versionmaster1.0.3Update dependency com.amdocs.zusammen.plugin:zusammen-state-store-cassandra-plugin to v1.0.3
renovate/zusammen-state-store.versionmaster1.0.3Update dependency com.github.markusbernhardt:proxy-vole to v1.0.5
renovate/com.github.markusbernhardt-proxy-vole-1.xmaster1.0.5Update dependency com.github.sylvainlaurent.maven:yaml-json-validator-maven-plugin to v1.0.4
renovate/com.github.sylvainlaurent.maven-yaml-json-validator-maven-plugin-1.xmaster1.0.4Update dependency com.google.guava:guava to v30.1.1-jre
renovate/guava.versionmaster30.1.1-jreUpdate dependency com.googlecode.json-simple:json-simple to v1.1.1
renovate/com.googlecode.json-simple-json-simple-1.xmaster1.1.1Update dependency com.googlecode.json-simple:json-simple to v1.1.1
renovate/json-simple.versionmaster1.1.1Update dependency com.paulhammant:ngwebdriver to v0.9.8
renovate/com.paulhammant-ngwebdriver-0.xmaster0.9.8Update dependency com.sun.jersey:jersey-core to v1.19.4
renovate/jersey.core.versionmaster1.19.4Update dependency io.github.classgraph:classgraph to v4.8.108
renovate/io.github.classgraph-classgraph-4.xmaster4.8.108Update dependency io.swagger.core.v3:swagger-maven-plugin to v2.1.10
renovate/swagger-core-mvn-plugin.versionmaster2.1.10Update dependency javax.el:javax.el-api to v3.0.1-b06
renovate/javax.el-api.versionmaster3.0.1-b06Update dependency javax.ws.rs:javax.ws.rs-api to v2.1.1
renovate/ws.rs.versionmaster2.1.1Update dependency junit:junit to v4.13.2
renovate/junit.versionmaster4.13.2Update dependency lodash to v4.17.21
renovate/lodash-monorepomaster4.17.21Update dependency mkdirp to v0.5.5
renovate/mkdirp-0.xmaster0.5.5Update dependency net.lightbody.bmp:browsermob-core to v2.1.5
renovate/net.lightbody.bmp-browsermob-core-2.xmaster2.1.5Update dependency ngx-drag-drop to v2.0.0
renovate/ngx-drag-drop-2.xmaster2.0.0Update dependency onap-ui-common to v1.0.119
renovate/onap-ui-common-1.xmaster1.0.119Update dependency org.apache.httpcomponents:httpasyncclient to v4.1.4
renovate/httpasyncclient.versionmaster4.1.4Update dependency org.apache.httpcomponents:httpclient to v4.5.13
renovate/org.apache.httpcomponents-httpclient-4.xmaster4.5.13Update dependency org.apache.httpcomponents:httpclient to v4.5.13
renovate/http.client.versionmaster4.5.13Update dependency org.apache.httpcomponents:httpcore to v4.4.14
renovate/http.core.versionmaster4.4.14Update dependency org.apache.httpcomponents:httpcore to v4.4.14
renovate/httpcore.versionmaster4.4.14Update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.8.1-jboss-1
renovate/org.apache.maven.plugins-maven-compiler-plugin-3.xmaster3.8.1-jboss-1Update dependency org.apache.poi:poi to v4.1.2
renovate/apache-poi.versionmaster4.1.2Update dependency org.aspectj:aspectjtools to v1.9.7
renovate/org.aspectj-aspectjtools-1.xmaster1.9.7Update dependency org.aspectj:aspectjweaver to v1.9.7
renovate/org.aspectj-aspectjweaver-1.xmaster1.9.7Update dependency org.codehaus.gmaven:gmaven-plugin to v1.5-jenkins-3
renovate/org.codehaus.gmaven-gmaven-plugin-1.xmaster1.5-jenkins-3Update dependency org.codehaus.groovy:groovy to v3.0.8
renovate/groovy.versionmaster3.0.8Update dependency org.codehaus.jackson:jackson-mapper-asl to v1.9.13-atlassian-1
renovate/org.codehaus.jackson-jackson-mapper-asl-1.xmaster1.9.13-atlassian-1Update dependency org.codehaus.mojo:wagon-maven-plugin to v2.0.2
renovate/org.codehaus.mojo-wagon-maven-plugin-2.xmaster2.0.2Update dependency org.freemarker:freemarker to v2.3.31
renovate/freemarker.versionmaster2.3.31Update dependency org.glassfish.web:javax.el to v2.2.6
renovate/javax.el.versionmaster2.2.6Update dependency org.onap.dmaap.messagerouter.dmaapclient:dmaapClient to v1.1.12
renovate/org.onap.dmaap.messagerouter.dmaapclient-dmaapclient-1.xmaster1.1.12Update dependency org.onap.sdc.sdc-be-common:security-util-lib to v1.6.1
renovate/security.util.lib.versionmaster1.6.1Update dependency org.onap.sdc.sdc-tosca:sdc-tosca to v1.6.6
renovate/sdc-tosca-parser.versionmaster1.6.6Update dependency org.onap.vnfsdk.validation:validation-pmdictionary to v1.2.20
renovate/onap.vnfsdk.validation.pmdictionary.versionmaster1.2.20Update dependency org.owasp.esapi:esapi to v2.2.3.1
renovate/org.owasp.esapi-esapi-2.xmaster2.2.3.1Update dependency org.projectlombok:lombok to v1.18.20
renovate/lombok.versionmaster1.18.20Update dependency org.slf4j:slf4j-api to v1.7.31
renovate/slf4j.versionmaster1.7.31Update dependency org.slf4j:slf4j-api to v1.7.31
renovate/org.slf4j-slf4j-api-1.xmaster1.7.31Update dependency org.slf4j:slf4j-api to v1.7.31
renovate/slf4j-api.versionmaster1.7.31Update dependency org.umlgraph:umlgraph to v5.6.6
renovate/org.umlgraph-umlgraph-5.xmaster5.6.6Update dependency pl.project13.maven:git-commit-id-plugin to v4.0.5
renovate/pl.project13.maven-git-commit-id-plugin-4.xmaster4.0.5Update dependency react-input-autosize to v2.2.2
renovate/react-input-autosize-2.xmaster2.2.2Update httpclient.version to v4.5.13
renovate/httpclient.versionmaster4.5.134.5.13Update jackson.version to v2.12.3
renovate/jackson.versionmaster2.12.32.12.32.12.32.12.32.12.3Update jacoco.version to v0.8.7
renovate/jacoco.versionmaster0.8.70.8.7Update jetty.version to v9.4.42.v20210604
renovate/jetty.versionmaster9.4.42.v202106049.4.42.v202106049.4.42.v202106049.4.42.v202106049.4.42.v202106049.4.42.v202106049.4.42.v202106049.4.42.v20210604Update junit5 monorepo
renovate/junit5-monorepomaster5.7.25.7.25.7.25.7.25.7.21.7.21.7.2Update onap.logging.version to v1.6.9
renovate/onap.logging.versionmaster1.6.91.6.9Update onap/policy-jdk-debian Docker tag to v2.0.2
renovate/onap-policy-jdk-debian-2.xmaster2.0.2Update Node.js to v8.17.0
renovate/node-8.xmaster8.17.0Update angular monorepo
renovate/angular-monorepomaster1.8.20.11.4Update aspectj.version to v1.9.7
renovate/aspectj.versionmaster1.9.71.9.71.9.7Update cassandra.driver.version to v3.11.0
renovate/cassandra.driver.versionmaster3.11.03.11.0Update cucumber.version to v6.10.4
renovate/cucumber.versionmaster6.10.46.10.4Update datastax.cassandra.version to v3.11.0
renovate/datastax.cassandra.versionmaster3.11.03.11.03.11.0Update dependency angular2-draggable to v1.5.0
renovate/angular2-draggable-1.xmaster1.5.0Update dependency axios to v0.21.1
renovate/axios-0.xmaster0.21.1Update dependency cglib:cglib to v3.3.0
renovate/cglib-cglib-3.xmaster3.3.0Update dependency cglib:cglib-nodep to v3.3.0
renovate/cglib.nodep.versionmaster3.3.0Update dependency classnames to v2.3.1
renovate/classnames-2.xmaster2.3.1Update dependency com.aventstack:extentreports to v3.1.5
renovate/com.aventstack-extentreports-3.xmaster3.1.5Update dependency com.beust:jcommander to v1.81
renovate/jcommander.versionmaster1.81Update dependency com.clearspring.analytics:stream to v2.9.8
renovate/clearspring.versionmaster2.9.8Update dependency com.datastax.oss:java-driver-core to v4.12.0
renovate/java.driver.core.versionmaster4.12.0Update dependency com.fasterxml:classmate to v1.5.1
renovate/classmate.versionmaster1.5.1Update dependency com.github.eirslett:frontend-maven-plugin to v1.12.0
renovate/com.github.eirslett-frontend-maven-plugin-1.xmaster1.12.0Update dependency com.github.jsurfer:jsurfer-gson to v1.6.0
renovate/jsurfer.versionmaster1.6.0Update dependency com.google.code.bean-matchers:bean-matchers to v0.13
renovate/com.google.code.bean-matchers-bean-matchers-0.xmaster0.13Update dependency com.google.code.bean-matchers:bean-matchers to v0.13
renovate/bean-matchers.versionmaster0.13Update dependency com.google.code.bean-matchers:bean-matchers to v0.13
renovate/bean-matcher.versionmaster0.13Update dependency com.google.code.gson:gson to v2.8.7
renovate/com.google.code.gson-gson-2.xmaster2.8.7Update dependency com.google.code.gson:gson to v2.8.7
renovate/gson.versionmaster2.8.7Update dependency com.jcabi:jcabi-aspects to v0.23.1
renovate/jcabi.versionmaster0.23.1Update dependency com.jcabi:jcabi-maven-plugin to v0.14.1
renovate/jcabi.maven.plugin.versionmaster0.14.1Update dependency com.opencsv:opencsv to v4.6
renovate/com.opencsv-opencsv-4.xmaster4.6Update dependency com.sun.jersey.contribs:jersey-multipart to v1.19.4
renovate/jersey.multipart.versionmaster1.19.4Update dependency com.typesafe:config to v1.4.1
renovate/com.typesafe-config-1.xmaster1.4.1Update dependency com.vdurmont:semver4j to v2.2.0
renovate/com.vdurmont-semver4j-2.xmaster2.2.0Update dependency com.virtlink.commons:commons-configuration2-jackson to v0.10.0
renovate/com.virtlink.commons-commons-configuration2-jackson-0.xmaster0.10.0Update dependency commons-codec:commons-codec to v1.15
renovate/commons.codec.versionmaster1.15Update dependency commons-codec:commons-codec to v1.15
renovate/commons-codec-commons-codec-1.xmaster1.15Update dependency commons-codec:commons-codec to v1.15
renovate/commons-codecmaster1.15Update dependency commons-io:commons-io to v2.10.0
renovate/commons.io.versionmaster2.10.0Update dependency commons-io:commons-io to v2.10.0
renovate/commons-io-commons-io-2.xmaster2.10.0Update dependency commons-logging:commons-logging-api to v1.1
renovate/commons-logging-commons-logging-api-1.xmaster1.1Update dependency commons-net:commons-net to v3.8.0
renovate/commons-net-commons-net-3.xmaster3.8.0Update dependency commons-validator:commons-validator to v1.7
renovate/commons-validator-commons-validator-1.xmaster1.7Update dependency compression-webpack-plugin to v1.1.12
renovate/compression-webpack-plugin-1.xmaster1.1.12Update dependency copy to v0.3.2
renovate/copy-0.xmaster0.3.2Update dependency cors to v2.8.5
renovate/cors-2.xmaster2.8.5Update dependency css-loader to v0.28.11
renovate/css-loader-0.xmaster0.28.11Update dependency de.ruedigermoeller:fst to v2.57
renovate/de.ruedigermoeller-fst-2.xmaster2.57Update dependency enzyme to v3.11.0