Age | Commit message (Collapse) | Author | Files | Lines |
|
* Update docs/submodules/vid.git from branch 'master'
to 62a129a703f540835d74086ba475c81ef8f88705
- Merge "Bump VID version to 5.0.1"
- Bump VID version to 5.0.1
Issue-ID: VID-494
Change-Id: I0564a6ac162b82211733525133c6e1dadf1541c0
Signed-off-by: Ittay Stern <ittay.stern@att.com>
|
|
* Update docs/submodules/vid.git from branch 'master'
to 84183d258ee93a28e0f43e0ac65ed61e2bf3f069
- Correct link in info.yaml removal entry
Change-Id: I112a9130260627e96b01ff31a67b0c7aaa2fee14
Issue-ID: VID-502
Signed-off-by: Ittay Stern <ittay.stern@att.com>
|
|
* Update docs/submodules/ccsdk/cds.git from branch 'master'
to 82bc5bf7beb713c14757d73de595b419366fc9c4
- Merge "Resource Configuration Snapshots Executor and API"
- Resource Configuration Snapshots Executor and API
Issue-ID: CCSDK-1604
Signed-off-by: Serge Simard <serge@agilitae.com>
Change-Id: I349c649e941431b48a309123489d26fb22e0e50a
Signed-off-by: Serge Simard <serge@agilitae.com>
|
|
* Update docs/submodules/so.git from branch 'master'
to 1852a85bb287e3316c7917a18ea3125821026ec9
- Merge "Removed unused CryptoHandler, ICryptoHandler and CryptoHandlerTest classes"
- Removed unused CryptoHandler, ICryptoHandler and
CryptoHandlerTest classes
Issue-ID: SO-1841
Signed-off-by: Oleksandr Moliavko <o.moliavko@samsung.com>
Change-Id: I944ae9b49326257b6ddfe94687c3241e91af4de9
|
|
* Update docs/submodules/so.git from branch 'master'
to 94aca1037c7934effe6f9e8b9dcad2e6633b34e9
- Merge "Place diamond op in place of type spec"
- Place diamond op in place of type spec
Place diamond op in place of type spec MSOCommonBPMN classes
Issue-ID: SO-2187
Signed-off-by: sindhu3672 <arcot.sindhuri@huawei.com>
Change-Id: I133a9328f5c91c61af24a57a610d36c6d6622f66
|
|
* Update docs/submodules/so.git from branch 'master'
to 7e4474a83396840a61c18ff0a770825db0a440fb
- Merge "Removed unused method setHPAParameters()"
- Removed unused method setHPAParameters()
Issue-ID: SO-1841
Signed-off-by: Oleksandr Moliavko <o.moliavko@samsung.com>
Change-Id: Ic9de579495c1400bca233b679699ae857180520b
|
|
* Update docs/submodules/sdc.git from branch 'master'
to f2b773335f1dd5b71fa83b81c6e788c1c0d10439
- Add unit tests for NicInternalNetworkErrorBuilder
Issue-ID: SDC-2327
Signed-off-by: Marcin Kowalski <m.kowalski3@partner.samsung.com>
Change-Id: I8a6127218edf895b8b43d973348cc47794e212c1
|
|
* Update docs/submodules/integration.git from branch 'master'
to 2b2b7990ed1f14664cc745078f9540345a16e7c5
- k8s: Add Makefile targets for testing
Issue-ID: SECCOM-235
Change-Id: I6ac5f3c160f1cd1d8faac90576ab943d4ed213a5
Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
|
|
* Update docs/submodules/integration.git from branch 'master'
to ab8186eb931abc8ae8664d377e8e7685c4cb2292
- k8s: Add Makefile targets for external dependencies
Building "check" binary now requires several external dependencies. To
minimize setup effort, convenience make targets were provided.
Issue-ID: SECCOM-235
Change-Id: Iec74c0652a5ed3a90d4504216b00ef20bdb7e81f
Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
|
|
* Update docs/submodules/integration.git from branch 'master'
to 2b5b2e0ff77608cfdfc8a949076860672b38b93f
- k8s: Add support for RKE-deployed clusters
RKE is used as a Kubernetes cluster deployment method from ONAP Dublin
release. RKE cluster definition is used to get access to necessary
information.
Issue-ID: SECCOM-235
Change-Id: I588598011ea746b5f7ba327a48f1cea605e56d31
Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
|
|
* Update docs/submodules/integration.git from branch 'master'
to 57fae769fca12e55b0890316112fa3da19803cdc
- k8s: Add test cases for Dublin API server
Issue-ID: SECCOM-235
Change-Id: Ie6d43b9db767f191f883a2912916bc8abf9d3ad6
Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
|
|
* Update docs/submodules/integration.git from branch 'master'
to b18d03d74734d0953698368b8da4a9ef90b9f113
- k8s: Unify order of API server test cases
So far CIS-compliant configuration has been validated first unless
configuration used in ONAP release did not pass given benchmark.
Issue-ID: SECCOM-235
Change-Id: Ibdb523ab7ab6b8285757719721f75aca57beeb82
Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
|
|
* Update docs/submodules/policy/engine.git from branch 'master'
to 102d5151bc603961ebd2b232f97edb313f70b138
- Merge "Fix issue for policies not loading on GUI push tab"
- Fix issue for policies not loading on GUI push tab
- found the problem to be with a line of code to add all the
scopes from the role to a Set of scopes. when the scopes
attribute in the role object is null it logs an exception and
fails to load policies. I added a new method to check the value
of the roles.getScopes() for null and only attempt to add the
scope to the set if it is not null
- I created a separate method to do this in order to avoid an
increase in technical debt as it would have added to the
complexity if I kept it in the same method.
- PATCH 4: Added scopes to the method arguments in order to
avoid overwriting scopes that are added in prevous interations
of the loop.
- PATCH 5: removed redundant scopes assignment per Jorge's
review.
Change-Id: Ifcc8775d3db8ecc722ee6806310a58ecb4e15856
Issue-ID: POLICY-1981
Signed-off-by: Michael Mokry <michael.mokry@att.com>
|
|
* Update docs/submodules/vid.git from branch 'master'
to 5957a80435aebf3d684b97e9e28e73e89fb2f9ac
- Add a semicolon at the end of this statement
In JavaScript, the semicolon (;) is optional as a statement separator, but omitting semicolons can be confusing, and lead to unexpected results because a semicolon is implicitly inserted at the end of each line.
Issue-ID: VID-568
Change-Id: Id89534f4fbd326ebcbe12857bce7e2d69bf73dfd
Signed-off-by: anushadasari <danush10@in.ibm.com>
|
|
* Update docs/submodules/ccsdk/cds.git from branch 'master'
to 13904e48fc907f4c5013593a60ad6efbfcc42822
- Default mode Change to Form mode
Implemented change to set default mode to designer mode
Issue-ID: CCSDK-707
Change-Id: I264a6763f95ed539ca0fce394923d2863081f331
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
|
|
* Update docs/submodules/ccsdk/features.git from branch 'master'
to 45bf787f75acb67d4153be40480b07f48ded4d17
- Minor functional fixes in odlux apps
Minor functional fixes in odlux apps
Issue-ID: SDNC-845
Signed-off-by: sai-neetha <sai-neetha.phulmali@highstreet-technologies.com>
Change-Id: I8e64e7c67a21798832ad1a36441b08a070452034
Signed-off-by: sai-neetha <sai-neetha.phulmali@highstreet-technologies.com>
|
|
* Update docs/submodules/ccsdk/features.git from branch 'master'
to f6f34d5b2a197e57bab0db49cd8e7ad39df7b527
- SDN-R odlux timing fix
fixing timing issue and added licenses in source files
Issue-ID: SDNC-844
Signed-off-by: sai-neetha <sai-neetha.phulmali@highstreet-technologies.com>
Change-Id: I65f6b51f841074f9b8e88bf9b230038e0a224fd3
|
|
* Update docs/submodules/oom.git from branch 'master'
to ecdb2369e3b8083b0906b3cf4cace1d2d9f8ff09
- Merge "moving certificates from vid image to mounted catalog"
- moving certificates from vid image to mounted catalog
Issue-ID: VID-494
Change-Id: Ie1a3a9b362618d6b1821583bc6b3c39c28eb82c0
Signed-off-by: Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com>
|
|
* Update docs/submodules/oom.git from branch 'master'
to 802cb55d831fa1db6b35ef5c7fecefb7052fa789
- Update git submodules
* Update kubernetes/robot from branch 'master'
to 580d933f80ddaf3df373671abead40e8181da642
- INT-1200 demo-k8s.sh fix
INT-1200 demo-k8s.sh fix
Issue-ID: INT-1200
Signed-off-by: marekpl <marek.pondel@nokia.com>
Change-Id: I73d75ed8edba1046fd58d7399e3fdce23ea2f77a
|
|
* Update docs/submodules/oom.git from branch 'master'
to 5e82a3af9ba19c2388e121e87c16cfbe5a775284
- Merge "Add ingress nginx common template"
- Add ingress nginx common template
Add ingress common template, template can be
included in a components ingress configuration.
Signed-off-by: Lucjan Bryndza <l.bryndza@samsung.com>
Change-Id: Ic18626ca679c8cbc6ce7aee95ac4b9c40dc5bcfe
Issue-ID: OOM-1508
|
|
* Update docs/submodules/so.git from branch 'master'
to 5d51903c2012077970240aa295d060441d2947a7
- Merge "Removed duplicate use of networkType field in String.format() call to prevent static analyzer warning"
- Removed duplicate use of networkType field in
String.format() call to prevent static analyzer
warning
Issue-ID: SO-1841
Signed-off-by: Oleksandr Moliavko <o.moliavko@samsung.com>
Change-Id: I1e3ea352aac9a88172b683d267b2f3c804bb362b
|
|
* Update docs/submodules/so.git from branch 'master'
to d46e55a380566af20c21553b74a9edb9dcbc5c51
- Merge "Change variable name-comply with regex"
- Change variable name-comply with regex
Change variable name-comply with regex asdc-controller & mso-api-handlers classes
Issue-ID: SO-2187
Signed-off-by: sindhu3672 <arcot.sindhuri@huawei.com>
Change-Id: I709cbcacc32e57a8b9cf89a963321bfde3b08301
|
|
* Update docs/submodules/so.git from branch 'master'
to 247c4a5b3e0c0ff9401785cf7e4c2070a7d4b928
- Merge "Change variable name-comply with regex"
- Change variable name-comply with regex
Change variable name-comply with regex asdc controller and bpmn classes
Issue-ID: SO-2187
Signed-off-by: sindhu3672 <arcot.sindhuri@huawei.com>
Change-Id: Ib1e16b2df9c620f2f225424e003226996fbe99e1
|
|
* Update docs/submodules/so.git from branch 'master'
to 5b2bafa99ce79ef6b05ea9a5e9f5b1853bfbba59
- Merge "update version for 1.5.1"
- update version for 1.5.1
Issue-ID: SO-2223
Signed-off-by: seshukm <seshu.kumar.m@huawei.com>
Change-Id: I972e6be75ce9ca38e3d08ac17a48af62f0aa2f05
|
|
* Update docs/submodules/so.git from branch 'master'
to ad26209225e2e4e70a98fafefb20971548ba1816
- Merge "Enhance variable name-comply with regex"
- Enhance variable name-comply with regex
Enhance variable name-comply with regex bpmn ConfigCheckerDelegate class
Issue-ID: SO-2187
Signed-off-by: sindhu3672 <arcot.sindhuri@huawei.com>
Change-Id: I11c06607cdb160f59c77e7e5af004364d53bddf5
|
|
* Update docs/submodules/vid.git from branch 'master'
to fa7374fa4e05f2a9bb8fe0ac85fb43a8c61c20a0
- tests - rename csar file names for alignment with code
Issue-ID: VID-378
Signed-off-by: Eylon Malin <eylon.malin@intl.att.com>
Change-Id: I5313de573f8077e3ddcea565c0d056c2cb5857a5
|
|
* Update docs/submodules/vid.git from branch 'master'
to 29ca338bd8db61a4dbf1547e9ae740bd4a7186ab
- Merge "Change out-of-the-box config to work on dev's environment"
- Change out-of-the-box config to work on dev's environment
1) Fill-up system.properties's missing fields, and same for
system_template.properties.
This modifies some SO endpoints, most significantly --
mso.restapi.vnf.instance is now
/serviceInstantiation/v7/serviceInstances/<service_instance_id>/vnfs
instead of
/serviceInstances/v6/<service_instance_id>/vnfs
2) Configure endpoint's to a local simulator's location:
* ecomp_rest_url in portal.properties
* mso.server.url, aai.server.url in system.properties
* asdc.client.rest.host in asdc.properties
3) Added always-on getSessionSlotCheckInterval in simulator.
Issue-ID: VID-564
Change-Id: Icc7bdc83ed65df3415a4b0f36f98291775909f49
Signed-off-by: Ittay Stern <ittay.stern@att.com>
|
|
* Update docs/submodules/modeling/genericparser.git from branch 'master'
to 9eb4f8a5d5cd6ffe7200702ebff958515b264952
- Fix the error of drf-yasg
Issue-ID: VFC-1465
Signed-off-by: Olivia.Zhan <zhan.jie1@zte.com.cn>
Change-Id: I8d0a78dd6eac5f5f529581b135bac033ab849142
|
|
* Update docs/submodules/cli.git from branch 'master'
to 4d981f9902baabdfcd8ba27e8697c01672fbf915
- Merge "Multicloud cloud region deletion"
- Multicloud cloud region deletion
Cli for multicloud
Issue-ID: CLI-199
Change-Id: I942c78ae8f9eeff7961f0bd94ee030c5a589dedc
Signed-off-by: jananib <janani.b@huawei.com>
|
|
* Update docs/submodules/so.git from branch 'master'
to 04966551ba1392c37a2ba81cd53fbe84f6b8dc8b
- Merge "Modify variable name-comply with regex"
- Modify variable name-comply with regex
Modify variable name-comply with regex mso api handlers DuplicateRequestException class
Issue-ID: SO-2187
Signed-off-by: sindhu3672 <arcot.sindhuri@huawei.com>
Change-Id: Ifbd69bffcfce08cc2e9c44817a02f9ddfe28aadc
|
|
* Update docs/submodules/so.git from branch 'master'
to 2354c86fe8f1966f152033956c61019102152e39
- Merge "Replace with equalsIgnoreCase"
- Replace with equalsIgnoreCase
Replace with equalsIgnoreCase bpmn ServicePluginFactory class
Issue-ID: SO-2187
Signed-off-by: sindhu3672 <arcot.sindhuri@huawei.com>
Change-Id: I2860546bb921a1b685f824beb0cd790e826435ad
|
|
* Update docs/submodules/so.git from branch 'master'
to 39feb25a146741ed445dad3d82e981af5bb9d2df
- Merge "Use diamond op in place of type spec"
- Use diamond op in place of type spec
Use diamond op in place of type spec MSOCommonBPMN classes
Issue-ID: SO-2187
Signed-off-by: sindhu3672 <arcot.sindhuri@huawei.com>
Change-Id: I8812392bbc6eac6d703ff7eeabf8e95806aab442
|
|
* Update docs/submodules/cli.git from branch 'master'
to eca367f2bca84a2eb813381379e9b3f1177d5b71
- Merge changes I23f00799,I127551c4,I9414d1b4,I80ea90ba,Ie1a8ed3c, ...
* changes:
Added sdnc list schema command
Added sdnc delete schema command
Added sdnc create schema command
Added ems show schema command
Added ems list schema command
Added ems delete schema command
Added ems create schema command
- Added sdnc list schema command
Issue-ID: CLI-197
Signed-off-by: Rama-Huawei <rama.subba.reddy.s@huawei.com>
Change-Id: I23f007994625c228c97dc549fc0460a524d3af90
- Added sdnc delete schema command
Issue-ID: CLI-197
Signed-off-by: Rama-Huawei <rama.subba.reddy.s@huawei.com>
Change-Id: I127551c452365a2d13d1f4167d6eafccb064d400
- Added sdnc create schema command
Issue-ID: CLI-197
Signed-off-by: Rama-Huawei <rama.subba.reddy.s@huawei.com>
Change-Id: I9414d1b4da053ae4b0bbad5531e87352c4d24d3a
- Added ems show schema command
Issue-ID: CLI-197
Signed-off-by: Rama-Huawei <rama.subba.reddy.s@huawei.com>
Change-Id: I80ea90ba5d839fffe29bb35c864d5f5157502c04
- Added ems list schema command
Issue-ID: CLI-197
Signed-off-by: Rama-Huawei <rama.subba.reddy.s@huawei.com>
Change-Id: Ie1a8ed3c9a81d50d0d75251e655ca0f5695ccf4a
- Added ems delete schema command
Issue-ID: CLI-197
Signed-off-by: Rama-Huawei <rama.subba.reddy.s@huawei.com>
Change-Id: I898c8b822c7888cc040981d916e933aaf5260de8
- Added ems create schema command
Issue-ID: CLI-197
Signed-off-by: Rama-Huawei <rama.subba.reddy.s@huawei.com>
Change-Id: Ib2abf5d257732f2ba5201510639be7ffbde66d6f
|
|
* Update docs/submodules/cli.git from branch 'master'
to e00c1a2f53b3289de6a9db3aa384d7360f7e6c5b
- Merge "subscription cloud delete cli schema"
- subscription cloud delete cli schema
Issue-ID: CLI-197
Change-Id: Ic28386083f09b518b19a21422ad0ca0d7b2b2daa
Signed-off-by: shashikanth.vh <shashikanth.vh@huawei.com>
|
|
* Update docs/submodules/cli.git from branch 'master'
to 4aabf65dc99f141f3b2546392cc93c7ed958a429
- Merge "AAI cloud add cli schema"
- AAI cloud add cli schema
Issue-ID: CLI-197
Change-Id: I5bc80fa175873fd5fd2492ec55841521fde8d4ab
Signed-off-by: shashikanth.vh <shashikanth.vh@huawei.com>
|
|
* Update docs/submodules/cli.git from branch 'master'
to a9b93548fac629e66435851d71e9758868912fbe
- Merge "cli subscription delete schema for AAI"
- cli subscription delete schema for AAI
Issue-ID: CLI-197
Change-Id: I5fb62d6fdf5f46ff22a04d550962b66a06573772
Signed-off-by: shashikanth.vh <shashikanth.vh@huawei.com>
|
|
* Update docs/submodules/cli.git from branch 'master'
to de6c52b89f74be0b9c40b12cef0e2ba84bb01b11
- Merge "cloud create schema cli"
- cloud create schema cli
Issue-ID: CLI-197
Change-Id: I66c7f846101a99bfa2c667f9fbb8541bd625b7b6
Signed-off-by: shashikanth.vh <shashikanth.vh@huawei.com>
|
|
* Update docs/submodules/cli.git from branch 'master'
to b70ae4af5f9aee460c587f8c88d15c4149e3252b
- Merge "AAI subscription type list cli schema"
- AAI subscription type list cli schema
Issue-ID: CLI-197
Change-Id: I2310c280dfd23b208f8c8ad92deb2aaedbc01371
Signed-off-by: shashikanth.vh <shashikanth.vh@huawei.com>
|
|
* Update docs/submodules/cli.git from branch 'master'
to 48102be92950a20804d2fa1b40e2eb2190459908
- Merge changes I965829d8,I5d9f5e34,Ia1bec228,I39502dfd
* changes:
List of vf-module
Deletion of vf-module
Service instance list
Service instance deletion
- List of vf-module
Cli for aai
Issue-ID: CLI-199
Change-Id: I965829d800c9602e267d8344a7a00420b815aafb
Signed-off-by: jananib <janani.b@huawei.com>
- Deletion of vf-module
Cli for aai
Issue-ID: CLI-199
Change-Id: I5d9f5e34c87a915310e702bda31ebb3713406b9c
Signed-off-by: jananib <janani.b@huawei.com>
- Service instance list
Cli for aai
Issue-ID: CLI-199
Change-Id: Ia1bec228c59ae837f7937e83ca87be9b7f643e0f
Signed-off-by: jananib <janani.b@huawei.com>
- Service instance deletion
Cli for aai
Issue-ID: CLI-199
Change-Id: I39502dfd98280debf0297f766ab2a6b1416298f7
Signed-off-by: jananib <janani.b@huawei.com>
|
|
* Update docs/submodules/cli.git from branch 'master'
to dc20e064076d064903e6e40662099579494ec5e9
- Added sample for delete-operational-policy-with-version command
Added sample for delete-operational-policy-with-version command
Change-Id: I431d5aafb7af3a578431e11a5b28da39b5a94868
Issue-ID: CLI-198
Signed-off-by: Vidyashree Rama <vidyashree.rama@huawei.com>
- Added command to delete operational policy
added command to delete operational policy
Change-Id: Ic7aeb25950296ce8c7d55100c1fb34093a726047
Issue-ID: CLI-198
Signed-off-by: Vidyashree Rama <vidyashree.rama@huawei.com>
- Added sample for get-operational-policy-with-latest-version command
Added sample for get-operational-policy-with-latest-version command
Change-Id: I047f7e8ed7cb43c8cff8f7f286459884beb39362
Issue-ID: CLI-198
Signed-off-by: Vidyashree Rama <vidyashree.rama@huawei.com>
- Added command to retrive operational policy of latest version
added command to retrive operational policy of latest version
Change-Id: Ie7af8ead3914dd8a77554011a8c6fbdd1bcbe53d
Issue-ID: CLI-198
Signed-off-by: Vidyashree Rama <vidyashree.rama@huawei.com>
- Added sample for get-operational-policy-with-version command
Added sample for get-operational-policy-with-version command
Change-Id: I174434436a2856dbb43c82c187aac1854dd75473
Issue-ID: CLI-198
Signed-off-by: Vidyashree Rama <vidyashree.rama@huawei.com>
- Added command to retrive operational policy
added command to retrive operational policy
Change-Id: Ibf119fc8d4e430c6a7d253993561bf3ed021a80c
Issue-ID: CLI-198
Signed-off-by: Vidyashree Rama <vidyashree.rama@huawei.com>
- Added sample for create-operational-policy command
Added sample for create-operational-policy command
Change-Id: I8a9996d430f132fac0f2e6a518a43126053a9e72
Issue-ID: CLI-198
Signed-off-by: Vidyashree Rama <vidyashree.rama@huawei.com>
- Added command to create operational policy
added command to create operational policy
Change-Id: I2471f07e85054c5e8a24d393b1254e27fbb90634
Issue-ID: CLI-198
Signed-off-by: Vidyashree Rama <vidyashree.rama@huawei.com>
- Added sample for policy-healthcheck command
Added sample for policy-healthcheck command
Change-Id: I146aa1d528bb74c096e02be22e9a84a8dfef5496
Issue-ID: CLI-198
Signed-off-by: Vidyashree Rama <vidyashree.rama@huawei.com>
- Added command to get policy healthcheck status
added command to get policy healthcheck status
Change-Id: I497987117b524a7913c093bb32f49bad8096ee15
Issue-ID: CLI-198
Signed-off-by: Vidyashree Rama <vidyashree.rama@huawei.com>
|
|
* Update docs/submodules/vfc/nfvo/lcm.git from branch 'master'
to eb77fcbe0ecefe2153ff4267ff0d28e6a17bd193
- Update project version
Change-Id: I44502150287bbc1989a85e6afee0d25d878e6678
Issue-ID: VFC-1487
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
|
|
* Update docs/submodules/vfc/nfvo/lcm.git from branch 'master'
to 15959415bb6910349305c611baadb1ec54abe9f6
- Merge "ADD UT Issue-ID: VFC-1429 Signed-off-by: zhuerlei <zhu.erlei@zte.com.cn>"
- ADD UT Issue-ID: VFC-1429 Signed-off-by: zhuerlei <zhu.erlei@zte.com.cn>
Change-Id: I0a7bb0513ab687a65cc95ec7f4537a603fa0b2c9
Signed-off-by: erlei <zhu.erlei@zte.com.cn>
|
|
* Update docs/submodules/logging-analytics.git from branch 'master'
to 3ddda62c21705bc87a4706c5667e60031f0de587
- Fix vulnerability issue: upgrade org.apache.tomcat.embed.tomcat-embed-core to 8.5.42
Issue-ID: LOG-1066
Signed-off-by: Prudence Au <prudence.au@amdocs.com>
Change-Id: I9ede69b718fe177abdd7e56ceb430fd3a7d3ec70
|
|
* Update docs/submodules/logging-analytics/pomba/pomba-audit-common.git from branch 'master'
to 5ffa7da0d64771c9d06b99f1319abd5f3a92475a
- The release yaml needs to be within the releases folder.
Issue-ID: LOG-1099
Signed-off-by: Prudence Au <prudence.au@amdocs.com>
Change-Id: I5a819c4b7c727bce95040d93c85408aa1639d63f
|
|
* Update docs/submodules/externalapi/nbi.git from branch 'master'
to eeebc6a287759fe1f45f5421f492cc2e081ec87e
- Add back -SNAPSHOT for self release
Change-Id: If59fc30a67552616f642ea26fb2a3449db16ac18
Issue-ID: EXTAPI-289
Signed-off-by: aosull01 <adrian.osullivan@huawei.com>
|
|
* Update docs/submodules/ccsdk/cds.git from branch 'master'
to d7f0a4b30391f332e59b71c7bd905a9ccddf828d
- Handle all Data Type and DD with complex type
Issue-ID: CCSDK-1611
Signed-off-by: Steve Siani <alphonse.steve.siani.djissitchi@ibm.com>
Change-Id: I6bb9878ab4fea7024125fa4ce6293bfb8faee316
|
|
* Update docs/submodules/music.git from branch 'master'
to 659ae9e6f0524db897bec03a81421277353946e7
- El Alto Early Drop Version
Change-Id: Ibe756c7e7236599bfcf62b73f06046ff6ffc57e4
Issue-ID: MUSIC-482
Signed-off-by: Tschaen, Brendan <ctschaen@att.com>
|
|
* Update docs/submodules/vid.git from branch 'master'
to eee375dc2f2a12ed2633e35557320f94844bcc89
- Merge "Upgrade pom files"
- Upgrade pom files
versions:use-latest-releases
Issue-ID: VID-512
Change-Id: I3bdc7ff06717776e4f15316cca623e8025066495
Signed-off-by: Einat Vinouze <einat.vinouze@intl.att.com>
Signed-off-by: Ittay Stern <ittay.stern@att.com>
|
|
* Update docs/submodules/vid.git from branch 'master'
to 50ced1c69f4d5f6d06379450ea745f6ee146e7ab
- catch any Throwable when failed to register to simulator
Issue-ID: VID-378
Signed-off-by: Eylon Malin <eylon.malin@intl.att.com>
Change-Id: I553f8bf1fa657ce792ef690db95471de6f3658b3
|
|
* Update docs/submodules/appc.git from branch 'master'
to 13c345b2951cdccf549f4aead195e19e2b50725e
- Revert changes to parent poms
These changes did not work
Change-Id: Ie90d1bf4795cad916f8aea00af9a8cf5bcc847ed
Signed-off-by: Patrick Brady <patrick.brady@att.com>
Issue-ID: APPC-1686
|