[midPoint-git] [Evolveum/midpoint] 3aa7e2: Smart Integration: Extract schema match related me...

Michal Zelenčík noreply at github.com
Mon Jan 19 08:55:36 CET 2026


  Branch: refs/heads/master
  Home:   https://github.com/Evolveum/midpoint
  Commit: 3aa7e2f95c8238a3e9b6c31cf2918d3a3fb89bc1
      https://github.com/Evolveum/midpoint/commit/3aa7e2f95c8238a3e9b6c31cf2918d3a3fb89bc1
  Author: Michal Zelencik <michal.zelencik at evolveum.com>
  Date:   2026-01-15 (Thu, 15 Jan 2026)

  Changed paths:
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/SchemaMatchService.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/SmartIntegrationServiceImpl.java

  Log Message:
  -----------
  Smart Integration: Extract schema match related methods into separate file

Signed-off-by: Michal Zelencik <michal.zelencik at evolveum.com>

# Conflicts:
#	model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/SmartIntegrationServiceImpl.java


  Commit: b7c1f7a581fe0b99c794e056febdf6ce1c399351
      https://github.com/Evolveum/midpoint/commit/b7c1f7a581fe0b99c794e056febdf6ce1c399351
  Author: Michal Zelencik <michal.zelencik at evolveum.com>
  Date:   2026-01-15 (Thu, 15 Jan 2026)

  Changed paths:
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/SchemaMatchService.java

  Log Message:
  -----------
  Smart Integration: Refactor computeSchemaMatch() method for better maintainability

- processAttributeMatch: Handles validation and processing of individual
  attribute matches, returning null for invalid matches instead of using
  continue statements
- createAttributeDefinition: Eliminates duplicate code for creating
  SiAttributeDefinitionType beans

Signed-off-by: Michal Zelencik <michal.zelencik at evolveum.com>


  Commit: 89c128a8a9846e36b97d5c715d30a54d64f31ad5
      https://github.com/Evolveum/midpoint/commit/89c128a8a9846e36b97d5c715d30a54d64f31ad5
  Author: Michal Zelencik <michal.zelencik at evolveum.com>
  Date:   2026-01-15 (Thu, 15 Jan 2026)

  Changed paths:
    M infra/schema/src/main/resources/xml/ns/public/common/common-smart-integration-3.xsd
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/SchemaMatchService.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/SchemaMatchingOperation.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/KnownSchemaDetector.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/KnownSchemaMappingProvider.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/KnownSchemaService.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/KnownSchemaType.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/ad/UserActiveDirectoryMappingProvider.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/ad/UserActiveDirectorySchemaDetector.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/ldap/InetOrgPersonLdapMappingProvider.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/ldap/InetOrgPersonLdapSchemaDetector.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/scim/UserScimMappingProvider.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/scim/UserScimSchemaDetector.java

  Log Message:
  -----------
  Smart Integration: Add known schema detection framework with AD, LDAP, and SCIM support

Introduces a new framework for detecting and providing mappings for
known schema types. The framework consists of:

- KnownSchemaDetector interface for schema detection logic
- KnownSchemaMappingProvider interface for pre-configured mappings
- KnownSchemaService to manage detectors and providers
- KnownSchemaType enum defining supported schema types

Implementations include:
- ActiveDirectorySchemaDetector and ActiveDirectoryMappingProvider
- LdapSchemaDetector and LdapMappingProvider
- ScimSchemaDetector and ScimMappingProvider

SchemaMatchService and SchemaMatchingOperation updated to integrate
the known schema detection into the schema matching workflow.

Signed-off-by: Michal Zelencik <michal.zelencik at evolveum.com>


  Commit: ff669ad07cecc6726f20cfc22a0dbfae9923d1b2
      https://github.com/Evolveum/midpoint/commit/ff669ad07cecc6726f20cfc22a0dbfae9923d1b2
  Author: Michal Zelencik <michal.zelencik at evolveum.com>
  Date:   2026-01-15 (Thu, 15 Jan 2026)

  Changed paths:
    M model/smart-api/src/main/java/com/evolveum/midpoint/smart/api/SmartIntegrationService.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/SchemaMatchService.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/SchemaMatchingOperation.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/SmartIntegrationServiceImpl.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/activities/CorrelationSchemaMatchingActivityRun.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/activities/MappingsSchemaMatchingActivityRun.java
    M model/smart-impl/src/test/java/com/evolveum/midpoint/smart/impl/TestCorrelatorSuggestions.java
    M model/smart-impl/src/test/java/com/evolveum/midpoint/smart/impl/TestMappingsSuggestionOperation.java
    M model/smart-impl/src/test/java/com/evolveum/midpoint/smart/impl/TestSmartIntegrationServiceImpl.java

  Log Message:
  -----------
  Smart Integration: Add known schemas and AI merging in schema matching

Extend the schema matching capability to merge known schemas template with
AI predictions during the matching process. When AI provides duplicate we
prefer system suggestion.

Introduce 'useAiServide' input parameter to be able to turn off AI service
if user desires.


  Commit: d0f3221ba2d64d92680442bb94cb3f4353cfec1a
      https://github.com/Evolveum/midpoint/commit/d0f3221ba2d64d92680442bb94cb3f4353cfec1a
  Author: Michal Zelencik <michal.zelencik at evolveum.com>
  Date:   2026-01-15 (Thu, 15 Jan 2026)

  Changed paths:
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/MappingSuggestionOperationFactory.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/MappingsSuggestionOperation.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/KnownSchemaMappingProvider.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/KnownSchemaService.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/ad/UserActiveDirectoryMappingProvider.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/ldap/InetOrgPersonLdapMappingProvider.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/scim/UserScimMappingProvider.java
    M model/smart-impl/src/test/java/com/evolveum/midpoint/smart/impl/TestMappingsSuggestionOperation.java

  Log Message:
  -----------
  Smart Integration: Add mappings integration with known schema mapping providers

Refactored mapping providers to return AttributeMappingsSuggestionType instead
of raw mapping types, and added outbound mapping suggestions alongside existing
inbound mappings for AD, LDAP (inetOrgPerson), and SCIM schemas. Defined
schema matches are considered when generating mapping suggestions in addition
to defined mappings

Signed-off-by: Michal Zelencik <michal.zelencik at evolveum.com>


  Commit: 2422bab023ee190a3f89e087e2eed6ff5d5d63e9
      https://github.com/Evolveum/midpoint/commit/2422bab023ee190a3f89e087e2eed6ff5d5d63e9
  Author: Michal Zelencik <michal.zelencik at evolveum.com>
  Date:   2026-01-19 (Mon, 19 Jan 2026)

  Changed paths:
    M infra/schema/src/main/resources/xml/ns/public/common/common-smart-integration-3.xsd
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/MappingSuggestionOperationFactory.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/MappingsSuggestionOperation.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/SchemaMatchService.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/SchemaMatchingOperation.java
    R model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/KnownSchemaDetector.java
    R model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/KnownSchemaMappingProvider.java
    R model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/KnownSchemaService.java
    R model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/KnownSchemaType.java
    R model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/ad/UserActiveDirectoryMappingProvider.java
    R model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/ad/UserActiveDirectorySchemaDetector.java
    R model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/ldap/InetOrgPersonLdapMappingProvider.java
    R model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/ldap/InetOrgPersonLdapSchemaDetector.java
    R model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/scim/UserScimMappingProvider.java
    R model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/knownschemas/scim/UserScimSchemaDetector.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/WellKnownSchemaDetector.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/WellKnownSchemaProvider.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/WellKnownSchemaService.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/WellKnownSchemaType.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/ad/UserActiveDirectoryMappingProvider.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/ad/UserActiveDirectorySchemaDetector.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/ldap/InetOrgPersonLdapMappingProvider.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/ldap/InetOrgPersonLdapSchemaDetector.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/scim/UserScimMappingProvider.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/scim/UserScimSchemaDetector.java
    M model/smart-impl/src/test/java/com/evolveum/midpoint/smart/impl/TestMappingsSuggestionOperation.java

  Log Message:
  -----------
  Smart integration: Known schemas review fix

