Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump com.unboundid.product.scim2:scim2-sdk-client from 2.3.5 to 3.2.0 #2424

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 9, 2024

Bumps com.unboundid.product.scim2:scim2-sdk-client from 2.3.5 to 3.2.0.

Changelog

Sourced from com.unboundid.product.scim2:scim2-sdk-client's changelog.

v3.2.0 - 2024-Dec-04

Fixed an issue where AndFilter.equals() and OrFilter.equals() could incorrectly evaluate to true.

Updated Jackson dependencies to 2.17.2.

Added better customization of the MapperFactory. The MapperFactory class can be used to customize the behavior of the SDK when it converts JSON strings to Java Objects, and vice versa. This release now supports overriding the JsonUtils.createObjectMapper() method to allow for the addition of custom serializers and deserializers. See the class-level Javadoc of MapperFactory for more information on how to accomplish this.

Added a property that allows ADD patch operations with value filters to target an existing value. For example, consider the following patch request. This request aims to add a display field on a user's work email.

{
  "schemas": [ "urn:ietf:params:scim:api:messages:2.0:PatchOp" ],
  "Operations": [
    {
      "op": "add",
      "path": "emails[type eq \"work\"].display",
      "value": "[email protected]"
    }
  ]
}

When the new behavior is configured, this operation will search the resource for an existing "work" email and add a "display": "[email protected]" field to that email. This behavior allows for better integration with SCIM provisioners that send individual requests such as emails[type eq "work"].display followed by emails[type eq "work"].value, which are intended to target the same email. To use this behavior, toggle the property by adding the following Java code in your application:

PatchOperation.APPEND_NEW_PATCH_VALUES_PROPERTY = false;

The default value of APPEND_NEW_PATCH_VALUES_PROPERTY is true, which will always add a new value (i.e., email) on the multi-valued attribute instead of updating an existing value/email. This matches the behavior of the SDK since the 3.0.0 release.

 

Refreshed the documentation of the GenericScimResource class to provide better insight on how it can be used to define resource types for objects that don't have a strongly defined schema. The class-level Javadoc describes how to interface with the object effectively, and the methods now provide clearer examples of how they can be used.

Updated the class-level documentation of ListResponse to provide more background about the resource type and how to interface with the object.

... (truncated)

Commits
  • ef46317 Setting release version 3.2.0
  • dcd867a Update CHANGELOG for the next release.
  • dc8144f Allow deserializing null Resources in ListResponse
  • 67986bf Overhaul GenericScimResource documentation.
  • 5553f17 Apply whitespace formatting changes.
  • b536175 Support ADD patch ops targeting existing values
  • b0d2e2b Add a missing release note.
  • a78cbf2 Update equals() for combining filters
  • 1b4c1dd Fix pipeline test failure
  • c5a828d Support customization of the MapperFactory
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot requested a review from Frooodle as a code owner December 9, 2024 22:44
@dependabot dependabot bot added dependencies Pull requests that update a dependency file Java Pull requests that update Java code labels Dec 9, 2024
@dosubot dosubot bot added the size:XS This PR changes 0-9 lines, ignoring generated files. label Dec 9, 2024
@github-actions github-actions bot removed the Java Pull requests that update Java code label Dec 9, 2024
@dependabot dependabot bot force-pushed the dependabot/gradle/com.unboundid.product.scim2-scim2-sdk-client-3.2.0 branch from 501bfd2 to 9c091c7 Compare December 12, 2024 11:30
@Frooodle Frooodle added the needs investigation Issues that require further investigation label Dec 12, 2024
@dependabot dependabot bot force-pushed the dependabot/gradle/com.unboundid.product.scim2-scim2-sdk-client-3.2.0 branch 8 times, most recently from 24da81d to 6b9c1e3 Compare December 17, 2024 10:28
@Ludy87
Copy link
Contributor

Ludy87 commented Dec 17, 2024

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/gradle/com.unboundid.product.scim2-scim2-sdk-client-3.2.0 branch 5 times, most recently from 81203a6 to 60b3e33 Compare December 21, 2024 13:51
Bumps [com.unboundid.product.scim2:scim2-sdk-client](https://github.com/pingidentity/scim2) from 2.3.5 to 3.2.0.
- [Release notes](https://github.com/pingidentity/scim2/releases)
- [Changelog](https://github.com/pingidentity/scim2/blob/master/CHANGELOG.md)
- [Commits](pingidentity/scim2@scim2-2.3.5...scim2-3.2.0)

---
updated-dependencies:
- dependency-name: com.unboundid.product.scim2:scim2-sdk-client
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/gradle/com.unboundid.product.scim2-scim2-sdk-client-3.2.0 branch from 60b3e33 to 5118549 Compare December 21, 2024 13:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file needs investigation Issues that require further investigation size:XS This PR changes 0-9 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants