so.git
6 days agoFix plugin related issues 05/141505/2
Fiete Ostkamp [Wed, 9 Jul 2025 08:59:19 +0000 (10:59 +0200)]
Fix plugin related issues

- update groovy-maven-plugin (2.0 -> 2.1.1) to fix warning that
  appears in Java 11+. In the future we should switch to the
  gmavenplus plugin
- exclude csar files from being eligible for filtering by the
  maven-resources-plugin in the asdc-controller module.
  This fixes an IndexOutputBounds exception that otherwise occurs
- bind the maven-dependency-plugin:unpack execution to the prepare-package
  phase to only execute it when the Docker images are build

Issue-ID: SO-4201
Change-Id: I339661406a4bce06e59ff5589977688c9d41f459
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
7 days agoAdd so-simulator integration test 94/141494/2
Fiete Ostkamp [Tue, 8 Jul 2025 13:30:12 +0000 (15:30 +0200)]
Add so-simulator integration test

- define integration test to assert that the so-simulator
  has a working application context
- change spring.boot.version to springboot.version in so-simulator module to override the
  global property of the same name. This ensures that all spring boot deps of this module
  are in version 2.0.9 (before, some were in 2.4.12 which lead to incompatibilities)
- add dependency management for spring cloud in so-simulator module to make sure that it
  is in a spring boot 2.0.9-compatible version
- override javassist version (3.22.0-GA -> 3.25.0-GA) to have a java 11 compatible version
- downgrade h2 dependency (2.1.214 -> 1.4.200) to be compatible with the citrus-simulator
  dependencies
- update logback (1.2.7 -> 1.2.11)

Issue-ID: SO-4200
Change-Id: I2e58cc0c59193a0a1268958a398699e577f25b1d
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
7 days agoUpdate vulnerable dependencies 70/141470/2
Fiete Ostkamp [Sun, 6 Jul 2025 19:32:56 +0000 (21:32 +0200)]
Update vulnerable dependencies

- make sure h2 is test scoped everywhere
- update org.json (2016 + 2022 -> 20250517)
- commons-fileupload (1.4 -> 1.5)
- update kafka-clients (3.3.1 -> 3.3.2)
- consistently use the same logback version everywhere

Issue-ID: SO-4199
Change-Id: I255806239a377822945fcf67bb3d01c04de97ae6
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
11 days agoMerge "Update apache cxf"
Lukasz Rajewski [Fri, 4 Jul 2025 11:21:59 +0000 (11:21 +0000)]
Merge "Update apache cxf"

11 days agoUpdate apache cxf 54/141454/4
Fiete Ostkamp [Fri, 4 Jul 2025 07:53:19 +0000 (09:53 +0200)]
Update apache cxf