- Rename package: knownschemas → wellknownschemas
- Rename KnownSchemaDetector → WellKnownSchemaDetector
- Rename KnownSchemaMappingProvider → WellKnownSchemaProvider
- Rename KnownSchemaService → WellKnownSchemaService
- Rename KnownSchemaType → WellKnownSchemaType
- Rename method names: get* → suggest* (getSchemaMatches, getInboundMappings, getOutboundMappings)
- Remove unused getSupportedSchemaType() method from detector interface
- Add static helper methods to WellKnownSchemaProvider interface to eliminate code duplication
- Update XSD schema element: knownSchemaType → wellKnownSchemaType
- Replace LinkedHashMap with HashMap in provider implementations
- Fix license headers and remove unused imports


  Commit: c1adfdd373fb248466f07336fa00c5dec972f7f4
      https://github.com/Evolveum/midpoint/commit/c1adfdd373fb248466f07336fa00c5dec972f7f4
  Author: tchrapovic <chrapovic.tadeas at gmail.com>
  Date:   2026-01-19 (Mon, 19 Jan 2026)

  Changed paths:
    M repo/system-init/src/main/resources/initial-objects/mark/739-mark-shadow-correlation-owner-found.xml
    M repo/system-init/src/main/resources/initial-objects/mark/740-mark-shadow-correlation-owner-not-found.xml
    M repo/system-init/src/main/resources/initial-objects/mark/741-mark-shadow-correlation-owner-not-certain.xml
    R repo/system-init/src/main/resources/initial-objects/mark/mark-shadow-correlation-owner-found.xml
    R repo/system-init/src/main/resources/initial-objects/mark/mark-shadow-correlation-owner-not-certain.xml
    R repo/system-init/src/main/resources/initial-objects/mark/mark-shadow-correlation-owner-not-found.xml

  Log Message:
  -----------
  Fix duplicate initial objects


  Commit: 1c3c04dbce08b44b27d396111964258dc63decf1
      https://github.com/Evolveum/midpoint/commit/1c3c04dbce08b44b27d396111964258dc63decf1
  Author: Viliam Repan <vilo.repan at evolveum.com>
  Date:   2026-01-19 (Mon, 19 Jan 2026)

  Changed paths:
    M icf-connectors/dummy-connector/src/main/java/com/evolveum/icf/dummy/connector/AbstractObjectDummyConnector.java
    M icf-connectors/dummy-resource/src/main/java/com/evolveum/icf/dummy/resource/ConnectorOperationHook.java
    M model/model-intest/pom.xml
    M model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/tasks/TestTaskActivityPolicies.java
    M model/model-intest/src/test/resources/tasks/thresholds/task-reconciliation.xml
    M repo/repo-common/src/main/java/com/evolveum/midpoint/repo/common/activity/run/IterativeActivityRun.java

  Log Message:
  -----------
  MID-10989 test for itemProcessingResult evaluator, replicated the problem finally


  Commit: 1730fe00f3dbe153d6e67a5d2657345e9c5cc6cb
      https://github.com/Evolveum/midpoint/commit/1730fe00f3dbe153d6e67a5d2657345e9c5cc6cb
  Author: Pavol Mederly <mederly at evolveum.com>
  Date:   2026-01-19 (Mon, 19 Jan 2026)

  Changed paths:
    M repo/repo-common/src/test/java/com/evolveum/midpoint/repo/common/RepoConcurrencyTest.java

  Log Message:
  -----------
  Add a test for concurrent assignment additions

Here we test adding the same assignment by multiple threads
simultaneously. There should be only one assignment present
afterwards.

Related to #10714.


  Commit: c1374e0451433acff487d894224477b09f26380f
      https://github.com/Evolveum/midpoint/commit/c1374e0451433acff487d894224477b09f26380f
  Author: Pavol Mederly <mederly at evolveum.com>
  Date:   2026-01-19 (Mon, 19 Jan 2026)

  Changed paths:
    A infra/test-util/src/main/java/com/evolveum/midpoint/test/util/AbstractMultithreadCycleRunner.java
    M infra/test-util/src/main/java/com/evolveum/midpoint/test/util/MultithreadRunner.java
    M infra/test-util/src/main/java/com/evolveum/midpoint/test/util/ParallelTestThread.java
    M model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/TestRaceConditions.java

  Log Message:
  -----------
  Add model test for concurrent assignment creation

Here we test adding the same assignment by multiple threads
simultaneously, at the model level. There should be only one
assignment present afterwards.

The test is disabled because it fails.

Also, slightly improved parallel threading mechanisms for tests.