- reference ${cxf.version} placeholder everywhere to make sure
  that there is only one place where the version is defined
  (this updates cxf in the aai-client module (3.2.5 -> 3.4.1)
- update cxf (3.4.1 -> 3.4.10)

Issue-ID: SO-4197
Change-Id: I88e32532dc286a2c1b94fef14e52aa5ceeda3e5b
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
11 days agoStatically register ObjectMapper on class level since it is expensive to instantiate 79/141379/8
Fiete Ostkamp [Wed, 25 Jun 2025 09:11:25 +0000 (11:11 +0200)]
Statically register ObjectMapper on class level since it is expensive to instantiate

- ObjectMapper objects are expensive to instantiate
- register them statically on the class level instead
  of instantiating them for each invocation
- improve formatting in some of the groovy classes
- change some logger.debug statements to be lazily executed [0]

[0] that is, they are not executed when the log level is higher than debug
    (log.debug(" " + expensiveOperation) vs. log.debug(" {}", expensiveOperation))

Issue-ID: SO-4187
Change-Id: I708c221ff90efb0a27020119253faa549c2ee2fe
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
11 days agoBump snapshot version to 1.15.6-SNAPSHOT 53/141453/1
Fiete Ostkamp [Fri, 4 Jul 2025 06:12:15 +0000 (08:12 +0200)]
Bump snapshot version to 1.15.6-SNAPSHOT

Issue-ID: SO-4196
Change-Id: I59cbda75d52047b5d7bdacfa13f81abe25b51579
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
12 days ago1.15.5 release 11/141411/1
Fiete Ostkamp [Thu, 3 Jul 2025 14:30:31 +0000 (16:30 +0200)]
1.15.5 release

- upgrade spring-boot (2.3.12 -> 2.4.13)
- upgrade spring-cloud (Hoxton.SR12 -> 2020.0.6)
- upgrade camunda (7.14.0 -> 7.15.0)
- improve error mapping in OrchestrationRequests class
  by not mapping any exception to 404
- reduce log noise in debug mode by removing probes from the log:
  - introduce logging.request-status.exclusions property to allow
    disabling request logging for certain paths (i.e liveness probes)
    in catalog-db and request-db-adapter
  - disable logging for the scheduled performDnsLookup
  - disable logging for the scheduled checkAllClientsActive

Issue-ID: SO-4195
Change-Id: Ibbb6a34618f768eca5e1e99d6e0bb9c97d95ba13
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
13 days agoSupport enabling or disabling authentication and authorization 04/141404/2 1.15.5
Fiete Ostkamp [Wed, 2 Jul 2025 07:51:43 +0000 (09:51 +0200)]
Support enabling or disabling authentication and authorization

- do not set 'basic' spring profile by default in the container
  startup script, thus making it possible not to set a profile [0]
- introduce spring.security.rbacEnabled property. It is true by
  default to not change the default behaviour

[0] the active profile is then determined by the helm chart and
    will remain 'basic' as a default

Issue-ID: SO-4193
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: I9ddeee9a2fb275dde14ed76fb461c46836fd776b

2 weeks agoReduce SO log noise further 99/141399/1
Fiete Ostkamp [Tue, 1 Jul 2025 06:31:52 +0000 (08:31 +0200)]
Reduce SO log noise further

- use the logging.request-status.exclusions also for the
  logger that logs the ENTERING and EXITING log lines
- use non-pinned 11-jre-alpine image

Issue-ID: SO-4192
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: I075090e8f60ef8f944d7139ea49cb02f5cb8b131

2 weeks agoReduce SO log noise 98/141398/4
Fiete Ostkamp [Mon, 30 Jun 2025 11:12:55 +0000 (13:12 +0200)]
Reduce SO log noise

- introduce logging.request-status.exclusions property to allow
  disabling request logging for certain paths (i.e liveness probes)
  in catalog-db and request-db-adapter
- disable logging for the scheduled performDnsLookup
- disable logging for the scheduled checkAllClientsActive

Issue-ID: SO-4192
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: I491aa4b6e9d4ec2ce02e3559026edfad9bfa229c

2 weeks agoAdd AuthenticationTest for common library 96/141396/2
Fiete Ostkamp [Mon, 30 Jun 2025 06:35:18 +0000 (08:35 +0200)]
Add AuthenticationTest for common library

- add integration test that asserts that basic auth
  is working correctly

Issue-ID: SO-4191
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: Ief550aa42743e2bb0c8721261a3a02b3ca4bed44

2 weeks agoMerge "Improve error mapping in OrchestrationRequests class"
Byung-Woo Jun [Sun, 29 Jun 2025 14:12:02 +0000 (14:12 +0000)]
Merge "Improve error mapping in OrchestrationRequests class"

2 weeks agoImprove error mapping in OrchestrationRequests class 95/141395/1
Fiete Ostkamp [Sun, 29 Jun 2025 12:13:59 +0000 (14:13 +0200)]
Improve error mapping in OrchestrationRequests class

- use status code of request to request-db-adapter in
  ValidationException instead of mapping any kind of
  exception to 404, which can be wildly misleading
- map other exceptions that may be thrown to
  Internal Server Error

Issue-ID: SO-4190
Change-Id: I3f56cfbdab204702fbfdfc95024d1f598e25de9f
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
2 weeks agoUpdate camunda 94/141394/1
Fiete Ostkamp [Fri, 27 Jun 2025 13:34:19 +0000 (15:34 +0200)]
Update camunda

- update camunda (7.14.0 -> 7.15.0) to a spring boot 2.4
  compatible version [0]

[0] https://docs.camunda.org/manual/latest/user-guide/spring-boot-integration/version-compatibility/

Issue-ID: SO-4189
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: I6e1ccc5763e305511bc28a863dec0ca9efe7a453

2 weeks agoAllow access to the /error page 92/141392/3
Fiete Ostkamp [Fri, 27 Jun 2025 07:37:32 +0000 (09:37 +0200)]
Allow access to the /error page

- permit access to /error to fix auth issues
  related to the user loosing his authentication
  before being redirected to the error page

Issue-ID: SO-4188
Change-Id: Iae17a7a8a2f8f12974c5b0fea7208c53244d94db
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
2 weeks agoRemove hardcoded spring-security-web version in common pom 90/141390/1
Fiete Ostkamp [Thu, 26 Jun 2025 13:25:07 +0000 (15:25 +0200)]
Remove hardcoded spring-security-web version in common pom

- remove hardcoded version since the dependency should be
  managed by spring-boot

Issue-ID: SO-4184
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: Ifcc33d065c3b458bb16664c6fac14bca868ba940

2 weeks agoUpgrade spring-boot to 2.4 71/141371/10
Fiete Ostkamp [Tue, 24 Jun 2025 11:29:47 +0000 (13:29 +0200)]
Upgrade spring-boot to 2.4

- upgrade spring-boot (2.3.12 -> 2.4.13)
- upgrade spring-cloud (Hoxton.SR12 -> 2020.0.6)
- add dependencyManagement for grpc since it is not
  managed by spring-cloud anymore
- remove tomcat-catalina from common
- adjust url paths in test classes since spring's
  UriComponentsBuilder got stricter with the paths

Issue-ID: SO-4184
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: I0f913791f621e68d5eeba797a77ec1fa89c658c0

2 weeks agoBump snapshot version to 1.15.5-SNAPSHOT 78/141378/1
Fiete Ostkamp [Wed, 25 Jun 2025 06:43:34 +0000 (08:43 +0200)]
Bump snapshot version to 1.15.5-SNAPSHOT

Issue-ID: SO-4186
Change-Id: I842e4338a2c476a6b0816dc4bcabfd1867dd37db
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
2 weeks ago1.15.4 release 77/141377/1
Fiete Ostkamp [Wed, 25 Jun 2025 06:10:08 +0000 (08:10 +0200)]
1.15.4 release

- update spring-cloud (Hoxton.SR8 -> Hoxton.SR12)
- update jackson (2.14.2 -> 2.14.3)

Issue-ID: SO-4185
Change-Id: I0dea85ca3a81a285f88389bdb8bb3d4ecc9dd998
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
3 weeks agoUpdate vulnerable dependencies 72/141372/1 1.15.4
Fiete Ostkamp [Tue, 24 Jun 2025 11:41:53 +0000 (13:41 +0200)]
Update vulnerable dependencies

- update spring-cloud (Hoxton.SR8 -> Hoxton.SR12)
- update jackson (2.14.2 -> 2.14.3)

Issue-ID: SO-4185
Change-Id: I0c34f1d7962257a5e3ebfaac8562423e6c4503b9
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
3 weeks agoIncrease snapshot version to 1.15.4-SNAPSHOT 58/141358/1
Fiete Ostkamp [Mon, 23 Jun 2025 11:37:25 +0000 (13:37 +0200)]
Increase snapshot version to 1.15.4-SNAPSHOT

Issue-ID: SO-4179
Change-Id: Id2d0a1eecce6a4982b59d88b36f5b147bbe3d992
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
3 weeks ago1.15.3 release 53/141353/1
Fiete Ostkamp [Sun, 22 Jun 2025 17:05:28 +0000 (19:05 +0200)]
1.15.3 release

- update spring boot (2.3.7 -> 2.3.12)
- remove version pinning for grpc in common pom [0]
- remove version pinning for spring-cloud-sleuth in common pom [1]
- replace spring-data-hal-browser with -explorer since the former
  is deprecated
- globally remove exclusion of vintage engine to enable
  tests in modules that are still missing the dependency
  and thus don't run their tests

[0] this effectively upgrades some of the grpc deps that have been
    overwritten (1.25.0 -> 1.30.2)
[1] this effectively upgrades sleuth (2.0.2 -> 2.2.5)

Issue-ID: SO-4175
Change-Id: Id764b7d8a0b7e903e34684d868ff41e984301363
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
3 weeks agoUpdate spring-boot 2.3 52/141352/2 1.15.3
Fiete Ostkamp [Sun, 22 Jun 2025 14:52:40 +0000 (16:52 +0200)]
Update spring-boot 2.3

- update spring boot (2.3.7 -> 2.3.12)
- remove version pinning for grpc in common pom [0]
- remove version pinning for spring-cloud-sleuth in common pom [1]
- replace spring-data-hal-browser with -explorer since the former
  is deprecated

[0] this effectively upgrades some of the grpc deps that have been
    overwritten (1.25.0 -> 1.30.2)
[1] this effectively upgrades sleuth (2.0.2 -> 2.2.5)

Issue-ID: SO-4176
Change-Id: Ibb7d9c3f8938e48bcde8be6cb9ff54f8037915a8
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
3 weeks agoReenable more tests 48/141348/7
Fiete Ostkamp [Fri, 20 Jun 2025 11:49:42 +0000 (13:49 +0200)]
Reenable more tests

- fix if check in VnfAdapterVfModuleObjectMapper that threw
  NullPointerException after RFC8040 changes (update of SDNC
  Client dependency)
- globally remove exclusion of vintage engine to enable
  tests in modules that are still missing the dependency
  and thus don't run their tests
- fix test in mso-requests-db-repositories as result of
  it being executed again
- fix integration tests in so-bpmn-tasks and so-bpmn-infrastructure-flows that were missing
  pnf.kafka properties
- replace deprecated RepositoryRestConfigurerAdapter class
  with RepositoryRestConfigurer
- add lombok dependency
- use constructor injection for SDNCRequestsTasks

Issue-ID: SO-4174
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: Icaab3518738ddad38d2a19e23f0649fc4e3b6691

3 weeks agoRemove some explicit versions from SO pom 39/141339/4
Fiete Ostkamp [Wed, 18 Jun 2025 15:00:00 +0000 (17:00 +0200)]
Remove some explicit versions from SO pom

- remove explicit version for spring-web in common pom
  since spring has it's own dependency management and
  having explicit versions leave the risk of incompati
  bilities
- remove explicit spring hal browser version declaration
- bump snapshot version to 1.15.3-SNAPSHOT

Issue-ID: SO-4173
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: I3e9bd1dc5286c109e2a1865e3ca4f328cb6b5717

5 weeks ago1.15.2 release 09/141109/1
Fiete Ostkamp [Fri, 6 Jun 2025 07:42:13 +0000 (09:42 +0200)]
1.15.2 release

- remove all AAF dependendies
- remove the aaf spring profile
- rename auth-related properties
  - mso.config.cadi.aafId -> mso.auth.user
  - mso.auth              -> mso.auth.password
- update tomcat-catalina (9.0.45 -> 9.0.105)

Issue-ID: SO-4167
Change-Id: Ic455bc9193b3fcdb32119560ff437ccab11bc8b2
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
5 weeks agoUpdate vulnerable tomcat dependency 06/141106/1 1.15.2
Fiete Ostkamp [Fri, 6 Jun 2025 05:47:34 +0000 (07:47 +0200)]
Update vulnerable tomcat dependency

- update tomcat-catalina (9.0.45 -> 9.0.105)
- bump snapshot version to 1.15.2-SNAPSHOT

Issue-ID: SO-4165
Change-Id: I1a0ebba72f468d400297014a78a481ca3b484e8a
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
8 weeks agoRemove AAF from SO 01/140901/2
Fiete Ostkamp [Fri, 16 May 2025 14:22:09 +0000 (16:22 +0200)]
Remove AAF from SO

- remove all AAF dependendies
- remove the aaf spring profile
- rename auth-related properties
  - mso.config.cadi.aafId -> mso.auth.user
  - mso.auth              -> mso.auth.password

Issue-ID: SO-4155
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: I8249970f7f7027638d1da631574893d252b3c90b

2 months agoMerge "1.15.1 release"
Lukasz Rajewski [Wed, 14 May 2025 14:44:55 +0000 (14:44 +0000)]
Merge "1.15.1 release"

2 months ago1.15.1 release 84/140884/1
Fiete Ostkamp [Wed, 14 May 2025 14:31:35 +0000 (16:31 +0200)]
1.15.1 release

- fix error related to VNF instantiation via OpenStack Heat template
- add tracing support
- use latest java 11 base image

Issue-ID: SO-4152
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: Ia642eaff221db3cf0d3c5de8c643253c234ec030

2 months agoMerge "fix to missing property volume-selflink error"
Lukasz Rajewski [Wed, 14 May 2025 13:43:38 +0000 (13:43 +0000)]
Merge "fix to missing property volume-selflink error"

2 months agoAdd tracing for catalog-db-adapter 68/140868/5
Fiete Ostkamp [Mon, 12 May 2025 11:08:24 +0000 (13:08 +0200)]
Add tracing for catalog-db-adapter

- add sleuth tracing dependencies
- make tracing disabled by default
- make it configurable via environment variables
- bump snapshot version to 1.15.1-SNAPSHOT

Issue-ID: SO-4150
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: Id8c32584a5ae49417f0d5ddb7a828cc189dc2789

2 months agoUpdate base image 66/140866/1
Fiete Ostkamp [Mon, 12 May 2025 06:10:02 +0000 (08:10 +0200)]
Update base image

- update eclipse-temurin base image (11.0.18_10-jre-alpine -> 11.0.27_6-jre-alpine)

Issue-ID: SO-4149
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: Id72bb1a68adab4b9196b5fb6594fb7dd62bd2213

4 months agoReenable tests in more modules 14/140314/2
Fiete Ostkamp [Thu, 27 Feb 2025 09:28:41 +0000 (10:28 +0100)]
Reenable tests in more modules

- adapters/so-appc-orchestrator
- adapters/mso-catalog-db-adapter
- bpmn/so-bpmn-infrastructure-common
- cxf-logging
- this also fixes a syntax error in the R_MacroData.sql file
  that is used in the mso-catalog-db-adapter

Issue-ID: SO-4146
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: Iac1e83877e967a628f3f8f8b2754fa26dca00ac0

4 months agoMerge "Reenable tests for the so-bpmn-building-blocks module"
SANKET KS [Tue, 18 Feb 2025 13:10:44 +0000 (13:10 +0000)]
Merge "Reenable tests for the so-bpmn-building-blocks module"

4 months agoReenable tests for the so-bpmn-building-blocks module 31/140231/2
Fiete Ostkamp [Sat, 15 Feb 2025 18:30:38 +0000 (19:30 +0100)]
Reenable tests for the so-bpmn-building-blocks module

- adjust test properties after the dmaap to kafka migration
- fix wrong SDNC response in SDNCHandlerTest (after the RFC 8040 migration)
- compile the jsonpath pattern in SDNCRequestTasks on the class level
  to improve performance of the operation

Issue-ID: SO-4143
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: I8da50b1e5596d067a61d5264e88f9b544b7dc980

4 months agoReenable tests for more of the bpmn modules 30/140230/1
Fiete Ostkamp [Sat, 15 Feb 2025 17:02:49 +0000 (18:02 +0100)]
Reenable tests for more of the bpmn modules

- MSOCommonBPMN
- MSOCoreBPMN
- resolve build warnings due to duplicate dependency declarations in other modules

Issue-ID: SO-4142
Change-Id: I37a09eec3e09f0f280c3ae3440b11b1b16447710
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
4 months agoReenable tests for most of the top-level modules 29/140229/2
Fiete Ostkamp [Sat, 15 Feb 2025 14:14:39 +0000 (15:14 +0100)]
Reenable tests for most of the top-level modules

- mso-requests-db-adapter
- aai-client
- so-optimization-clients
- so-sdn-clients

Issue-ID: SO-4141
Change-Id: I59264e394de71eea1a091bd08d32b181a44713d5
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
4 months agoReenable tests for most of the adapters 28/140228/1
Fiete Ostkamp [Sat, 15 Feb 2025 13:16:55 +0000 (14:16 +0100)]
Reenable tests for most of the adapters

- mso-adapter-utils
- mso-adapters-rest-interface
- mso-openstack-adapters
- mso-sdnc-adapters
- so-appc-orchestrator

Issue-ID: SO-4140
Change-Id: I279bc01ad1ac3777c1b5d4b0389cddafd33304bd
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
4 months agoReenable tests for the so-api-handler-infra and mso-requests-db modules 23/140223/1
Fiete Ostkamp [Fri, 14 Feb 2025 10:50:24 +0000 (11:50 +0100)]
Reenable tests for the so-api-handler-infra and mso-requests-db modules

- exception message that is asserted in test likely changed due to version
  update of the org.json dependency that was done in the meantime

Issue-ID: SO-4138
Change-Id: I48499cccc40f7c01e3d3f14def6301c8a6486cc1
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
4 months agoMerge "Reenable tests for the common module"
SANKET KS [Fri, 14 Feb 2025 09:27:51 +0000 (09:27 +0000)]
Merge "Reenable tests for the common module"

4 months agoMerge "Reenable tests for the asdc-controller module"
SANKET KS [Fri, 14 Feb 2025 09:26:20 +0000 (09:26 +0000)]
Merge "Reenable tests for the asdc-controller module"

4 months agoMerge "Reenable tests for the mso-catalog-db module"
SANKET KS [Fri, 14 Feb 2025 09:24:28 +0000 (09:24 +0000)]
Merge "Reenable tests for the mso-catalog-db module"

5 months agoReenable tests for the mso-catalog-db module 70/140170/1
Fiete Ostkamp [Fri, 7 Feb 2025 12:33:04 +0000 (13:33 +0100)]
Reenable tests for the mso-catalog-db module

- add vintage engine dep for mso-catalog-db module
- use https urls for repository urls since maven central
  is not accepting http connections anymore [0]

[0] https://www.sonatype.com/blog/central-repository-moving-to-https

Issue-ID: SO-4137
Change-Id: I0328575020d32db00f50b6ae57e888688b09a54b
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
5 months agoReenable tests for the common module 69/140169/1
Fiete Ostkamp [Fri, 7 Feb 2025 12:10:45 +0000 (13:10 +0100)]
Reenable tests for the common module

- add vintage engine dep to reenable tests in common module
- resolve build warning about jsonobject library in tests
- change mockito-core dep scope to test
- resolve build warning about duplicate declarations of appc dependencies

Issue-ID: SO-4136
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: Ic8bbfb3723e1dac42e7d9b57a919eb54c9426b51

5 months agoReenable tests for the asdc-controller module 66/140166/1
Fiete Ostkamp [Fri, 7 Feb 2025 10:04:12 +0000 (11:04 +0100)]
Reenable tests for the asdc-controller module

- fix build warning about unresolvable sonar-maven-plugin
- change dependency scope of mockito, junit-toolbox and spring-boot-starter-test
  to test

Issue-ID: SO-4135
Change-Id: I06b42c856167586a3f68054e2b8e34bff4e1088f
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
5 months agoReenable tests for the mso-infrastructure-bpmn module 65/140165/1
Fiete Ostkamp [Fri, 7 Feb 2025 09:16:55 +0000 (10:16 +0100)]
Reenable tests for the mso-infrastructure-bpmn module

- add vintage-engine dependency to mso-infrastructure-bpmn module to reenable tests
- fix test case that broke because the InformDmaapClient was renamed to InformKafkaClient
- exclude android-json from shazamcrest dep to resolve build warning
- remove duplicate maven-dependency-plugin declaration from pom

Issue-ID: SO-4134
Change-Id: I42013a81218e2527ab228b45103f128e8dd50cb3
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
5 months agoRelease notes for OSLO 20/139920/4
sx00562924 [Fri, 17 Jan 2025 06:03:53 +0000 (07:03 +0100)]
Release notes for OSLO

Issue-ID: SO-4132
Change-Id: I9d63f41664b1e43e54f8341b1c6afddcc4054b99
Signed-off-by: sx00562924 <SX00562924@techmahindra.com>
5 months agoRelease 1.15.0 for SO 19/139919/1
sanket12345 [Thu, 16 Jan 2025 14:11:05 +0000 (15:11 +0100)]
Release 1.15.0 for SO

Issue-ID: SO-4132
Change-Id: I6b63f41994d1e43e54f8341b1c6afbbcc4054b67
Signed-off-by: sanket12345 <SX00562924@techmahindra.com>
5 months agoBump version to 1.15.0-SNAPSHOT 18/139918/1 1.15.0 1.15.1
sx00562924 [Thu, 16 Jan 2025 10:22:45 +0000 (11:22 +0100)]
Bump version to 1.15.0-SNAPSHOT

Issue-ID: SO-4132
Change-Id: I9b63f41667d1e43e54f2431b1c6afaaee4054b67
Signed-off-by: sx00562924 <SX00562924@techmahindra.com>
6 months agoRFC 8040 API Support in SO 58/137558/4
sx00562924 [Wed, 17 Apr 2024 14:47:55 +0000 (16:47 +0200)]
RFC 8040 API Support in SO

-Support for RFC8040 APIs
-Changes in SelfLink at SO while querying
-Allow rpc GENERIC-RESOURCE-API in SDNC output
-RFC OOM Changes- https://gerrit.onap.org/r/c/oom/+/139164
-SDNC-Northbound-3.0.2 version
-SO Compliance RFC8040-Successful Migration

Issue-ID: SO-4127
Change-ID: I93f84f909a814d488f62f8b36606b0644d8b8608
Signed-off-by: sx00562924 <SX00562924@techmahindra.com>
11 months agonew onap logo 39/138739/1
thmsdt [Wed, 14 Aug 2024 08:37:44 +0000 (10:37 +0200)]
new onap logo

Issue-ID: DOC-826

Change-Id: I78ef727f4a50d301f14267e1858b825a168083b1
Signed-off-by: thmsdt <thomas.kulik@telekom.de>
11 months agoUpdate committer list 80/138680/1
sanket12345 [Fri, 9 Aug 2024 14:06:39 +0000 (19:36 +0530)]
Update committer list

-Adding SANKET from TechM as new committer

Issue-ID: SO-4131
Change-ID: I63f07f900a814b999f82f8f88806d8666d0b9444
Signed-off-by: sanket12345 <SX00562924@techmahindra.com>
16 months ago[SO] Release so 1.13.0 image 64/137164/1
sushant53 [Wed, 6 Mar 2024 08:34:17 +0000 (14:04 +0530)]
[SO] Release so 1.13.0 image

Release container images for so version 1.13.0

Issue-ID: SO-4122
Change-Id: I94b3389f57270a0f1d030d9be23d976dab5ee199
Signed-off-by: sushant53 <sushant.jadhav@t-systems.com>
16 months ago[SO] Code improvement in bpmn-infra supporting kafka change 61/137161/3 1.13.0
sushant53 [Thu, 29 Feb 2024 06:21:05 +0000 (11:51 +0530)]
[SO] Code improvement in bpmn-infra supporting kafka change

Code improvement in bpmn-infra supporting kafka change

Issue-ID: SO-4122
Change-Id: I3924418d16f8f6d9270278f1894e224a216d1cf2
Signed-off-by: sushant53 <sushant.jadhav@t-systems.com>
16 months agoupdate link to upper-constraints.txt 22/137422/1
thmsdt [Tue, 27 Feb 2024 10:35:36 +0000 (11:35 +0100)]
update link to upper-constraints.txt

Issue-ID: DOC-823

Change-Id: Id4ab2e329306f08fb50c1e61bc985ebe9beb9d75
Signed-off-by: thmsdt <thomas.kulik@telekom.de>
16 months agoadd python compatibility module 19/137319/1
thmsdt [Tue, 20 Feb 2024 13:24:17 +0000 (14:24 +0100)]
add python compatibility module

Issue-ID: DOC-823

Change-Id: I1abb4777f5eb8b01efee0e1807b4f2f3e0cfe04e
Signed-off-by: thmsdt <thomas.kulik@telekom.de>
19 months ago[SO] Remove DMaap Dependency in SO-bpmn-infra 43/136743/1
Rupali Shirode [Thu, 7 Dec 2023 11:09:19 +0000 (16:39 +0530)]
[SO] Remove DMaap Dependency in SO-bpmn-infra

Remove DMaap Dependency in SO-bpmn-infra

Issue-ID: SO-4122
Change-Id: I8fbe5761430c21b3f49b31a45ede095fdb72628f
Signed-off-by: Rupali Shirode <rupali.shirode@t-systems.com>
21 months agofix to missing property volume-selflink error 47/135947/1
Erol Ozcan (Argela) [Thu, 7 Sep 2023 14:44:29 +0000 (17:44 +0300)]
fix to missing property volume-selflink error

Issue-ID: SO-4116
Change-Id: Iae4be5dccf1171b9a320a33a4d05201fd6073d47
Signed-off-by: Erol Ozcan (Argela) <erol.ozcan@argela.com.tr>
(cherry picked from commit a47cec3b1cd56342c3e5c16b1390d92a3a17c7f8)

21 months ago[SO] PACKAGES UPGRADES for SO 62/135862/1
Rupali Shirode [Mon, 18 Sep 2023 13:50:31 +0000 (19:20 +0530)]
[SO] PACKAGES UPGRADES for SO

PACKAGES UPGRADES for SO

Issue-ID: SO-4035
Change-Id: I7080313b6c6a34462eaf1a4635c5fbb32f7ae4bc
Signed-off-by: Rupali Shirode <rupali.shirode@t-systems.com>
22 months ago[SO] PACKAGES UPGRADES for SO 58/135858/1
Rupali Shirode [Tue, 5 Sep 2023 13:17:48 +0000 (18:47 +0530)]
[SO] PACKAGES UPGRADES for SO

PACKAGES UPGRADES for SO

Issue-ID: SO-4035
Change-Id: I12bf1d049a4d1a4825cf1307c745cda8b786b1b9
Signed-off-by: Rupali Shirode <rupali.shirode@t-systems.com>
22 months agoMerge "[SO] Macro flow for PNF-Modify operation"
Seshu Kumar Mudiganti [Mon, 4 Sep 2023 12:43:46 +0000 (12:43 +0000)]
Merge "[SO] Macro flow for PNF-Modify operation"

22 months ago[SO] Macro flow for PNF-Modify operation 11/135711/1
Rupali Shirode [Mon, 28 Aug 2023 13:09:15 +0000 (18:39 +0530)]
[SO] Macro flow for PNF-Modify operation

Macro flow for PNF-Modify operation

Issue-ID: SO-4111
Change-Id: Ic51cbee5fe59f3aafb2ec41773504b183763d9ec
Signed-off-by: Rupali Shirode <rupali.shirode@t-systems.com>
22 months ago[SO] PACKAGES UPGRADES for SO 06/135706/1
Rupali Shirode [Thu, 17 Aug 2023 12:05:24 +0000 (17:35 +0530)]
[SO] PACKAGES UPGRADES for SO

PACKAGES UPGRADES for SO

Issue-ID: SO-4035
Change-Id: I8022bfd815b9c2579e90b6718d1ac12358018b46
Signed-off-by: Rupali Shirode <rupali.shirode@t-systems.com>
2 years agofix doc config files 03/135303/1
thmsdt [Mon, 3 Jul 2023 16:30:22 +0000 (18:30 +0200)]
fix doc config files

Issue-ID: DOC-811

Signed-off-by: thmsdt <thomas.kulik@telekom.de>
Change-Id: Ie551feefb42ca70c2097bfcea9407f4b3b17d52c

2 years agoFix doc issue 17/135017/1
Lukasz Rajewski [Thu, 22 Jun 2023 07:42:03 +0000 (07:42 +0000)]
Fix doc issue

Issue-ID: SO-4084
Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl>
Change-Id: Id1e1b8e8be474eef7bf43b9f3a89d7ed2a316552
(cherry picked from commit 7872038bd9a678546a596c570ae8c179ab056216)

2 years agoBump version to 1.13.0-SNAPSHOT 09/134809/2
Lukasz Rajewski [Mon, 12 Jun 2023 14:35:34 +0000 (14:35 +0000)]
Bump version to 1.13.0-SNAPSHOT

Issue-ID: SO-4084
Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl>
Change-Id: I6d63f41967b1e43e54f2431b1c6afccee4354b97

2 years ago[SO-BPMN-INFRA] Remove trailing slash from SDNC calls 43/134743/1
Andreas Geissler [Thu, 1 Jun 2023 13:52:10 +0000 (15:52 +0200)]
[SO-BPMN-INFRA] Remove trailing slash from SDNC calls

Correct the rest-call to support new SDNC version
for London

Issue-ID: SO-4109

Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
Change-Id: I6a7409ab5ed50396597cc6a179ad491caf1b9910

2 years agoMerge "SO catalogDB updates"
Seshu Kumar Mudiganti [Fri, 12 May 2023 15:49:05 +0000 (15:49 +0000)]
Merge "SO catalogDB updates"

2 years agoCode changes in BPMN infra for RAN Slice Use case 59/132959/5
Abhishek Patil [Wed, 12 Apr 2023 13:21:19 +0000 (18:51 +0530)]
Code changes in BPMN infra for RAN Slice Use case

New module so-bomn-moi is created.
New bpmn flows :
AssignRANNssiBB
ActivateRANNssiBB
ModifyRANNssiBB
DeleteRANNssiBB
Issue-ID: SO-4039
Signed-off-by: Patil <Abhishek.Patil@t-systems.com>
Change-Id: Ifad4e0a65dc810a753d30123a84c08081bcfd987

2 years agoRelease 1.12.1 images 98/134398/1
Lukasz Rajewski [Fri, 28 Apr 2023 12:53:13 +0000 (12:53 +0000)]
Release 1.12.1 images

Issue-ID: SO-4091
Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl>
Change-Id: Ieb5eeea231e96ef0103bb408ee4ade8996aa71de

2 years agoMerge "[SO] Link updates for ASD/CNFM documentation"
Byung-Woo Jun [Tue, 25 Apr 2023 15:19:57 +0000 (15:19 +0000)]
Merge "[SO] Link updates for ASD/CNFM documentation"

2 years ago[SO] Link updates for ASD/CNFM documentation 37/134337/1
egernug [Tue, 25 Apr 2023 15:03:39 +0000 (16:03 +0100)]
[SO] Link updates for ASD/CNFM documentation

Doc Update

Issue-ID: SO-4048

Signed-off-by: egernug <gerard.nugent@est.tech>
Change-Id: I0570346616abe8cc441a7769fc776fbfd49f9f91

2 years agoMerge "[SO] Documentation for ASD/CNFM"
Byung-Woo Jun [Tue, 25 Apr 2023 12:17:51 +0000 (12:17 +0000)]
Merge "[SO] Documentation for ASD/CNFM"

2 years ago[SO] Documentation for ASD/CNFM 25/134325/3
egernug [Tue, 25 Apr 2023 10:19:58 +0000 (11:19 +0100)]
[SO] Documentation for ASD/CNFM

Documentation in SO repo relating to ASD and CNFM

Issue-ID: SO-4048

Signed-off-by: egernug <gerard.nugent@est.tech>
Change-Id: I8a71931d00c7328c15a4b46daa14e5b62ab2a5d8

2 years agoAdd or Delete a PNF to an Active Service 46/134246/3 1.12.1
Sreeja Gattagouni [Fri, 21 Apr 2023 05:10:34 +0000 (05:10 +0000)]
Add or Delete a PNF to an Active Service

-Unique values for ready & update
-concurrent changes in OOM/Configmap of so-bpm-infra-app

Issue-ID: SO-4046
Change-ID: I73f97f986a817d423f92f8d925dcd0347b8a0405
Signed-off-by: Sreeja Gattagouni <sg00744975@techmahindra.com>
Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl>
2 years agoSO catalogDB updates 31/132931/3
Abhishek Patil [Wed, 12 Apr 2023 08:58:53 +0000 (14:28 +0530)]
SO catalogDB updates

Issue-ID: SO-4040
Change-Id: Ifad4e0a65dc810a753d30751a84c08081bcfd145
Signed-off-by: Patil <Abhishek.Patil@t-systems.com>
2 years agoMerge "Code changes in SO api-handler for RAN Slice"
Lukasz Rajewski [Wed, 12 Apr 2023 08:05:16 +0000 (08:05 +0000)]
Merge "Code changes in SO api-handler for RAN Slice"

2 years agoAdding namespace support 65/134065/1
waqas.ikram [Tue, 11 Apr 2023 12:57:39 +0000 (13:57 +0100)]
Adding namespace support

Change-Id: Iac15ae319f335dd67a660c2cf7ac051cf1c9077e
Issue-ID: SO-4097
Signed-off-by: waqas.ikram <waqas.ikram@est.tech>
2 years agoChanges in package versions 10/134010/1
Lukasz Rajewski [Tue, 4 Apr 2023 20:16:35 +0000 (20:16 +0000)]
Changes in package versions

Issue-ID: SO-4001
Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl>
Change-Id: Ie3c2aeb5a5e9d870ac40d50fb59302a5199e9433

2 years agoCode changes in SO api-handler for RAN Slice 43/132943/10
Abhishek Patil [Fri, 31 Mar 2023 05:09:46 +0000 (10:39 +0530)]
Code changes in SO api-handler for RAN Slice

Issue-ID: SO-4038
Change-Id: Ifad4e0a65dc810a753d30741a84c08081bcfd258
Signed-off-by: Patil <Abhishek.Patil@t-systems.com>
2 years agoSO-4001: Package upgrade for the SO and so-libs 05/133905/2
kiran mhetre [Wed, 29 Mar 2023 10:40:39 +0000 (10:40 +0000)]
SO-4001: Package upgrade for the SO and so-libs

Issue-ID: SO-4001
Signed-off-by: kiran.mhetre <kiran.mhetre@t-systems.com>
Change-Id: Ib75096bdd98291b49159a9ad259fd393a591cd44

2 years agoPNF-READY Events not received by DmaapListener in TestScenarios 36/133536/2
sreeja gattagouni [Fri, 3 Mar 2023 10:01:59 +0000 (15:31 +0530)]
PNF-READY Events not received by DmaapListener in TestScenarios

-PNF-READY events not received in test scenarios of DmaapClient, but is able to receive PNF_UPDATE in tests.
DMaaP listener does not receive any PNF-READY events and the tests fail (pnf-registrate, pnf_macro). Issue observed in OOM SmokeTests.

Issue-ID: SO-4085
Change-ID:I73f97f986a817d423f92f8d922dcd9647b8a2520
Signed-off-by: sreeja gattagouni <sg00744975@techmahindra.com>
2 years agoMerge "Fix for GPLv3 issues in base image"
Seshu Kumar Mudiganti [Tue, 28 Mar 2023 19:04:27 +0000 (19:04 +0000)]
Merge "Fix for GPLv3 issues in base image"

2 years agoFix for GPLv3 issues in base image 99/131999/5
Lukasz Rajewski [Thu, 3 Nov 2022 15:16:34 +0000 (16:16 +0100)]
Fix for GPLv3 issues in base image

Removall of GPLv3 packages and change of java base image

Issue-ID: SO-3745
Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl>
Change-Id: I9dbbc7bccef949f3215ee9a8e60fa70f8edae361

2 years agoBump version to 1.12.1-SNAPSHOT 91/133891/2
Lukasz Rajewski [Tue, 28 Mar 2023 12:59:24 +0000 (12:59 +0000)]
Bump version to 1.12.1-SNAPSHOT

Issue-ID: SO-4084
Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl>
Change-Id: Ib302b5a2cb0dd206a0309e9fcae047b508169146

2 years agoMerge "Fix docs issues"
Seshu Kumar Mudiganti [Tue, 28 Mar 2023 18:10:06 +0000 (18:10 +0000)]
Merge "Fix docs issues"

2 years agoFix docs issues 94/133894/1
Lukasz Rajewski [Tue, 28 Mar 2023 16:03:10 +0000 (16:03 +0000)]
Fix docs issues

Issue-ID: DOC-811
Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl>
Change-Id: Ied42ffc4035e51fe1382bd64da44107dfca4cde6

2 years ago[SO] SO changes to support Delete AS 19/133319/1
raviteja.karumuri [Wed, 13 Jul 2022 12:17:49 +0000 (13:17 +0100)]
[SO] SO changes to support Delete AS

Issue-ID: SO-4084
Signed-off-by: raviteja.karumuri <raviteja.karumuri@est.tech>
Change-Id: Ib75076bdd98291b48149a9ad859fd383a551cd45

2 years ago[SO] Pending Unit test cases for create changes in SO 69/133269/2
raviteja.karumuri [Wed, 15 Feb 2023 00:31:29 +0000 (00:31 +0000)]
[SO] Pending Unit test cases for create changes in SO

Issue-ID: SO-4070
Signed-off-by: raviteja.karumuri <raviteja.karumuri@est.tech>
Change-Id: I75f0b41bc37f9c437fd1451a7efb85be803a001d

2 years ago[SO] Pending Create changes for SO-API and BPMN-INFRA to support CNF's through ASD 45/133145/4
raviteja.karumuri [Tue, 31 Jan 2023 11:13:01 +0000 (11:13 +0000)]
[SO] Pending Create changes for SO-API and BPMN-INFRA to support CNF's through ASD

Issue-ID: SO-4069
Signed-off-by: raviteja.karumuri <raviteja.karumuri@est.tech>
Change-Id: I91e6d2dfc3ce84f7fe496b9b87c2a4ac6f521673

2 years ago[SO] Create changes for SO-API and BPMN-INFRA to support CNF's through ASD 39/133039/5
raviteja.karumuri [Wed, 25 Jan 2023 13:45:59 +0000 (13:45 +0000)]
[SO] Create changes for SO-API and BPMN-INFRA to support CNF's through ASD

Issue-ID: SO-4069
Signed-off-by: raviteja.karumuri <raviteja.karumuri@est.tech>
Change-Id: Ia8defe62c70e126df683ca523b10efe55a26db87

2 years agoMerge "Add or Delete a PNF to an Active Service"
Lukasz Rajewski [Fri, 20 Jan 2023 11:25:36 +0000 (11:25 +0000)]
Merge "Add or Delete a PNF to an Active Service"

2 years agoMerge "Support Activate,Deactivate and Terminate feature for NSMF based TN slices"
Lukasz Rajewski [Thu, 19 Jan 2023 11:20:00 +0000 (11:20 +0000)]
Merge "Support Activate,Deactivate and Terminate feature for NSMF based TN slices"

2 years agoAdd or Delete a PNF to an Active Service 43/132843/5
sreeja gattagouni [Thu, 5 Jan 2023 15:24:08 +0000 (20:54 +0530)]
Add or Delete a PNF to an Active Service

-This feature Enables adding or deleting a PNF to an active Service.

Issue-ID: SO-4046
Change-ID:I73f97f986a817d423f92f8d925dcd0947b8a2503
Signed-off-by: sreeja gattagouni <sg00744975@techmahindra.com>
2 years agoSupport Allocate feature for NSMF based TN slices 91/132291/2
sr20255772 [Thu, 17 Nov 2022 14:59:54 +0000 (14:59 +0000)]
Support Allocate feature for NSMF based TN slices

Issue-ID: SO-4029
Signed-off-by: sr20255772 <sravya.sherla@wipro.com>
Change-Id: Ifad4e0a65dc810a843d30800a94c08081bcfd981

2 years agoIncreased timeout for CreateChildService 82/132882/5
Mamed Mamedov [Tue, 10 Jan 2023 14:14:26 +0000 (16:14 +0200)]
Increased timeout for CreateChildService

In case of PNF is inside the child service: DMAAP event timeout of PNF is on 14H level but child service timeout is on 5H level

Issue-ID: SO-4049
Signed-off-by: Mamed Mamedov <mamed.mamedov@telekom.com>
Change-Id: If5d43f86824c37c72b7103bc75eda5c6a865a4b9

2 years agoSupport Activate,Deactivate and Terminate feature for NSMF based TN slices 84/132484/2
sr20255772 [Mon, 28 Nov 2022 12:28:40 +0000 (12:28 +0000)]
Support Activate,Deactivate and Terminate feature for NSMF based TN slices

Issue-ID: SO-4029
Signed-off-by: sr20255772 <sravya.sherla@wipro.com>
Change-Id: I97f0c610c55fb19fbcd0f9ae441b6826800820ab

2 years ago[SO] Release imgs 1.12.0 63/132663/1
efiacor [Mon, 12 Dec 2022 11:31:04 +0000 (11:31 +0000)]
[SO] Release imgs 1.12.0

Signed-off-by: efiacor <fiachra.corcoran@est.tech>
Change-Id: I93c2d62541bb5b94875cfcff893c760efd16b66d
Issue-ID: SO-4041