See #10714.


  Commit: f94ac4bbabbeaf494da2e6fe35cd45cb4efc6b0d
      https://github.com/Evolveum/midpoint/commit/f94ac4bbabbeaf494da2e6fe35cd45cb4efc6b0d
  Author: Viliam Repan <vilo.repan at evolveum.com>
  Date:   2026-01-19 (Mon, 19 Jan 2026)

  Changed paths:
    M icf-connectors/dummy-resource/src/main/java/com/evolveum/icf/dummy/resource/DummyResource.java
    M model/model-intest/pom.xml
    M model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/tasks/TestTaskActivityPolicies.java
    A model/model-intest/src/test/resources/tasks/thresholds/resource-csv-data.csv
    A model/model-intest/src/test/resources/tasks/thresholds/resource-csv.xml
    A model/model-intest/src/test/resources/tasks/thresholds/role-csv.xml
    A model/model-intest/src/test/resources/tasks/thresholds/task-reconciliation-csv.xml

  Log Message:
  -----------
  MID-10989 csv variant for test, failing a bit differently.


  Commit: e4b043cdc67b169507b33893de23c32c4f7ec9a4
      https://github.com/Evolveum/midpoint/commit/e4b043cdc67b169507b33893de23c32c4f7ec9a4
  Author: Viliam Repan <vilo.repan at evolveum.com>
  Date:   2026-01-19 (Mon, 19 Jan 2026)

  Changed paths:
    M model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/tasks/TestTaskActivityPolicies.java

  Log Message:
  -----------
  MID-10989 small typo fix


  Commit: 0b9e17aa7529d711bd120dd91345066d69415b9f
      https://github.com/Evolveum/midpoint/commit/0b9e17aa7529d711bd120dd91345066d69415b9f
  Author: tchrapovic <chrapovic.tadeas at gmail.com>
  Date:   2026-01-19 (Mon, 19 Jan 2026)

  Changed paths:
    M gui/admin-gui/src/frontend/scss/_tables.scss
    M gui/admin-gui/src/frontend/scss/smart-int.scss
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/api/component/ObjectListPanel.java
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/impl/component/ContainerableListPanel.java
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/impl/component/button/ReloadableButton.java
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/impl/page/admin/resource/component/NoValuePanel.java
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/impl/page/admin/resource/component/ResourceObjectsPanel.java
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/impl/page/admin/resource/component/wizard/schemaHandling/objectType/attribute/mapping/AttributeMappingsTableWizardPanel.java
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/impl/page/admin/resource/component/wizard/schemaHandling/objectType/correlation/CorrelationItemsTableWizardPanel.java
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/impl/page/admin/resource/component/wizard/schemaHandling/objectType/correlation/SmartCorrelationTable.java
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/impl/page/admin/simulation/component/SimulationActionFlow.java
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/impl/page/admin/simulation/component/SimulationActionTaskButton.java
    A gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/impl/page/admin/simulation/component/SimulationDataSamplingPanel.html
    A gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/impl/page/admin/simulation/component/SimulationDataSamplingPanel.java
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/impl/page/admin/simulation/panel/correaltion/SimulationCorrelationPanel.java
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/impl/page/admin/simulation/util/CorrelationUtil.java
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/data/BoxedTablePanel.html
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/data/BoxedTablePanel.java
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/data/CountToolbar.java
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/shadows/ShadowTablePanel.java
    M model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/correlator/tasks/CorrelationWorkDefinition.java

  Log Message:
  -----------
  Smart integration: fast simulation improvements

1. Fix resource object reload in ShadowTablePanel (Ajax timer no
longer stops after first refresh; change interpretation still
pending).
2. Fix query appending in CorrelationWorkDefinition.
3. Add sampling UI/pages to run simulations on a user-defined data
 sample (fast simulation).
4. Add No value panel support under BoxedTablePanel without losing
 search/footer state.
5. Enable simulating multiple correlation rules via checkbox
selection-
6. Add count/info panel to BoxedTablePanel-
7. Fix incorrectly built strings on correlation simulation pages.


  Commit: 4709d86498b11d5edbd22967435293af6e93f6ed
      https://github.com/Evolveum/midpoint/commit/4709d86498b11d5edbd22967435293af6e93f6ed
  Author: honchar <honchar at evolveum.com>
  Date:   2026-01-19 (Mon, 19 Jan 2026)

  Changed paths:
    M model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/LensUtil.java
    M model/report-impl/src/main/java/com/evolveum/midpoint/report/impl/activity/SaveReportFileSupport.java

  Log Message:
  -----------
  fixed report data type name and exported file name to be unique;
connected to #10978


  Commit: e0fabb170daea91fb5464c445faeb1fc42794795
      https://github.com/Evolveum/midpoint/commit/e0fabb170daea91fb5464c445faeb1fc42794795
  Author: Viliam Repan <vilo.repan at evolveum.com>
  Date:   2026-01-19 (Mon, 19 Jan 2026)

  Changed paths:
    M gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/impl/util/RelationUtil.java
    M infra/schema/src/main/java/com/evolveum/midpoint/schema/relation/IndexedRelationDefinitions.java
    M release-notes.adoc

  Log Message:
  -----------
  MID-10940 Fixed ConcurrentModificationException in RelationUtil


  Commit: 8310661cfedfea1c6b2a25882e530888fa6ea408
      https://github.com/Evolveum/midpoint/commit/8310661cfedfea1c6b2a25882e530888fa6ea408
  Author: honchar <honchar at evolveum.com>
  Date:   2026-01-19 (Mon, 19 Jan 2026)

  Changed paths:
    M repo/repo-sqale/src/main/java/com/evolveum/midpoint/repo/sqale/qmodel/accesscert/QAccessCertificationCaseMapping.java

  Log Message:
  -----------
  fixed the mapping for stage deadline column in certification cases table;
connected with #11023


  Commit: 2c620d8b33d01a0b6fb409b0feff03219c111ab1
      https://github.com/Evolveum/midpoint/commit/2c620d8b33d01a0b6fb409b0feff03219c111ab1
  Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  Date:   2026-01-19 (Mon, 19 Jan 2026)

  Changed paths:
    M gui/admin-gui/package-lock.json
    M gui/admin-gui/package.json

  Log Message:
  -----------
  Bump js-yaml and @cyclonedx/cyclonedx-npm in /gui/admin-gui

Bumps [js-yaml](https://github.com/nodeca/js-yaml) to 4.1.1 and updates ancestor dependency [@cyclonedx/cyclonedx-npm](https://github.com/CycloneDX/cyclonedx-node-npm). These dependencies need to be updated together.


Updates `js-yaml` from 4.1.0 to 4.1.1
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/4.1.0...4.1.1)

Updates `@cyclonedx/cyclonedx-npm` from 2.1.0 to 4.1.2
- [Release notes](https://github.com/CycloneDX/cyclonedx-node-npm/releases)
- [Changelog](https://github.com/CycloneDX/cyclonedx-node-npm/blob/main/HISTORY.md)
- [Commits](https://github.com/CycloneDX/cyclonedx-node-npm/compare/v2.1.0...v4.1.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 4.1.1
  dependency-type: indirect
- dependency-name: "@cyclonedx/cyclonedx-npm"
  dependency-version: 4.1.2
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support at github.com>


  Commit: e6db4b42db140650615845fc83cd11c9d4b01473
      https://github.com/Evolveum/midpoint/commit/e6db4b42db140650615845fc83cd11c9d4b01473
  Author: Michal Zelencik <michal.zelencik at evolveum.com>
  Date:   2026-01-19 (Mon, 19 Jan 2026)

  Changed paths:
    M infra/schema/src/main/resources/xml/ns/public/common/common-smart-integration-3.xsd
    M model/smart-api/src/main/java/com/evolveum/midpoint/smart/api/SmartIntegrationService.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/MappingSuggestionOperationFactory.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/MappingsSuggestionOperation.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/SchemaMatchService.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/SchemaMatchingOperation.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/SmartIntegrationServiceImpl.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/activities/CorrelationSchemaMatchingActivityRun.java
    M model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/activities/MappingsSchemaMatchingActivityRun.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/WellKnownSchemaDetector.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/WellKnownSchemaProvider.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/WellKnownSchemaService.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/WellKnownSchemaType.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/ad/UserActiveDirectoryMappingProvider.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/ad/UserActiveDirectorySchemaDetector.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/ldap/InetOrgPersonLdapMappingProvider.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/ldap/InetOrgPersonLdapSchemaDetector.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/scim/UserScimMappingProvider.java
    A model/smart-impl/src/main/java/com/evolveum/midpoint/smart/impl/wellknownschemas/scim/UserScimSchemaDetector.java
    M model/smart-impl/src/test/java/com/evolveum/midpoint/smart/impl/TestCorrelatorSuggestions.java
    M model/smart-impl/src/test/java/com/evolveum/midpoint/smart/impl/TestMappingsSuggestionOperation.java
    M model/smart-impl/src/test/java/com/evolveum/midpoint/smart/impl/TestSmartIntegrationServiceImpl.java

  Log Message:
  -----------
  Merge branch 'feature/schema-overfitting'


Compare: https://github.com/Evolveum/midpoint/compare/2ecec37d8e2f...e6db4b42db14

To unsubscribe from these emails, change your notification settings at https://github.com/Evolveum/midpoint/settings/notifications


More information about the midPoint-svn mailing list