[GitHub] [directory-kerby] coheigea merged pull request #127: Bump assertj-core from 3.23.1 to 3.24.2

2023-01-20 Thread GitBox


coheigea merged PR #127:
URL: https://github.com/apache/directory-kerby/pull/127


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] coheigea merged pull request #129: Bump nimbus-jose-jwt from 9.9.3 to 9.28

2023-01-20 Thread GitBox


coheigea merged PR #129:
URL: https://github.com/apache/directory-kerby/pull/129


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] coheigea merged pull request #128: Bump maven-compiler-plugin from 3.8.1 to 3.10.1

2023-01-20 Thread GitBox


coheigea merged PR #128:
URL: https://github.com/apache/directory-kerby/pull/128


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] dependabot[bot] opened a new pull request, #130: Bump mockito-core from 4.5.1 to 5.0.0

2023-01-20 Thread GitBox


dependabot[bot] opened a new pull request, #130:
URL: https://github.com/apache/directory-kerby/pull/130

   Bumps [mockito-core](https://github.com/mockito/mockito) from 4.5.1 to 5.0.0.
   
   Release notes
   Sourced from https://github.com/mockito/mockito/releases;>mockito-core's 
releases.
   
   v5.0.0
   Mockito 5: prepare for future JDK versions
   For a while now, we have seen an increase in problems/incompatibilities 
with recent versions of the JDK due to our usage of JVM-internal API.
   Most notably, JDK 17 made some changes which are incompatible with the 
current subclass mockmaker.
   Therefore, to prepare for the future of JDK, we are making some core changes 
to ensure Mockito keeps on working.
   Switch the default mockmaker to mockito-inline
   Back in Mockito 2.7.6, we published a new mockmaker based on the 
inline bytecode principle.
   This mockmaker creates mocks manipulating bytecode equivalent within the 
original class such that its method implementations hook into the normal 
Mockito machinery.
   As a comparison, the subclass mockmaker generates real 
subclasses for mocks, to mimic the same behavior.
   While the approaches are similar, the inline mockmaker avoids certain 
restrictions that the JDK imposes.
   For example, it does not violate module boundaries (introduced in JDK 9, but 
more heavily used in JDK 17) and avoids the leaking of the creation of the 
subclass.
   Massive thanks to community member https://github.com/reta;>@​reta who implemented this 
change.
   Note: this does not affect mockito-android nor testing on 
Android.
   When should I still be using the subclass mockmaker?
   There are legitimate remaining use cases for the subclass mockmaker.
   For example, on the Graal VM's native image, the inline mockmaker will not 
work and the subclass mockmaker is the appropriate choice.
   Additionally, if you would like to avoid mocking final classes, using the 
subclass mockmaker is a possibibility.
   Note however that if you solely want to use the subclass mockmaker to avoid 
mocking final, you will run into the above mentioned issues on JDK 17+.
   We want to leave this choice up to our users, which is why we will keep on 
supporting the subclass mockmaker.
   If you want to use the subclass mockmaker instead, you can use the new 
mockito-subclass artifact (published https://search.maven.org/artifact/org.mockito/mockito-subclass;>on Maven 
Central along with all our other artifacts).
   Update the minimum supported Java version to 11
   Mockito 4 supports Java 8 and above.
   Similar to other open source projects, we are moving away from JDK 8 and to 
newer versions.
   The primary reason for moving away from JDK 8 is the increasing maintenance 
costs with keeping our own infrastructure working.
   Lately we have been running into more and more JDK 8 breakages.
   Additionally, while we want to support the newest JDK API's, our current 
solution to support both JDK 8 and newer versions causes https://github-redirect.dependabot.com/mockito/mockito/issues/2798;>issues
 with the SecurityManager.
   Since we want Mockito to work on the newest version and more and more 
businesses adopting JDK 11, we have decided to make the switch as well.
   Massive thanks to community member https://github.com/reta;>@​reta who implemented this 
change.
   What should I do if I still run JDK 8?
   For JDK 8 and below, you can keep on using Mockito 4.
   This is similar to if you are using JDK 6, for which you can keep on using 
Mockito 2.
   The changes in Mockito 5 (for now) are primarily focused on the latest JDK 
versions, which means the API differences between Mockito 4 and 5 are minimal.
   However, over time this will most likely widen, so we do recommend adopting 
JDK 11 in the future.
   New type() method on ArgumentMatcher
   One of our most used public API's for customizing Mockito is the https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/ArgumentMatcher.html;>ArgumentMatcher
 interface.
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/mockito/mockito/commit/adf528d173f8b763fcd4fedab245ed485b465211;>adf528d
 Bump versions.bytebuddy from 1.12.21 to 1.12.22 (https://github-redirect.dependabot.com/mockito/mockito/issues/2864;>#2864)
   https://github.com/mockito/mockito/commit/2418419a1915bd234332eac2b4d5de85622d4699;>2418419
 Bump versions.junitJupiter from 5.9.1 to 5.9.2 (https://github-redirect.dependabot.com/mockito/mockito/issues/2858;>#2858)
   https://github.com/mockito/mockito/commit/3d40cd51d3982e33f7c2a2670c65d28233ceb66e;>3d40cd5
 Bump junit-platform-launcher from 1.9.1 to 1.9.2 (https://github-redirect.dependabot.com/mockito/mockito/issues/2859;>#2859)
   https://github.com/mockito/mockito/commit/9bec8e3a1a0f57e4baa9b64825d67641e9eb2d5e;>9bec8e3
 Bump versions.errorprone from 2.17.0 to 2.18.0 (https://github-redirect.dependabot.com/mockito/mockito/issues/2857;>#2857)
   

[GitHub] [directory-kerby] dependabot[bot] opened a new pull request, #129: Bump nimbus-jose-jwt from 9.9.3 to 9.28

2023-01-20 Thread GitBox


dependabot[bot] opened a new pull request, #129:
URL: https://github.com/apache/directory-kerby/pull/129

   Bumps [nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) 
from 9.9.3 to 9.28.
   
   Changelog
   Sourced from https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt;>nimbus-jose-jwt's
 changelog.
   
   version 1.0 (2012-03-01)
   
   First version based on the OpenInfoCard JWT, JWS and JWE code base.
   
   version 1.1 (2012-03-06)
   
   Introduces type-safe enumeration of the JSON Web Algorithms (JWA).
   Refactors the JWT class.
   
   version 1.2 (2012-03-08)
   
   Moves JWS and JWE code into separate classes.
   
   version 1.3 (2012-03-09)
   
   Switches to Apache Commons Codec for Base64URL encoding and decoding
   Consolidates the crypto utilities within the package.
   Introduces a JWT content serialiser class.
   
   version 1.4 (2012-03-09)
   
   Refactoring of JWT class and JUnit tests.
   
   version 1.5 (2012-03-18)
   
   Switches to JSON Smart for JSON serialisation and parsing.
   Introduces claims set class with JSON objects, string, Base64URL and
   byte array views.
   
   version 1.6 (2012-03-20)
   
   Creates class for representing, serialising and parsing JSON Web Keys
   (JWK).
   Introduces separate class for representing JWT headers.
   
   version 1.7 (2012-04-01)
   
   Introduces separate classes for plain, JWS and JWE headers.
   Introduces separate classes for plain, signed and encrypted JWTs.
   Removes the JWTContent class.
   Removes password-based (PE820) encryption support.
   
   version 1.8 (2012-04-03)
   
   Adds support for the ZIP JWE header parameter.
   Removes unsupported algorithms from the JWA enumeration.
   
   version 1.9 (2012-04-03)
   
   Renames JWEHeader.{get|set}EncryptionAlgorithm() to
   JWEHeader.{get|set}EncryptionMethod().
   
   version 1.9.1 (2012-04-03)
   
   Upgrades JSON Smart JAR to 1.1.1.
   
   version 1.10 (2012-04-14)
   
   Introduces serialize() method to base abstract JWT class.
   
   version 1.11 (2012-05-13)
   
   JWT.serialize() throws checked JWTException instead of
   
   
   
   ... (truncated)
   
   
   Commits
   
   https://bitbucket.org/connect2id/nimbus-jose-jwt/commits/6662912d3dfb075846b89b7d68beee8b2292ac41;>6662912
 Fixes JSONObjectUtils.parse with empty string input (iss https://bitbucket.org/connect2id/nimbus-jose-jwt/issues/492;>#492), 
updates JWSOb...
   https://bitbucket.org/connect2id/nimbus-jose-jwt/commits/176ecc1a4d1c6b647b43dc22a5922aac50e4fcb4;>176ecc1
 [maven-release-plugin] prepare release 9.25.4
   https://bitbucket.org/connect2id/nimbus-jose-jwt/commits/2026451dfad5e6d0abec06df68d26ec3df3f26b7;>2026451
 [maven-release-plugin] prepare for next development iteration
   https://bitbucket.org/connect2id/nimbus-jose-jwt/commits/896a6776e0af99eed72d82228fb7b049c978c3ec;>896a677
 The module-info.class from the shaded com.google.gson package must not be 
inc...
   https://bitbucket.org/connect2id/nimbus-jose-jwt/commits/349e0cc51819b55c0faf51ffea879d16b8d6a242;>349e0cc
 [maven-release-plugin] prepare release 9.25.5
   https://bitbucket.org/connect2id/nimbus-jose-jwt/commits/637d713447011c67c4c391d5885a8dce4574955f;>637d713
 [maven-release-plugin] prepare for next development iteration
   https://bitbucket.org/connect2id/nimbus-jose-jwt/commits/e22baf12db900a44b41706749695d052dbf35c9c;>e22baf1
 Addresses incomplete https://bitbucket.org/connect2id/nimbus-jose-jwt/issues/496;>#496 fix 
to remove module-info.class for the shaded com
   https://bitbucket.org/connect2id/nimbus-jose-jwt/commits/1845ff2c955165f7f1ef9ecf0b44348d5219fea7;>1845ff2
 [maven-release-plugin] prepare release 9.25.6
   https://bitbucket.org/connect2id/nimbus-jose-jwt/commits/64a34b7bad682c9698072594743d6cf2070b8b03;>64a34b7
 [maven-release-plugin] prepare for next development iteration
   https://bitbucket.org/connect2id/nimbus-jose-jwt/commits/61014553f5b3ab9bfe04608ce8d7a3592a0ffad5;>6101455
 Refactor reload parameter into a more finegrained mechanism
   Additional commits viewable in https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/9.28..9.9.3;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.nimbusds:nimbus-jose-jwt=maven=9.9.3=9.28)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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 

[GitHub] [directory-kerby] dependabot[bot] opened a new pull request, #128: Bump maven-compiler-plugin from 3.8.1 to 3.10.1

2023-01-20 Thread GitBox


dependabot[bot] opened a new pull request, #128:
URL: https://github.com/apache/directory-kerby/pull/128

   Bumps 
[maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 
3.8.1 to 3.10.1.
   
   Release notes
   Sourced from https://github.com/apache/maven-compiler-plugin/releases;>maven-compiler-plugin's
 releases.
   
   3.10.1
   
    New features and improvements
   
   https://issues.apache.org/jira/browse/MCOMPILER-426;>[MCOMPILER-426] 
- add flag to enable-preview java compiler feature (https://github-redirect.dependabot.com/apache/maven-compiler-plugin/issues/98;>#98)
 https://github.com/olamy;>@​olamy
   
    Bug Fixes
   
   https://issues.apache.org/jira/browse/MCOMPILER-346;>[MCOMPILER-346] 
- workaround to jdk bug: assertion error from javaxcompiler javax.tools API (https://github-redirect.dependabot.com/apache/maven-compiler-plugin/issues/97;>#97)
 https://github.com/olamy;>@​olamy
   https://issues.apache.org/jira/browse/MCOMPILER-485;>[MCOMPILER-485] 
- Fixes internal string format in generated package-info.class (https://github-redirect.dependabot.com/apache/maven-compiler-plugin/issues/95;>#95)
 https://github.com/dbwiddis;>@​dbwiddis
   
    Dependency updates
   
   Bump maven-javadoc-plugin from 3.3.1 to 3.3.2 (https://github-redirect.dependabot.com/apache/maven-compiler-plugin/issues/94;>#94)
 https://github.com/dependabot;>@​dependabot
   
   Other contributions
   
   thanks to https://github.com/basil;>@​basil 
for providing an IT test for the fix of https://issues.apache.org/jira/browse/MCOMPILER-346;>[MCOMPILER-346]
   
   3.10.0
   
    Removed
   
   https://issues.apache.org/jira/browse/MCOMPILER-484;>[MCOMPILER-484] 
- Remove deprecated mojos (https://github-redirect.dependabot.com/apache/maven-compiler-plugin/issues/87;>#87)
 https://github.com/gnodet;>@​gnodet
   
    New features and improvements
   
   https://issues.apache.org/jira/browse/MCOMPILER-205;>[MCOMPILER-205] 
- Add a boolean to generate missing package-info classes by default (https://github-redirect.dependabot.com/apache/maven-compiler-plugin/issues/88;>#88)
 https://github.com/gnodet;>@​gnodet
   https://issues.apache.org/jira/browse/MCOMPILER-474;>[MCOMPILER-474] 
- Also check jar files when determining if dependencies changed (https://github-redirect.dependabot.com/apache/maven-compiler-plugin/issues/73;>#73)
 https://github.com/Powerrr;>@​Powerrr
   
    Bug Fixes
   
   https://issues.apache.org/jira/browse/MCOMPILER-225;>[MCOMPILER-225] 
- javac.sh/javac.bat added to archive (https://github-redirect.dependabot.com/apache/maven-compiler-plugin/issues/91;>#91)
 https://github.com/olamy;>@​olamy
   https://issues.apache.org/jira/browse/MCOMPILER-481;>[MCOMPILER-481] 
- compiler plugin should include static module for compilation (https://github-redirect.dependabot.com/apache/maven-compiler-plugin/issues/82;>#82)
 https://github.com/olamy;>@​olamy
   https://issues.apache.org/jira/browse/MCOMPILER-470;>[MCOMPILER-470] 
-parameters doesn't work with --release
   https://issues.apache.org/jira/browse/MCOMPILER-460;>[MCOMPILER-460] 
- Compiler doesn't show detailed information with the Maven Toolchains
   
    Dependency updates
   
   use plexus-compiler 2.10.0 (https://github-redirect.dependabot.com/apache/maven-compiler-plugin/issues/92;>#92)
 https://github.com/olamy;>@​olamy
   Bump mockito-core from 4.2.0 to 4.3.1 (https://github-redirect.dependabot.com/apache/maven-compiler-plugin/issues/83;>#83)
 https://github.com/dependabot;>@​dependabot
   
    Documentation updates
   
   https://issues.apache.org/jira/browse/MCOMPILER-479;>[MCOMPILER-479] 
- Clarify compiler arguments Javadoc (https://github-redirect.dependabot.com/apache/maven-compiler-plugin/issues/90;>#90)
 https://github.com/hisener;>@​hisener
   (doc) Fix typo and follow xml block style used for other parameters (https://github-redirect.dependabot.com/apache/maven-compiler-plugin/issues/89;>#89)
 https://github.com/pzygielo;>@​pzygielo
   
    Build
   
   add more jdk for testing (https://github-redirect.dependabot.com/apache/maven-compiler-plugin/issues/93;>#93)
 https://github.com/olamy;>@​olamy
   
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/apache/maven-compiler-plugin/commit/4e08e2b9518fbbda7252236315b2ce03edcef505;>4e08e2b
 [maven-release-plugin] prepare release maven-compiler-plugin-3.10.1
   https://github.com/apache/maven-compiler-plugin/commit/6795b0f508343dbc64dba384b85af2f1f3684b7a;>6795b0f
 [MCOMPILER-426] add flag to enable-preview java compiler feature (https://github-redirect.dependabot.com/apache/maven-compiler-plugin/issues/98;>#98)
   https://github.com/apache/maven-compiler-plugin/commit/1de8c91fba76fc345dca64cea300839bef436cba;>1de8c91
 MCOMPILER 346 workaround to jdk bug: assertion error from javaxcompiler 
javax...
   https://github.com/apache/maven-compiler-plugin/commit/96ed94f5bcc0de6b6bd36816ce5caf3100dcd840;>96ed94f
 use shared release drafter
   

[GitHub] [directory-kerby] dependabot[bot] opened a new pull request, #127: Bump assertj-core from 3.23.1 to 3.24.2

2023-01-20 Thread GitBox


dependabot[bot] opened a new pull request, #127:
URL: https://github.com/apache/directory-kerby/pull/127

   Bumps assertj-core from 3.23.1 to 3.24.2.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.assertj:assertj-core=maven=3.23.1=3.24.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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 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)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers commented on pull request #213: Draft: Applying Patches to resources

2023-01-19 Thread GitBox


bdemers commented on PR #213:
URL: 
https://github.com/apache/directory-scimple/pull/213#issuecomment-1397720040

   @erant10 _if_ we can split it up that would be ideal... but, it's all 
related to getting the patch bits working, so I personally wouldn't loose any 
sleep over getting everything in a single branch.
   
   We could clean up the history a little before merging (but IMHO, that not 
required unless it makes the change set more readable)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] erant10 commented on pull request #213: Draft: Applying Patches to resources

2023-01-19 Thread GitBox


erant10 commented on PR #213:
URL: 
https://github.com/apache/directory-scimple/pull/213#issuecomment-1397557528

   > Related I created #233, (only the last commit is relevant) But it tries to 
abstract out some of the common filter logic to help folks map filters into 
other objects
   
   I like that change. do you think it makes sense to merge it as a separate 
PR, or rather include it in this one?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] coheigea merged pull request #124: Bump netty.version from 4.1.86.Final to 4.1.87.Final

2023-01-19 Thread GitBox


coheigea merged PR #124:
URL: https://github.com/apache/directory-kerby/pull/124


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] coheigea merged pull request #126: Bump maven-javadoc-plugin from 3.3.1 to 3.4.1

2023-01-19 Thread GitBox


coheigea merged PR #126:
URL: https://github.com/apache/directory-kerby/pull/126


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] coheigea merged pull request #123: Bump maven-checkstyle-plugin from 3.1.2 to 3.2.1

2023-01-19 Thread GitBox


coheigea merged PR #123:
URL: https://github.com/apache/directory-kerby/pull/123


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] coheigea merged pull request #122: Bump druid from 1.1.21 to 1.2.15

2023-01-19 Thread GitBox


coheigea merged PR #122:
URL: https://github.com/apache/directory-kerby/pull/122


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] dependabot[bot] opened a new pull request, #126: Bump maven-javadoc-plugin from 3.3.1 to 3.4.1

2023-01-19 Thread GitBox


dependabot[bot] opened a new pull request, #126:
URL: https://github.com/apache/directory-kerby/pull/126

   Bumps [maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) 
from 3.3.1 to 3.4.1.
   
   Release notes
   Sourced from https://github.com/apache/maven-javadoc-plugin/releases;>maven-javadoc-plugin's
 releases.
   
   3.4.1
   
   
   https://issues.apache.org/jira/browse/MJAVADOC-723;>[MJAVADOC-723] - 
Upgrade Maven Reporting API to 3.1.1/Complete with Maven Reporting Impl 3.2.0 
(https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/issues/158;>#158)
 https://github.com/pzygielo;>@​pzygielo
   Skip Java 9-14 in reproducible test (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/issues/155;>#155)
 https://github.com/jorsol;>@​jorsol
   Add Integration Test for reproducible builds (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/issues/152;>#152)
 https://github.com/jorsol;>@​jorsol
   https://issues.apache.org/jira/browse/MJAVADOC-719;>[MJAVADOC-719] - 
Update Maven Archiver to 3.6.0 (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/issues/150;>#150)
 https://github.com/jorsol;>@​jorsol
   
    Dependency updates
   
   Bump assertj-core from 3.21.0 to 3.23.1 (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/issues/143;>#143)
 https://github.com/dependabot;>@​dependabot
   Bump spring-webmvc from 4.3.29.RELEASE to 5.2.21.RELEASE in 
/src/it/projects/MJAVADOC-434_fixcompile (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/issues/135;>#135)
 https://github.com/dependabot;>@​dependabot
   Bump mockito-core from 4.1.0 to 4.4.0 (https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/issues/133;>#133)
 https://github.com/dependabot;>@​dependabot
   
   3.4.0
   What's Changed
   
   (doc) Update plugin' configuration parameter (MJAVADOC-475) by https://github.com/pzygielo;>@​pzygielo in https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/123;>apache/maven-javadoc-plugin#123
   (doc) Update plugin' configuration parameter (MJAVADOC-475) by https://github.com/pzygielo;>@​pzygielo in https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/124;>apache/maven-javadoc-plugin#124
   (doc) Fix spurious Javadoc https://github.com/param;>@​param tag by https://github.com/pzygielo;>@​pzygielo in https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/125;>apache/maven-javadoc-plugin#125
   use shared gh action/release-drafter by https://github.com/olamy;>@​olamy in https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/128;>apache/maven-javadoc-plugin#128
   Bump commons-io from 2.2 to 2.7 in /src/it/projects/MJAVADOC-437/module2 
by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/132;>apache/maven-javadoc-plugin#132
   Bump junit from 4.12 to 4.13.1 in 
/src/it/projects/MJAVADOC-498_modulepath by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/131;>apache/maven-javadoc-plugin#131
   Bump plexus-archiver from 4.2.6 to 4.2.7 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/118;>apache/maven-javadoc-plugin#118
   Bump maven-archiver from 3.5.1 to 3.5.2 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/117;>apache/maven-javadoc-plugin#117
   [MJAVADOC-714] Upgrade to Maven 3.2.5 by https://github.com/michael-o;>@​michael-o in https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/134;>apache/maven-javadoc-plugin#134
   
   Full Changelog: https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.3.2...maven-javadoc-plugin-3.4.0;>https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.3.2...maven-javadoc-plugin-3.4.0
   3.3.2
   What's Changed
   
   [MJAVADOC-530] - Clean up additionalparam documentation by https://github.com/marschall;>@​marschall in https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/6;>apache/maven-javadoc-plugin#6
   [MJAVADOC-538] Filter out 'Picked up' by https://github.com/risdenk;>@​risdenk in https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/11;>apache/maven-javadoc-plugin#11
   [MJAVADOC-546] Allow to generate report in Spanish locale by https://github.com/belingueres;>@​belingueres in https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/12;>apache/maven-javadoc-plugin#12
   [MJAVADOC-537] Explicitly the batchMode to true by https://github.com/joshiste;>@​joshiste in https://github-redirect.dependabot.com/apache/maven-javadoc-plugin/pull/7;>apache/maven-javadoc-plugin#7
   fix mailing list url in README by https://github.com/rgdoliveira;>@​rgdoliveira in 

[GitHub] [directory-kerby] dependabot[bot] opened a new pull request, #125: Bump slf4j.version from 1.7.36 to 2.0.6

2023-01-19 Thread GitBox


dependabot[bot] opened a new pull request, #125:
URL: https://github.com/apache/directory-kerby/pull/125

   Bumps `slf4j.version` from 1.7.36 to 2.0.6.
   Updates `slf4j-api` from 1.7.36 to 2.0.6
   
   Commits
   
   https://github.com/qos-ch/slf4j/commit/5ff6f2c385c36ea4f8b85cacd69f7ca891c37818;>5ff6f2c
 prepare for release 2.0.6
   https://github.com/qos-ch/slf4j/commit/2f4aa754451167e2fef98a07f2e1260cdb08b332;>2f4aa75
 fix SLF4J-575
   https://github.com/qos-ch/slf4j/commit/363f0a534ea736bb02ced129f3ae27720f95c13f;>363f0a5
 remove unused parts
   https://github.com/qos-ch/slf4j/commit/171679baa87e13cfb8ca471242da6fd0d3acbe53;>171679b
 SLF4J-574: Add full OSGi headers, especially uses clauses
   https://github.com/qos-ch/slf4j/commit/921b5b31e179d625d349debf15210ed067a5a153;>921b5b3
 fix FUNDING file
   https://github.com/qos-ch/slf4j/commit/e02244c39f11cdcdb07d6b291f157e3687d5b920;>e02244c
 fix FUNDING file
   https://github.com/qos-ch/slf4j/commit/441d4584bed16ec8fe54a9c4acb8d289e51005b8;>441d458
 fix FUNDING file
   https://github.com/qos-ch/slf4j/commit/f5e741ba1af6565269499d34c725c32ef8ca467f;>f5e741b
 add FUNDING file
   https://github.com/qos-ch/slf4j/commit/2e71327c8ee745927d731e8d9f4e51d331dad138;>2e71327
 remove unused log4j dependency in the version definition section of 
pom.xml
   https://github.com/qos-ch/slf4j/commit/3ff2a30e05e5825d96ddb54da243df48f1a9d897;>3ff2a30
 start work on 2.0.6-SNAPSHOT
   Additional commits viewable in https://github.com/qos-ch/slf4j/compare/v_1.7.36...v_2.0.6;>compare 
view
   
   
   
   
   Updates `slf4j-simple` from 1.7.36 to 2.0.6
   
   Commits
   
   https://github.com/qos-ch/slf4j/commit/5ff6f2c385c36ea4f8b85cacd69f7ca891c37818;>5ff6f2c
 prepare for release 2.0.6
   https://github.com/qos-ch/slf4j/commit/2f4aa754451167e2fef98a07f2e1260cdb08b332;>2f4aa75
 fix SLF4J-575
   https://github.com/qos-ch/slf4j/commit/363f0a534ea736bb02ced129f3ae27720f95c13f;>363f0a5
 remove unused parts
   https://github.com/qos-ch/slf4j/commit/171679baa87e13cfb8ca471242da6fd0d3acbe53;>171679b
 SLF4J-574: Add full OSGi headers, especially uses clauses
   https://github.com/qos-ch/slf4j/commit/921b5b31e179d625d349debf15210ed067a5a153;>921b5b3
 fix FUNDING file
   https://github.com/qos-ch/slf4j/commit/e02244c39f11cdcdb07d6b291f157e3687d5b920;>e02244c
 fix FUNDING file
   https://github.com/qos-ch/slf4j/commit/441d4584bed16ec8fe54a9c4acb8d289e51005b8;>441d458
 fix FUNDING file
   https://github.com/qos-ch/slf4j/commit/f5e741ba1af6565269499d34c725c32ef8ca467f;>f5e741b
 add FUNDING file
   https://github.com/qos-ch/slf4j/commit/2e71327c8ee745927d731e8d9f4e51d331dad138;>2e71327
 remove unused log4j dependency in the version definition section of 
pom.xml
   https://github.com/qos-ch/slf4j/commit/3ff2a30e05e5825d96ddb54da243df48f1a9d897;>3ff2a30
 start work on 2.0.6-SNAPSHOT
   Additional commits viewable in https://github.com/qos-ch/slf4j/compare/v_1.7.36...v_2.0.6;>compare 
view
   
   
   
   
   Updates `slf4j-reload4j` from 1.7.36 to 2.0.6
   
   Commits
   
   https://github.com/qos-ch/slf4j/commit/5ff6f2c385c36ea4f8b85cacd69f7ca891c37818;>5ff6f2c
 prepare for release 2.0.6
   https://github.com/qos-ch/slf4j/commit/2f4aa754451167e2fef98a07f2e1260cdb08b332;>2f4aa75
 fix SLF4J-575
   https://github.com/qos-ch/slf4j/commit/363f0a534ea736bb02ced129f3ae27720f95c13f;>363f0a5
 remove unused parts
   https://github.com/qos-ch/slf4j/commit/171679baa87e13cfb8ca471242da6fd0d3acbe53;>171679b
 SLF4J-574: Add full OSGi headers, especially uses clauses
   https://github.com/qos-ch/slf4j/commit/921b5b31e179d625d349debf15210ed067a5a153;>921b5b3
 fix FUNDING file
   https://github.com/qos-ch/slf4j/commit/e02244c39f11cdcdb07d6b291f157e3687d5b920;>e02244c
 fix FUNDING file
   https://github.com/qos-ch/slf4j/commit/441d4584bed16ec8fe54a9c4acb8d289e51005b8;>441d458
 fix FUNDING file
   https://github.com/qos-ch/slf4j/commit/f5e741ba1af6565269499d34c725c32ef8ca467f;>f5e741b
 add FUNDING file
   https://github.com/qos-ch/slf4j/commit/2e71327c8ee745927d731e8d9f4e51d331dad138;>2e71327
 remove unused log4j dependency in the version definition section of 
pom.xml
   https://github.com/qos-ch/slf4j/commit/3ff2a30e05e5825d96ddb54da243df48f1a9d897;>3ff2a30
 start work on 2.0.6-SNAPSHOT
   Additional commits viewable in https://github.com/qos-ch/slf4j/compare/v_1.7.36...v_2.0.6;>compare 
view
   
   
   
   
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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
   - 

[GitHub] [directory-kerby] dependabot[bot] opened a new pull request, #124: Bump netty.version from 4.1.86.Final to 4.1.87.Final

2023-01-19 Thread GitBox


dependabot[bot] opened a new pull request, #124:
URL: https://github.com/apache/directory-kerby/pull/124

   Bumps `netty.version` from 4.1.86.Final to 4.1.87.Final.
   Updates `netty-transport` from 4.1.86.Final to 4.1.87.Final
   
   Commits
   
   https://github.com/netty/netty/commit/53fa91f6f644f24bcd085fbeb64bfec01e8fb61e;>53fa91f
 [maven-release-plugin] prepare release netty-4.1.87.Final
   https://github.com/netty/netty/commit/0097c2b72521c422d42bf8c45273db05a7ff068c;>0097c2b
 Upgrade to latest netty-tcnative release which doesnt link libcrypt (https://github-redirect.dependabot.com/netty/netty/issues/13112;>#13112)
   https://github.com/netty/netty/commit/b9a2e961a6ff2887ab6057d1eaf0d668d0e43ddf;>b9a2e96
 Use defined osmaven version everywhere (https://github-redirect.dependabot.com/netty/netty/issues/13111;>#13111)
   https://github.com/netty/netty/commit/ba78f17b2b2fffd33f09c06f0af1c199e5a00d3a;>ba78f17
 Fix NPE caused by old bundle plugin version (https://github-redirect.dependabot.com/netty/netty/issues/13106;>#13106)
   https://github.com/netty/netty/commit/05153ac9ff98f45b5dafe679ce8e2cce56803615;>05153ac
 Bump up os-maven-plugin to 1.7.1 (https://github-redirect.dependabot.com/netty/netty/issues/13107;>#13107)
   https://github.com/netty/netty/commit/e19860a3f626b07bfbc9dadb682072c685bf0688;>e19860a
 Create thread dumps for all running JVMs when the build gets cancelled (https://github-redirect.dependabot.com/netty/netty/issues/13100;>#13100)
   https://github.com/netty/netty/commit/d03f3ed0157e857ebb0bb28d0ddb5439dc181b61;>d03f3ed
 Add recvmmsg  sendmmsg syscall number for loongarch64 (https://github-redirect.dependabot.com/netty/netty/issues/13097;>#13097)
   https://github.com/netty/netty/commit/e530cd610d17cdaaca7f3adf5e7c8d224571e89c;>e530cd6
 Return correct value from SSLSession.getPacketSize() when using native SSL 
im...
   https://github.com/netty/netty/commit/fdfbb0441d49f16068903fa85b623790cce889ff;>fdfbb04
 Remove Redundant bitwise operations (https://github-redirect.dependabot.com/netty/netty/issues/13094;>#13094)
   https://github.com/netty/netty/commit/f027fa2df77af7719aa9686659633ee0fc73ebf9;>f027fa2
 Upgrade to latest version of JMH (https://github-redirect.dependabot.com/netty/netty/issues/13080;>#13080)
   Additional commits viewable in https://github.com/netty/netty/compare/netty-4.1.86.Final...netty-4.1.87.Final;>compare
 view
   
   
   
   
   Updates `netty-handler` from 4.1.86.Final to 4.1.87.Final
   
   Commits
   
   https://github.com/netty/netty/commit/53fa91f6f644f24bcd085fbeb64bfec01e8fb61e;>53fa91f
 [maven-release-plugin] prepare release netty-4.1.87.Final
   https://github.com/netty/netty/commit/0097c2b72521c422d42bf8c45273db05a7ff068c;>0097c2b
 Upgrade to latest netty-tcnative release which doesnt link libcrypt (https://github-redirect.dependabot.com/netty/netty/issues/13112;>#13112)
   https://github.com/netty/netty/commit/b9a2e961a6ff2887ab6057d1eaf0d668d0e43ddf;>b9a2e96
 Use defined osmaven version everywhere (https://github-redirect.dependabot.com/netty/netty/issues/13111;>#13111)
   https://github.com/netty/netty/commit/ba78f17b2b2fffd33f09c06f0af1c199e5a00d3a;>ba78f17
 Fix NPE caused by old bundle plugin version (https://github-redirect.dependabot.com/netty/netty/issues/13106;>#13106)
   https://github.com/netty/netty/commit/05153ac9ff98f45b5dafe679ce8e2cce56803615;>05153ac
 Bump up os-maven-plugin to 1.7.1 (https://github-redirect.dependabot.com/netty/netty/issues/13107;>#13107)
   https://github.com/netty/netty/commit/e19860a3f626b07bfbc9dadb682072c685bf0688;>e19860a
 Create thread dumps for all running JVMs when the build gets cancelled (https://github-redirect.dependabot.com/netty/netty/issues/13100;>#13100)
   https://github.com/netty/netty/commit/d03f3ed0157e857ebb0bb28d0ddb5439dc181b61;>d03f3ed
 Add recvmmsg  sendmmsg syscall number for loongarch64 (https://github-redirect.dependabot.com/netty/netty/issues/13097;>#13097)
   https://github.com/netty/netty/commit/e530cd610d17cdaaca7f3adf5e7c8d224571e89c;>e530cd6
 Return correct value from SSLSession.getPacketSize() when using native SSL 
im...
   https://github.com/netty/netty/commit/fdfbb0441d49f16068903fa85b623790cce889ff;>fdfbb04
 Remove Redundant bitwise operations (https://github-redirect.dependabot.com/netty/netty/issues/13094;>#13094)
   https://github.com/netty/netty/commit/f027fa2df77af7719aa9686659633ee0fc73ebf9;>f027fa2
 Upgrade to latest version of JMH (https://github-redirect.dependabot.com/netty/netty/issues/13080;>#13080)
   Additional commits viewable in https://github.com/netty/netty/compare/netty-4.1.86.Final...netty-4.1.87.Final;>compare
 view
   
   
   
   
   Updates `netty-common` from 4.1.86.Final to 4.1.87.Final
   
   Commits
   
   https://github.com/netty/netty/commit/53fa91f6f644f24bcd085fbeb64bfec01e8fb61e;>53fa91f
 [maven-release-plugin] prepare release netty-4.1.87.Final
   https://github.com/netty/netty/commit/0097c2b72521c422d42bf8c45273db05a7ff068c;>0097c2b
 

[GitHub] [directory-kerby] dependabot[bot] opened a new pull request, #122: Bump druid from 1.1.21 to 1.2.15

2023-01-19 Thread GitBox


dependabot[bot] opened a new pull request, #122:
URL: https://github.com/apache/directory-kerby/pull/122

   Bumps [druid](https://github.com/alibaba/druid) from 1.1.21 to 1.2.15.
   
   Release notes
   Sourced from https://github.com/alibaba/druid/releases;>druid's releases.
   
   druid 1.2.14发布,例行BUG修复
   这又是一个BUG修复功能增强的小版本,按需升级
   Issues
   
   修复OceanBase validateQuery问题 https://github-redirect.dependabot.com/alibaba/druid/issues/4967;>#4967
 https://github-redirect.dependabot.com/alibaba/druid/issues/4966;>#4966
   SQL Parser增强对MaxCompute的支持,支持Qualify子句
   SQL Parser增强对MySQL的支持 https://github-redirect.dependabot.com/alibaba/druid/issues/4956;>#4956
 https://github-redirect.dependabot.com/alibaba/druid/issues/4968;>#4968
   SQL Wall支持Refresh MaterializedView https://github-redirect.dependabot.com/alibaba/druid/issues/4962;>#4962
   升级fastjson版本到2.0.16 https://github-redirect.dependabot.com/alibaba/druid/issues/4965;>#4965
   SQLASTOutputVisitor提供pringWhere和printHaving方法
   
   相关连接
   
   druid下载 https://repo1.maven.org/maven2/com/alibaba/druid/1.2.14/;>https://repo1.maven.org/maven2/com/alibaba/druid/1.2.14/
   druid-spring-booter下载 https://repo1.maven.org/maven2/com/alibaba/druid-spring-boot-starter/1.2.14/;>https://repo1.maven.org/maven2/com/alibaba/druid-spring-boot-starter/1.2.14/
   文档 https://github.com/alibaba/druid/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98;>https://github.com/alibaba/druid/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98
   源码 https://github.com/alibaba/druid/tree/1.2.14;>https://github.com/alibaba/druid/tree/1.2.14
   内置监控演示 http://120.26.192.168/druid/;>http://120.26.192.168/druid/
   
   Druid 1.2.13版本发布,修复连接池默认指定socketTimeout导致的问题
   这又是一个BUG修复功能增强的版本
   Issues
   
   修复1.2.12版本引入socketTimeout导致的BUG https://github-redirect.dependabot.com/alibaba/druid/issues/4936;>#4936
 https://github-redirect.dependabot.com/alibaba/druid/issues/4946;>#4946
   增强SQL Parser对MaxCompute的支持 https://github-redirect.dependabot.com/alibaba/druid/issues/4933;>#4933
   增强SQL Parser对Oracle的支持 https://github-redirect.dependabot.com/alibaba/druid/issues/4938;>#4938
   增强SQL Parser对Postgresql的支持 https://github-redirect.dependabot.com/alibaba/druid/issues/4931;>#4931
   
   相关连接
   
   druid下载 https://repo1.maven.org/maven2/com/alibaba/druid/1.2.13/;>https://repo1.maven.org/maven2/com/alibaba/druid/1.2.13/
   druid-spring-booter下载 https://repo1.maven.org/maven2/com/alibaba/druid-spring-boot-starter/1.2.13/;>https://repo1.maven.org/maven2/com/alibaba/druid-spring-boot-starter/1.2.13/
   文档 https://github.com/alibaba/druid/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98;>https://github.com/alibaba/druid/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98
   源码 https://github.com/alibaba/druid/tree/1.2.13;>https://github.com/alibaba/druid/tree/1.2.13
   内置监控演示 http://120.26.192.168/druid/;>http://120.26.192.168/druid/
   
   Druid 1.2.12版本发布,连接池默认指定socketTimeout,增强SQL Parser
   这个版本连接池默认增加配置connectTimeout和socketTimeout,增强了SQL Parser
   Issues
   
   
连接池DruidDataSource支持新的配置connectTimeout和socketTimeout,分别都是10秒。这个默认值会减少因为网络丢包时导致的连接池无法创建链接。
   修复连接池DruidDataSource#handleFatalError方法判断是否关闭逻辑不对的问题 https://github-redirect.dependabot.com/alibaba/druid/issues/4724;>#4724
   修复StatFilter统计Statement执行SQL只记录第一条SQL的问题 https://github-redirect.dependabot.com/alibaba/druid/issues/4921;>#4921
   修复ParameterizedOutputVisitorUtils#restore结果不对的问题 https://github-redirect.dependabot.com/alibaba/druid/issues/4532;>#4532
   SQL Parser增强对PolarDB-X的支持 https://github-redirect.dependabot.com/alibaba/druid/issues/4927;>#4927
   SQL Parser增强对Oceanbase的支持 https://github-redirect.dependabot.com/alibaba/druid/issues/4833;>#4833
   SQL Parser增强对MySQL的支持 https://github-redirect.dependabot.com/alibaba/druid/issues/4916;>#4916
 https://github-redirect.dependabot.com/alibaba/druid/issues/4817;>#4817
 https://github-redirect.dependabot.com/alibaba/druid/issues/4825;>#4825
   SQL Parser增强对Clickhouse的支持 https://github-redirect.dependabot.com/alibaba/druid/issues/4833;>#4833
 https://github-redirect.dependabot.com/alibaba/druid/issues/4881;>#4881
   SQL Parser增强对DB2的支持 https://github-redirect.dependabot.com/alibaba/druid/issues/4838;>#4838
   SQL Parser增强对Oracle的支持
   
   相关连接
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/alibaba/druid/commit/4ccecebe8da73df3ae22124fc5add3015fd1a8f1;>4cceceb
 2.0.15 release
   https://github.com/alibaba/druid/commit/962e16534e6de16fa6102241512fdd339daf28e4;>962e165
 improved sql parser
   https://github.com/alibaba/druid/commit/5473b2665df3c95e42c622364865672a4b62d5f2;>5473b26
 fix testcase
   https://github.com/alibaba/druid/commit/6600f3b3a31d32690430a8c10dc0cd4ec05347b2;>6600f3b
 splitAndRemoveComment support multi-line comment
   https://github.com/alibaba/druid/commit/cf1cdc4b233eb048fa8584395b9e22b6657f;>cf1cdc4
 fix SQLColumnDefinition#getParent() is null, for issue https://github-redirect.dependabot.com/alibaba/druid/issues/4492;>#4492
   

[GitHub] [directory-kerby] dependabot[bot] opened a new pull request, #123: Bump maven-checkstyle-plugin from 3.1.2 to 3.2.1

2023-01-19 Thread GitBox


dependabot[bot] opened a new pull request, #123:
URL: https://github.com/apache/directory-kerby/pull/123

   Bumps 
[maven-checkstyle-plugin](https://github.com/apache/maven-checkstyle-plugin) 
from 3.1.2 to 3.2.1.
   
   Commits
   
   https://github.com/apache/maven-checkstyle-plugin/commit/9f6a75976c0b4b7f5d929de92ba02577f94005cf;>9f6a759
 [maven-release-plugin] prepare release maven-checkstyle-plugin-3.2.1
   https://github.com/apache/maven-checkstyle-plugin/commit/932c8bcd8953e3634cf8b409e276575c0ad60d3a;>932c8bc
 [MCHECKSTYLE-423] Explicitly start and end tables with Doxia Sinks in report 
...
   https://github.com/apache/maven-checkstyle-plugin/commit/746a137e5fcf7d68fa7f98c98cfa6f33a7d64e6b;>746a137
 update Reproducible Builds badge link
   https://github.com/apache/maven-checkstyle-plugin/commit/b07adb2e51d6b016dd564893685f46b33fffe5db;>b07adb2
 [maven-release-plugin] prepare for next development iteration
   https://github.com/apache/maven-checkstyle-plugin/commit/1aaf7cb4198f3076c01309065b1d7e92213e6e1b;>1aaf7cb
 [maven-release-plugin] prepare release maven-checkstyle-plugin-3.2.0
   https://github.com/apache/maven-checkstyle-plugin/commit/627fa4f684866a579f2c105fcc1dbf3ed776daa8;>627fa4f
 [MCHECKSTYLE-417] Upgrade Maven Reporting API to 3.1.1/Maven Reporting Impl 
t...
   https://github.com/apache/maven-checkstyle-plugin/commit/cbf3751a152d542715cf2b2219ab1de0850b2730;>cbf3751
 [MCHECKSTYLE-418] Deprecate RSS feature and disable by default
   https://github.com/apache/maven-checkstyle-plugin/commit/549bf3d58a1608dedb0054fd9418efc3fcfffc33;>549bf3d
 [MCHECKSTYLE-419] Upgrade Parent to 37 and cleanup
   https://github.com/apache/maven-checkstyle-plugin/commit/171827b256a62e83e662d5e691b5f31e2b41dd00;>171827b
 Bump animal-sniffer-maven-plugin from 1.21 to 1.22
   https://github.com/apache/maven-checkstyle-plugin/commit/a58c6379db1b86af342af5a179403e1bcc333a6b;>a58c637
 Bump extra-enforcer-rules from 1.5.1 to 1.6.1
   Additional commits viewable in https://github.com/apache/maven-checkstyle-plugin/compare/maven-checkstyle-plugin-3.1.2...maven-checkstyle-plugin-3.2.1;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-checkstyle-plugin=maven=3.1.2=3.2.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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 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)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] coheigea merged pull request #121: DIRKRB-747 - Date encoding is buggy with JDK 15 and non-Arabic (Weste…

2023-01-19 Thread GitBox


coheigea merged PR #121:
URL: https://github.com/apache/directory-kerby/pull/121


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] coheigea opened a new pull request, #121: DIRKRB-747 - Date encoding is buggy with JDK 15 and non-Arabic (Weste…

2023-01-18 Thread GitBox


coheigea opened a new pull request, #121:
URL: https://github.com/apache/directory-kerby/pull/121

   …rn) numerals


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] coheigea merged pull request #120: Bump ldap.api.version from 2.0.2 to 2.1.2

2023-01-18 Thread GitBox


coheigea merged PR #120:
URL: https://github.com/apache/directory-kerby/pull/120


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] coheigea merged pull request #119: Bump exec-maven-plugin from 3.0.0 to 3.1.0

2023-01-18 Thread GitBox


coheigea merged PR #119:
URL: https://github.com/apache/directory-kerby/pull/119


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] dependabot[bot] commented on pull request #118: Bump maven-pmd-plugin from 3.15.0 to 3.20.0

2023-01-18 Thread GitBox


dependabot[bot] commented on PR #118:
URL: https://github.com/apache/directory-kerby/pull/118#issuecomment-1396461911

   OK, I won't notify you about org.apache.maven.plugins:maven-pmd-plugin 
again, unless you re-open this PR. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] dependabot[bot] closed pull request #118: Bump maven-pmd-plugin from 3.15.0 to 3.20.0

2023-01-18 Thread GitBox


dependabot[bot] closed pull request #118: Bump maven-pmd-plugin from 3.15.0 to 
3.20.0
URL: https://github.com/apache/directory-kerby/pull/118


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] coheigea commented on pull request #118: Bump maven-pmd-plugin from 3.15.0 to 3.20.0

2023-01-18 Thread GitBox


coheigea commented on PR #118:
URL: https://github.com/apache/directory-kerby/pull/118#issuecomment-1396461882

   @dependabot ignore this dependency


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] coheigea merged pull request #117: Bump maven-shade-plugin from 3.2.4 to 3.4.1

2023-01-18 Thread GitBox


coheigea merged PR #117:
URL: https://github.com/apache/directory-kerby/pull/117


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] coheigea merged pull request #116: Bump gson from 2.8.9 to 2.10.1

2023-01-18 Thread GitBox


coheigea merged PR #116:
URL: https://github.com/apache/directory-kerby/pull/116


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] dependabot[bot] opened a new pull request, #120: Bump ldap.api.version from 2.0.2 to 2.1.2

2023-01-18 Thread GitBox


dependabot[bot] opened a new pull request, #120:
URL: https://github.com/apache/directory-kerby/pull/120

   Bumps `ldap.api.version` from 2.0.2 to 2.1.2.
   Updates `api-ldap-client-api` from 2.0.2 to 2.1.2
   
   Updates `api-util` from 2.0.2 to 2.1.2
   
   Commits
   
   https://github.com/apache/directory-ldap-api/commit/b6a137dcfdc0495776cf7f5904556d88dcc14880;>b6a137d
 [maven-release-plugin] prepare release 2.1.2
   https://github.com/apache/directory-ldap-api/commit/fb3bcf05c86e6c31de0413688c0a4c53534fb43c;>fb3bcf0
 Removed useless imports
   https://github.com/apache/directory-ldap-api/commit/85b3367233e7b84afb098dc4e48799ead42eecb6;>85b3367
 Removed useless imports
   https://github.com/apache/directory-ldap-api/commit/caee3ee31d410fc74d20152072b560b9a6c4e968;>caee3ee
 Added the JDK8 compilation profile
   https://github.com/apache/directory-ldap-api/commit/6ca4b0949ebd31f540c2e2e3cfe4178c0298b9f0;>6ca4b09
 [maven-release-plugin] prepare for next development iteration
   https://github.com/apache/directory-ldap-api/commit/df7b3b60779c74e9494a18773a449f201b98f776;>df7b3b6
 [maven-release-plugin] prepare release 2.1.1
   https://github.com/apache/directory-ldap-api/commit/2c406e57f3a2ac79eaaceddd1983e670e935f486;>2c406e5
 Prepared for a release: switch to non-snapshot dependencies
   https://github.com/apache/directory-ldap-api/commit/927677c1029b6a95e68ab6caed4d2dd62a8b6e3e;>927677c
 Bumped up some dependencies
   https://github.com/apache/directory-ldap-api/commit/8ccc87d1bdb1822e21f77137739cbe305d9f5da6;>8ccc87d
 Added a missing OSGi import
   https://github.com/apache/directory-ldap-api/commit/d04c62dcc44948f76e868aac662590cf5cfc61d8;>d04c62d
 Added the commons.text OSGi import
   Additional commits viewable in https://github.com/apache/directory-ldap-api/compare/2.0.2...2.1.2;>compare
 view
   
   
   
   
   Updates `api-ldap-model` from 2.0.2 to 2.1.2
   
   Updates `api-ldap-codec-standalone` from 2.0.2 to 2.1.2
   
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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 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)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] dependabot[bot] opened a new pull request, #119: Bump exec-maven-plugin from 3.0.0 to 3.1.0

2023-01-18 Thread GitBox


dependabot[bot] opened a new pull request, #119:
URL: https://github.com/apache/directory-kerby/pull/119

   Bumps [exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin) 
from 3.0.0 to 3.1.0.
   
   Release notes
   Sourced from https://github.com/mojohaus/exec-maven-plugin/releases;>exec-maven-plugin's
 releases.
   
   3.1.0
   
    New features and improvements
   
   Require Maven 3.2.5 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/319;>#319)
 https://github.com/slawekjaranowski;>@​slawekjaranowski
   Support stream inheritance for the forked process, fixes https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/71;>#71
 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/196;>#196)
 https://github.com/gnodet;>@​gnodet
   
    Bug Fixes
   
   Fix NullPointerException when using plugin dependencies in version 1.6.0 
(https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/77;>#77)
 https://github.com/jonasrutishauser;>@​jonasrutishauser
   preload common pool - issue https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/198;>#198
 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/279;>#279)
 https://github.com/rmannibucau;>@​rmannibucau
   fix handling of LongModulePathArgument and LongClassPathArgument (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/172;>#172)
 https://github.com/jan-feindt;>@​jan-feindt
   Do not drop environment variables that contain '=' in their value, or 
have no value.  (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/97;>#97)
 https://github.com/AlanUnderwood;>@​AlanUnderwood
   Empty argument tag should add empty string instead of null (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/150;>#150)
 https://github.com/Anders-E;>@​Anders-E
   Fixes https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/160;>#160,
 ensure the java classloader is a child first one and supports to excludes some 
gathered classpath element to solve manually conflicts (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/161;>#161)
 https://github.com/rmannibucau;>@​rmannibucau
   
    Dependency updates
   
   Bump commons-io from 1.1 to 2.7 in /src/it/projects/project6/project5lib 
(https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/320;>#320)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in 
/src/it/projects/java_module-mainclass (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/313;>#313)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in /src/it/projects/longModulepath 
with spaces (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/312;>#312)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in 
/src/it/projects/java_module-module+mainclass (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/311;>#311)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in /src/it/projects/jigsaw (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/310;>#310)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in /src/it/mrm/java_module (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/309;>#309)
 https://github.com/dependabot;>@​dependabot
   Bump mojo-parent from 68 to 69 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/314;>#314)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in 
/src/it/projects/java_module-export (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/308;>#308)
 https://github.com/dependabot;>@​dependabot
   Bump mrm-maven-plugin from 1.3.0 to 1.4.1 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/307;>#307)
 https://github.com/dependabot;>@​dependabot
   Bump mojo-parent from 67 to 68 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/305;>#305)
 https://github.com/dependabot;>@​dependabot
   Bump groovy from 3.0.10 to 3.0.11 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/302;>#302)
 https://github.com/dependabot;>@​dependabot
   Bump maven-invoker-plugin from 3.2.2 to 3.3.0 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/301;>#301)
 https://github.com/dependabot;>@​dependabot
   Bump mockito-core from 4.5.1 to 4.6.1 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/303;>#303)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 3.4.1 to 3.4.2 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/299;>#299)
 https://github.com/dependabot;>@​dependabot
   Bump release-drafter/release-drafter 

[GitHub] [directory-kerby] dependabot[bot] opened a new pull request, #118: Bump maven-pmd-plugin from 3.15.0 to 3.20.0

2023-01-18 Thread GitBox


dependabot[bot] opened a new pull request, #118:
URL: https://github.com/apache/directory-kerby/pull/118

   Bumps [maven-pmd-plugin](https://github.com/apache/maven-pmd-plugin) from 
3.15.0 to 3.20.0.
   
   Release notes
   Sourced from https://github.com/apache/maven-pmd-plugin/releases;>maven-pmd-plugin's 
releases.
   
   3.20.0
    Bug Fixes
   
   https://issues.apache.org/jira/browse/MPMD-335;>MPMD-335 - 
Aggregate mode doesn't use additional repositories (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/pull/101;>#101)
 https://github.com/adangel;>@​adangel
   
    Maintenance
   
   https://issues.apache.org/jira/browse/MPMD-361;>MPMD-361 - 
Explicitly start and end tables with Doxia Sinks in report renderers
   
    Dependency updates
   
   https://issues.apache.org/jira/browse/MPMD-360;>MPMD-360 - 
Upgrade to PMD 6.53.0 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/pull/109;>#109)
 https://github.com/adangel;>@​adangel
   https://issues.apache.org/jira/browse/MPMD-358;>MPMD-358 - 
Upgrade to PMD 6.52.0 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/pull/104;>#104)
 https://github.com/adangel;>@​adangel
   https://issues.apache.org/jira/browse/MPMD-357;>MPMD-357 - 
Upgrade to PMD 6.51.0 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/pull/100;>#100)
 https://github.com/adangel;>@​adangel
   Bump release-drafter/release-drafter from 5.21.0 to 5.21.1 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/pull/99;>#99)
 https://github.com/dependabot;>@​dependabot
   https://issues.apache.org/jira/browse/MPMD-356;>MPMD-356 - 
Upgrade to PMD 6.50.0 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/pull/98;>#98)
 https://github.com/adangel;>@​adangel
   Bump maven-common-artifact-filters from 3.3.1 to 3.3.2 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/pull/95;>#95)
 https://github.com/dependabot;>@​dependabot
   Bump release-drafter/release-drafter from 5.20.1 to 5.21.0 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/pull/93;>#93)
 https://github.com/dependabot;>@​dependabot
   
   3.19.0
   
    Bug Fixes
   
   https://issues.apache.org/jira/browse/MPMD-353;>[MPMD-353] 
- API incompatibility with jansi after upgrading m-shared-… (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/issues/91;>#91)
 https://github.com/adangel;>@​adangel
   
    Dependency updates
   
   Bump animal-sniffer-maven-plugin from 1.21 to 1.22 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/issues/88;>#88)
 https://github.com/dependabot;>@​dependabot
   Bump wiremock from 1.49 to 2.27.2 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/issues/57;>#57)
 https://github.com/dependabot;>@​dependabot
   https://issues.apache.org/jira/browse/MPMD-354;>[MPMD-354] 
- Upgrade to PMD 6.49.0 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/issues/92;>#92)
 https://github.com/adangel;>@​adangel
   Bump release-drafter/release-drafter from 5.20.0 to 5.20.1 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/issues/86;>#86)
 https://github.com/dependabot;>@​dependabot
   
   3.18.0
    New features and improvements
   
   https://issues.apache.org/jira/browse/MPMD-348;>MPMD-348 - 
Support Java 19 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/issues/82;>#82)
 https://github.com/adangel;>@​adangel
   
    Bug Fixes
   
   [SECURITY] Fix Partial Path Traversal Vulnerability (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/issues/80;>#80)
 https://github.com/JLLeitschuh;>@​JLLeitschuh
   
    Dependency updates
   
   https://issues.apache.org/jira/browse/MPMD-352;>MPMD-352 - 
Upgrade Maven Common Artifact Filters to 3.3.1
   https://issues.apache.org/jira/browse/MPMD-351;>MPMD-351 - 
Upgrade Maven Artifact Transfer to 0.13.1
   https://issues.apache.org/jira/browse/MPMD-350;>MPMD-350 - 
Upgrade Maven Shared Utils to 3.3.4
   https://issues.apache.org/jira/browse/MPMD-349;>MPMD-349 - 
Upgrade Maven Reporting API to 3.1.1/Maven Reporting Impl to 3.2.0 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/issues/84;>#84)
 https://github.com/michael-o;>@​michael-o
   https://issues.apache.org/jira/browse/MPMD-347;>MPMD-347 - 
Upgrade to PMD 6.48.0 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/issues/81;>#81)
 https://github.com/adangel;>@​adangel
   Bump maven-plugins from 36 to 37 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/issues/79;>#79)
 https://github.com/dependabot;>@​dependabot
   https://issues.apache.org/jira/browse/MPMD-345;>MPMD-345 - 
Upgrade to PMD 6.47.0 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/issues/73;>#73)
 https://github.com/adangel;>@​adangel
   Bump commons-lang3 from 3.8.1 to 3.12.0 (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/issues/72;>#72)
 https://github.com/dependabot;>@​dependabot
   Bump 

[GitHub] [directory-kerby] dependabot[bot] opened a new pull request, #117: Bump maven-shade-plugin from 3.2.4 to 3.4.1

2023-01-18 Thread GitBox


dependabot[bot] opened a new pull request, #117:
URL: https://github.com/apache/directory-kerby/pull/117

   Bumps [maven-shade-plugin](https://github.com/apache/maven-shade-plugin) 
from 3.2.4 to 3.4.1.
   
   Release notes
   Sourced from https://github.com/apache/maven-shade-plugin/releases;>maven-shade-plugin's
 releases.
   
   3.3.0
   What's Changed
   
   [MSHADE-369] update commons-lang by https://github.com/elharo;>@​elharo in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/49;>apache/maven-shade-plugin#49
   [MSHADE-370] update mockito by https://github.com/elharo;>@​elharo in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/50;>apache/maven-shade-plugin#50
   Bump asmVersion from 8.0 to 8.0.1 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/57;>apache/maven-shade-plugin#57
   MSHADE-373: adds a property to skip manifest transformer application 
when transforming a source file. by https://github.com/raphw;>@​raphw in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/59;>apache/maven-shade-plugin#59
   [MSHADE-378] Shade plugin changes the compression level of nested jar… 
by https://github.com/jenrryyou;>@​jenrryyou in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/73;>apache/maven-shade-plugin#73
   Bump guava from 28.2-android to 30.0-android by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/75;>apache/maven-shade-plugin#75
   remove unused private method by https://github.com/elharo;>@​elharo in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/79;>apache/maven-shade-plugin#79
   remove deprecated method by https://github.com/elharo;>@​elharo in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/78;>apache/maven-shade-plugin#78
   Bump asmVersion from 9.0 to 9.1 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/84;>apache/maven-shade-plugin#84
   Bump junit from 4.13 to 4.13.2 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/86;>apache/maven-shade-plugin#86
   [MSHADE-252] - Make source shading respect package/class name excludes 
by https://github.com/kriegaex;>@​kriegaex in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/88;>apache/maven-shade-plugin#88
   Bump slf4j-api from 1.7.30 to 1.7.31 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/101;>apache/maven-shade-plugin#101
   [MSHADE-382] - Add property to skip execution by https://github.com/aalmiray;>@​aalmiray in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/90;>apache/maven-shade-plugin#90
   Bump slf4j-simple from 1.7.30 to 1.7.31 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/102;>apache/maven-shade-plugin#102
   Bump asmVersion from 9.1 to 9.2 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/106;>apache/maven-shade-plugin#106
   Bump jdependency from 2.6.0 to 2.7.0 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/99;>apache/maven-shade-plugin#99
   run gh action with more jdk by https://github.com/olamy;>@​olamy in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/111;>apache/maven-shade-plugin#111
   Bump slf4j.version from 1.7.31 to 1.7.32 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/113;>apache/maven-shade-plugin#113
   [MSHADE-396] Improve SourceContent Shading by https://github.com/kriegaex;>@​kriegaex in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/105;>apache/maven-shade-plugin#105
   [MSHADE-405] - ShowOverlapping Uses http instead of https by https://github.com/khmarbaise;>@​khmarbaise in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/118;>apache/maven-shade-plugin#118
   Bump sisu.version from 0.3.4 to 0.3.5 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/117;>apache/maven-shade-plugin#117
   [MSHADE-412] avoid possible NPE since rawString was added in 
SimpleRelocator by https://github.com/rmannibucau;>@​rmannibucau in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/123;>apache/maven-shade-plugin#123
   Bump hamcrest-core from 1.3 to 2.2 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/apache/maven-shade-plugin/pull/96;>apache/maven-shade-plugin#96
   
   New Contributors
   
   https://github.com/raphw;>@​raphw made 

[GitHub] [directory-kerby] dependabot[bot] opened a new pull request, #116: Bump gson from 2.8.9 to 2.10.1

2023-01-18 Thread GitBox


dependabot[bot] opened a new pull request, #116:
URL: https://github.com/apache/directory-kerby/pull/116

   Bumps [gson](https://github.com/google/gson) from 2.8.9 to 2.10.1.
   
   Release notes
   Sourced from https://github.com/google/gson/releases;>gson's 
releases.
   
   Gson 2.10.1
   This is technically a minor release rather than a patch release because 
there is one small API change: a new JsonObject.isEmpty() 
method.
   What's Changed: User-Visible Changes
   
   Added JsonObject method isEmpty() by https://github.com/dhoard;>@​dhoard in https://github-redirect.dependabot.com/google/gson/pull/2233;>google/gson#2233
   Fix non-threadsafe creation of adapter for type with cyclic 
dependency by https://github.com/Marcono1234;>@​Marcono1234 in https://github-redirect.dependabot.com/google/gson/pull/1832;>google/gson#1832
   Remove EOFException special casing of JsonStreamParser.next() 
by https://github.com/Marcono1234;>@​Marcono1234 in 
https://github-redirect.dependabot.com/google/gson/pull/2281;>google/gson#2281
   Improve exception message for duplicate field names by https://github.com/Marcono1234;>@​Marcono1234 in https://github-redirect.dependabot.com/google/gson/pull/2251;>google/gson#2251
   Fix the javadoc of JsonDeserializer.deserialize() by https://github.com/MaicolAntali;>@​MaicolAntali in https://github-redirect.dependabot.com/google/gson/pull/2243;>google/gson#2243
   Bump os-maven-plugin from 1.7.0 to 1.7.1 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/google/gson/pull/2235;>google/gson#2235
   Bump jackson-databind from 2.13.4.2 to 2.14.0 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/google/gson/pull/2234;>google/gson#2234
   Bump maven-release-plugin from 3.0.0-M6 to 3.0.0-M7 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/google/gson/pull/2232;>google/gson#2232
   Bump japicmp-maven-plugin from 0.16.0 to 0.17.1 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/google/gson/pull/2238;>google/gson#2238
   Bump jackson-databind from 2.14.0 to 2.14.1 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/google/gson/pull/2241;>google/gson#2241
   Bump bnd-maven-plugin from 6.3.1 to 6.4.0 by https://github.com/dependabot;>@​dependabot in https://github-redirect.dependabot.com/google/gson/pull/2245;>google/gson#2245
   
   Site Documentation and Maintenance Changes (these were already 
visible)
   
   Add troubleshooting guide by https://github.com/Marcono1234;>@​Marcono1234 in https://github-redirect.dependabot.com/google/gson/pull/2285;>google/gson#2285
   Replace custom user guide header anchors by https://github.com/Marcono1234;>@​Marcono1234 in https://github-redirect.dependabot.com/google/gson/pull/2289;>google/gson#2289
   Improve variable names in user guide by https://github.com/Marcono1234;>@​Marcono1234 in https://github-redirect.dependabot.com/google/gson/pull/2290;>google/gson#2290
   Add 2.10 changes to CHANGELOG; minor release follow-ups by https://github.com/Marcono1234;>@​Marcono1234 in https://github-redirect.dependabot.com/google/gson/pull/2229;>google/gson#2229
   Mention in CHANGELOG that GitHub Releases are used in the 
future by https://github.com/Marcono1234;>@​Marcono1234 in https://github-redirect.dependabot.com/google/gson/pull/2230;>google/gson#2230
   GitHub Workflows security hardening by https://github.com/sashashura;>@​sashashura in https://github-redirect.dependabot.com/google/gson/pull/2274;>google/gson#2274
   
   Other Changes
   
   Making consistent prefixs in PerformanceTest by https://github.com/CirQ;>@​CirQ in https://github-redirect.dependabot.com/google/gson/pull/1760;>google/gson#1760
   Adjust version numbers and a test to conform to the SemVer 
spec. by https://github.com/eamonnmcmanus;>@​eamonnmcmanus in https://github-redirect.dependabot.com/google/gson/pull/2237;>google/gson#2237
   Remove covered condition in JsonNull.equals() by https://github.com/MaicolAntali;>@​MaicolAntali in https://github-redirect.dependabot.com/google/gson/pull/2271;>google/gson#2271
   Remove the final keyword from private 
method by https://github.com/MaicolAntali;>@​MaicolAntali in https://github-redirect.dependabot.com/google/gson/pull/2276;>google/gson#2276
   Code cleanup by https://github.com/MaicolAntali;>@​MaicolAntali in https://github-redirect.dependabot.com/google/gson/pull/2282;>google/gson#2282
   Unnecessary unboxing at JsonPrimitive.getAsBoolean() by https://github.com/MaicolAntali;>@​MaicolAntali in https://github-redirect.dependabot.com/google/gson/pull/2277;>google/gson#2277
   Rewrite the 
testParsingDatesFormattedWithSystemLocale(), Fix https://github-redirect.dependabot.com/google/gson/issues/2199;>#2199
 by https://github.com/MaicolAntali;>@​MaicolAntali 
in https://github-redirect.dependabot.com/google/gson/pull/2287;>google/gson#2287
   

[GitHub] [directory-scimple] bdemers commented on pull request #213: Draft: Applying Patches to resources

2023-01-18 Thread GitBox


bdemers commented on PR #213:
URL: 
https://github.com/apache/directory-scimple/pull/213#issuecomment-1387487442

   Related I created #233, (only the last commit is relevant)
   But it tries to abstract out some of the common filter logic to help folks 
map filters into other objects


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] erant10 commented on pull request #213: Draft: Applying Patches to resources

2023-01-18 Thread GitBox


erant10 commented on PR #213:
URL: 
https://github.com/apache/directory-scimple/pull/213#issuecomment-1387484443

   @bdemers Sorry for the delay, just got back from vacation :) 
   I will take a look at your commits and add my latests changes to the branch. 
I'll keep you posted!
   and yes I agree we can definitely squash commits before merging (assuming we 
still want to go down this route :) 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] coheigea closed pull request #115: Test

2023-01-18 Thread GitBox


coheigea closed pull request #115: Test
URL: https://github.com/apache/directory-kerby/pull/115


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers opened a new pull request, #233: Add base expressiong mapper class

2023-01-17 Thread GitBox


bdemers opened a new pull request, #233:
URL: https://github.com/apache/directory-scimple/pull/233

   - patch phase 1
   - remove test
   - support expression filters
   - Enable UpdateRequest patch related tests
   - update object mapper
   - Add license headers
   - Replace ObjectMapperProvider with ObjectMapperFactory
   - Cleaned up imports in UpdateRequest
   - Create Patch Operation handlers for each type of OP
   - Abstract out basic FilterExpression mapping logic
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #226: Bump mockito-junit-jupiter from 4.11.0 to 5.0.0

2023-01-17 Thread GitBox


bdemers merged PR #226:
URL: https://github.com/apache/directory-scimple/pull/226


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #227: Bump junit-bom from 5.9.1 to 5.9.2

2023-01-17 Thread GitBox


bdemers merged PR #227:
URL: https://github.com/apache/directory-scimple/pull/227


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #228: Bump mockito-core from 4.11.0 to 5.0.0

2023-01-17 Thread GitBox


bdemers merged PR #228:
URL: https://github.com/apache/directory-scimple/pull/228


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #229: Bump maven-surefire-plugin from 3.0.0-M7 to 3.0.0-M8

2023-01-17 Thread GitBox


bdemers merged PR #229:
URL: https://github.com/apache/directory-scimple/pull/229


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #231: Bump zjsonpatch from 0.4.13 to 0.4.14

2023-01-17 Thread GitBox


bdemers merged PR #231:
URL: https://github.com/apache/directory-scimple/pull/231


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #230: Bump maven-failsafe-plugin from 3.0.0-M7 to 3.0.0-M8

2023-01-17 Thread GitBox


bdemers merged PR #230:
URL: https://github.com/apache/directory-scimple/pull/230


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #232: Bump dependency-check-maven from 7.4.4 to 8.0.0

2023-01-17 Thread GitBox


bdemers merged PR #232:
URL: https://github.com/apache/directory-scimple/pull/232


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] dependabot[bot] opened a new pull request, #232: Bump dependency-check-maven from 7.4.4 to 8.0.0

2023-01-16 Thread GitBox


dependabot[bot] opened a new pull request, #232:
URL: https://github.com/apache/directory-scimple/pull/232

   Bumps 
[dependency-check-maven](https://github.com/jeremylong/DependencyCheck) from 
7.4.4 to 8.0.0.
   
   Release notes
   Sourced from https://github.com/jeremylong/DependencyCheck/releases;>dependency-check-maven's
 releases.
   
   Version 8.0.0
   Added
   
   Utilize the hosted suppression file to allow for faster remediation of 
reported False Positives (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/4723;>#4723).
   Include the https://www.cisa.gov/known-exploited-vulnerabilities-catalog;>CISA Known 
Exploited Vulnerability Catalog (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/4878;>#4878).
   The gradle and maven plugins now have the 
capability to scan the build plugins (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/4035;>#4035).
   The gradle and maven plugins, for transitive 
dependencies, will report the root dependency in the project that included the 
transitive dependency (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5001;>#5001).
   Added properties.security-severity to SARIF report for 
better integration with GitHub Security Code scanning (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5227;>#5277).
   Allow for HTTP auth settings for Retire JS respository (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5209;>#5209).
   New schema for the XML report was added to support some of the above 
additions (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5296;>#5296).
   Added missing gradle option to only warn on remote errors from the OSS 
Index Analyzer ([gradle https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/303;>#303](https://github-redirect.dependabot.com/dependency-check/dependency-check-gradle/pull/303;>dependency-check/dependency-check-gradle#303)).
   
   Changed
   
   Breaking: the database schema updated - if using an 
external database the update scripts must be run!
   The https://tldp.org/LDP/abs/html/exit-status.html;>exit 
codes from the CLI have been changed to be in the range from 0-255 (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/4511;>#4511.
   The OSS Index Analyzer will automatically disable itself if a transport 
error occurs - preventing copious errors from being reported (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5300%5D;>#5300).
   
   Fixed
   
   Added an additional check for rejected CVEs to reduce FP (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5268;>#5268.
   Corrected the analysis of node_modules to prevent NPEs (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5266;>#5266).
   Fixed error when scanning node packages with local dependencies (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5235;>#5235).
   Fixed NPE in the MSBuild Analyzer (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5293;>#5293).
   Several False Positives have been resolved.
   
   See the full listing of https://github.com/jeremylong/DependencyCheck/milestone/46?closed=1;>changes.
   
   
   
   Changelog
   Sourced from https://github.com/jeremylong/DependencyCheck/blob/main/CHANGELOG.md;>dependency-check-maven's
 changelog.
   
   https://github.com/jeremylong/DependencyCheck/releases/tag/v8.0.0;>Version
 8.0.0 (2023-01-15)
   Added
   
   Utilize the hosted suppression file to allow for faster remediation of 
reported False Positives (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/4723;>#4723).
   Include the https://www.cisa.gov/known-exploited-vulnerabilities-catalog;>CISA Known 
Exploited Vulnerability Catalog (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/4878;>#4878).
   The gradle and maven plugins now have the 
capability to scan the build plugins (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/4035;>#4035).
   The gradle and maven plugins, for transitive 
dependencies, will report the root dependency in the project that included the 
transitive dependency (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5001;>#5001).
   Added properties.security-severity to SARIF report for 
better integration with GitHub Security Code scanning (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5227;>#5277).
   Allow for HTTP auth settings for Retire JS respository (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5209;>#5209).
   New schema for the XML report was added to support some of the above 
additions (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/pull/5296;>#5296).
   Added missing gradle option to only warn on remote errors from the OSS 
Index Analyzer ([gradle 

[GitHub] [directory-scimple] dependabot[bot] opened a new pull request, #231: Bump zjsonpatch from 0.4.13 to 0.4.14

2023-01-16 Thread GitBox


dependabot[bot] opened a new pull request, #231:
URL: https://github.com/apache/directory-scimple/pull/231

   Bumps [zjsonpatch](https://github.com/flipkart-incubator/zjsonpatch) from 
0.4.13 to 0.4.14.
   
   Release notes
   Sourced from https://github.com/flipkart-incubator/zjsonpatch/releases;>zjsonpatch's 
releases.
   
   Releasing 0.4.14
   Changes includes
   https://github-redirect.dependabot.com/flipkart-incubator/zjsonpatch/issues/164;>#164
   https://github-redirect.dependabot.com/flipkart-incubator/zjsonpatch/issues/157;>#157
   https://github-redirect.dependabot.com/flipkart-incubator/zjsonpatch/issues/158;>#158
   https://github-redirect.dependabot.com/flipkart-incubator/zjsonpatch/issues/159;>#159
   https://github-redirect.dependabot.com/flipkart-incubator/zjsonpatch/issues/160;>#160
   https://github-redirect.dependabot.com/flipkart-incubator/zjsonpatch/issues/161;>#161
   
   
   
   Commits
   
   https://github.com/flipkart-incubator/zjsonpatch/commit/d94c38e9074b670b407808265976ba10814cbf34;>d94c38e
 ReadMe update with 0.4.14
   https://github.com/flipkart-incubator/zjsonpatch/commit/f7ce87bd6bb2ae12d2cef0dbeb2a5eb32a058446;>f7ce87b
 0.4.14
   https://github.com/flipkart-incubator/zjsonpatch/commit/816bfa035acab20e1fa82a0627ac68eda6b30df2;>816bfa0
 Bump commons-io from 2.7 to 2.11.0 (https://github-redirect.dependabot.com/flipkart-incubator/zjsonpatch/issues/161;>#161)
   https://github.com/flipkart-incubator/zjsonpatch/commit/5ccad45cf989ca15f7fb9606bd87a93f089eccae;>5ccad45
 Bump maven-source-plugin from 2.2.1 to 3.2.1 (https://github-redirect.dependabot.com/flipkart-incubator/zjsonpatch/issues/160;>#160)
   https://github.com/flipkart-incubator/zjsonpatch/commit/c7fcf3dbe350efa90d012b3f1716c506f75151ec;>c7fcf3d
 Bump junit.version from 5.3.1 to 5.9.1 (https://github-redirect.dependabot.com/flipkart-incubator/zjsonpatch/issues/159;>#159)
   https://github.com/flipkart-incubator/zjsonpatch/commit/c379bb1b8883f7c6bf2794b22635673b08f9c135;>c379bb1
 Bump maven-gpg-plugin from 1.4 to 3.0.1 (https://github-redirect.dependabot.com/flipkart-incubator/zjsonpatch/issues/158;>#158)
   https://github.com/flipkart-incubator/zjsonpatch/commit/bca9ec6faaacb09868dedf6941b17e1dfb0c8e9b;>bca9ec6
 Bump commons-collections4 from 4.2 to 4.4 (https://github-redirect.dependabot.com/flipkart-incubator/zjsonpatch/issues/157;>#157)
   https://github.com/flipkart-incubator/zjsonpatch/commit/8df084ddf59c15cb98a3992c5b65888fa9a13d49;>8df084d
 Creating 0.4.14-SNAPSHOT as the workspace for new changes (https://github-redirect.dependabot.com/flipkart-incubator/zjsonpatch/issues/162;>#162)
   https://github.com/flipkart-incubator/zjsonpatch/commit/177c838da3369ff05cb2eafc51df6f453392db55;>177c838
 Readme update: Releasing 0.4.13 version
   See full diff in https://github.com/flipkart-incubator/zjsonpatch/compare/0.4.13...0.4.14;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.flipkart.zjsonpatch:zjsonpatch=maven=0.4.13=0.4.14)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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 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)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries 

[GitHub] [directory-scimple] dependabot[bot] opened a new pull request, #230: Bump maven-failsafe-plugin from 3.0.0-M7 to 3.0.0-M8

2023-01-16 Thread GitBox


dependabot[bot] opened a new pull request, #230:
URL: https://github.com/apache/directory-scimple/pull/230

   Bumps [maven-failsafe-plugin](https://github.com/apache/maven-surefire) from 
3.0.0-M7 to 3.0.0-M8.
   
   Commits
   
   https://github.com/apache/maven-surefire/commit/54dfdc194d60b11d26943fed09027ddeec9a4c79;>54dfdc1
 [maven-release-plugin] prepare release surefire-3.0.0-M8
   https://github.com/apache/maven-surefire/commit/c068b121a556028b45632f04dd310e582623487d;>c068b12
 [SUREFIRE-2109] Add suffix derived from current user to Surefire temp 
directo...
   https://github.com/apache/maven-surefire/commit/0097a41879983b4790299ce1663edd669f321400;>0097a41
 [SUREFIRE-1962] Unit test for ProviderInfo#isApplicable
   https://github.com/apache/maven-surefire/commit/d3dafe4d36b6dd981c399dd816111762213186f3;>d3dafe4
 [SUREFIRE-2138] Update JUnit4/JUnit5 versions in ITs
   https://github.com/apache/maven-surefire/commit/dd707721590b20443cb5aa2395cc736919d18b42;>dd70772
 [SUREFIRE-2138] Update JUnit4/JUnit5 versions in docs
   https://github.com/apache/maven-surefire/commit/6420f7c34e74eafbc0097c70ef860f399a89f4fa;>6420f7c
 [SUREFIRE-2137] Run JUnitPlatform ITs with latest 5.8.x/5.9.x as well
   https://github.com/apache/maven-surefire/commit/348bfa119650533cf143137c03bc1e01289bd017;>348bfa1
 Disable build on Windows by Jenkins
   https://github.com/apache/maven-surefire/commit/0c35f44c93c911ac04cc8e9b81e0794aae019796;>0c35f44
 [SUREFIRE-2139] Replace EOL JDK18 with JDK19 in build
   https://github.com/apache/maven-surefire/commit/adfb7f5ce38ff40e45515dfa6c7d960d4a027a6e;>adfb7f5
 [SUREFIRE-2139] Raise plexus-java to 1.1.2 for full Java 19 bytecode 
support
   https://github.com/apache/maven-surefire/commit/4f4ac976181e4f9303acf6476884544218f03e2e;>4f4ac97
 [SUREFIRE-2117] Include package + outer classes in XML report of https://github.com/Nested;>@​Nested
   Additional commits viewable in https://github.com/apache/maven-surefire/compare/surefire-3.0.0-M7...surefire-3.0.0-M8;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-failsafe-plugin=maven=3.0.0-M7=3.0.0-M8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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 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)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] dependabot[bot] opened a new pull request, #229: Bump maven-surefire-plugin from 3.0.0-M7 to 3.0.0-M8

2023-01-16 Thread GitBox


dependabot[bot] opened a new pull request, #229:
URL: https://github.com/apache/directory-scimple/pull/229

   Bumps [maven-surefire-plugin](https://github.com/apache/maven-surefire) from 
3.0.0-M7 to 3.0.0-M8.
   
   Commits
   
   https://github.com/apache/maven-surefire/commit/54dfdc194d60b11d26943fed09027ddeec9a4c79;>54dfdc1
 [maven-release-plugin] prepare release surefire-3.0.0-M8
   https://github.com/apache/maven-surefire/commit/c068b121a556028b45632f04dd310e582623487d;>c068b12
 [SUREFIRE-2109] Add suffix derived from current user to Surefire temp 
directo...
   https://github.com/apache/maven-surefire/commit/0097a41879983b4790299ce1663edd669f321400;>0097a41
 [SUREFIRE-1962] Unit test for ProviderInfo#isApplicable
   https://github.com/apache/maven-surefire/commit/d3dafe4d36b6dd981c399dd816111762213186f3;>d3dafe4
 [SUREFIRE-2138] Update JUnit4/JUnit5 versions in ITs
   https://github.com/apache/maven-surefire/commit/dd707721590b20443cb5aa2395cc736919d18b42;>dd70772
 [SUREFIRE-2138] Update JUnit4/JUnit5 versions in docs
   https://github.com/apache/maven-surefire/commit/6420f7c34e74eafbc0097c70ef860f399a89f4fa;>6420f7c
 [SUREFIRE-2137] Run JUnitPlatform ITs with latest 5.8.x/5.9.x as well
   https://github.com/apache/maven-surefire/commit/348bfa119650533cf143137c03bc1e01289bd017;>348bfa1
 Disable build on Windows by Jenkins
   https://github.com/apache/maven-surefire/commit/0c35f44c93c911ac04cc8e9b81e0794aae019796;>0c35f44
 [SUREFIRE-2139] Replace EOL JDK18 with JDK19 in build
   https://github.com/apache/maven-surefire/commit/adfb7f5ce38ff40e45515dfa6c7d960d4a027a6e;>adfb7f5
 [SUREFIRE-2139] Raise plexus-java to 1.1.2 for full Java 19 bytecode 
support
   https://github.com/apache/maven-surefire/commit/4f4ac976181e4f9303acf6476884544218f03e2e;>4f4ac97
 [SUREFIRE-2117] Include package + outer classes in XML report of https://github.com/Nested;>@​Nested
   Additional commits viewable in https://github.com/apache/maven-surefire/compare/surefire-3.0.0-M7...surefire-3.0.0-M8;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-surefire-plugin=maven=3.0.0-M7=3.0.0-M8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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 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)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] dependabot[bot] opened a new pull request, #228: Bump mockito-core from 4.11.0 to 5.0.0

2023-01-16 Thread GitBox


dependabot[bot] opened a new pull request, #228:
URL: https://github.com/apache/directory-scimple/pull/228

   Bumps [mockito-core](https://github.com/mockito/mockito) from 4.11.0 to 
5.0.0.
   
   Release notes
   Sourced from https://github.com/mockito/mockito/releases;>mockito-core's 
releases.
   
   v5.0.0
   Mockito 5: prepare for future JDK versions
   For a while now, we have seen an increase in problems/incompatibilities 
with recent versions of the JDK due to our usage of JVM-internal API.
   Most notably, JDK 17 made some changes which are incompatible with the 
current subclass mockmaker.
   Therefore, to prepare for the future of JDK, we are making some core changes 
to ensure Mockito keeps on working.
   Switch the default mockmaker to mockito-inline
   Back in Mockito 2.7.6, we published a new mockmaker based on the 
inline bytecode principle.
   This mockmaker creates mocks manipulating bytecode equivalent within the 
original class such that its method implementations hook into the normal 
Mockito machinery.
   As a comparison, the subclass mockmaker generates real 
subclasses for mocks, to mimic the same behavior.
   While the approaches are similar, the inline mockmaker avoids certain 
restrictions that the JDK imposes.
   For example, it does not violate module boundaries (introduced in JDK 9, but 
more heavily used in JDK 17) and avoids the leaking of the creation of the 
subclass.
   Massive thanks to community member https://github.com/reta;>@​reta who implemented this 
change.
   When should I still be using the subclass mockmaker?
   There are legitimate remaining use cases for the subclass mockmaker.
   For example, on the Graal VM's native image, the inline mockmaker will not 
work and the subclass mockmaker is the appropriate choice.
   Additionally, if you would like to avoid mocking final classes, using the 
subclass mockmaker is a possibibility.
   Note however that if you solely want to use the subclass mockmaker to avoid 
mocking final, you will run into the above mentioned issues on JDK 17+.
   We want to leave this choice up to our users, which is why we will keep on 
supporting the subclass mockmaker.
   If you want to use the subclass mockmaker instead, you can use the new 
mockito-subclass artifact (published https://search.maven.org/artifact/org.mockito/mockito-subclass;>on Maven 
Central along with all our other artifacts).
   Update the minimum supported Java version to 11
   Mockito 4 supports Java 8 and above.
   Similar to other open source projects, we are moving away from JDK 8 and to 
newer versions.
   The primary reason for moving away from JDK 8 is the increasing maintenance 
costs with keeping our own infrastructure working.
   Lately we have been running into more and more JDK 8 breakages.
   Additionally, while we want to support the newest JDK API's, our current 
solution to support both JDK 8 and newer versions causes https://github-redirect.dependabot.com/mockito/mockito/issues/2798;>issues
 with the SecurityManager.
   Since we want Mockito to work on the newest version and more and more 
businesses adopting JDK 11, we have decided to make the switch as well.
   Massive thanks to community member https://github.com/reta;>@​reta who implemented this 
change.
   What should I do if I still run JDK 8?
   For JDK 8 and below, you can keep on using Mockito 4.
   This is similar to if you are using JDK 6, for which you can keep on using 
Mockito 2.
   The changes in Mockito 5 (for now) are primarily focused on the latest JDK 
versions, which means the API differences between Mockito 4 and 5 are minimal.
   However, over time this will most likely widen, so we do recommend adopting 
JDK 11 in the future.
   New type() method on ArgumentMatcher
   One of our most used public API's for customizing Mockito is the https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/ArgumentMatcher.html;>ArgumentMatcher
 interface.
   The interface allows you to define a custom matcher, which you can pass into 
method arguments to provide more targeted matches.
   One major shortcoming of the ArgumentMatcher was the lack of 
varargs support.
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/mockito/mockito/commit/adf528d173f8b763fcd4fedab245ed485b465211;>adf528d
 Bump versions.bytebuddy from 1.12.21 to 1.12.22 (https://github-redirect.dependabot.com/mockito/mockito/issues/2864;>#2864)
   https://github.com/mockito/mockito/commit/2418419a1915bd234332eac2b4d5de85622d4699;>2418419
 Bump versions.junitJupiter from 5.9.1 to 5.9.2 (https://github-redirect.dependabot.com/mockito/mockito/issues/2858;>#2858)
   https://github.com/mockito/mockito/commit/3d40cd51d3982e33f7c2a2670c65d28233ceb66e;>3d40cd5
 Bump junit-platform-launcher from 1.9.1 to 1.9.2 (https://github-redirect.dependabot.com/mockito/mockito/issues/2859;>#2859)
   https://github.com/mockito/mockito/commit/9bec8e3a1a0f57e4baa9b64825d67641e9eb2d5e;>9bec8e3
 Bump versions.errorprone from 

[GitHub] [directory-scimple] dependabot[bot] opened a new pull request, #227: Bump junit-bom from 5.9.1 to 5.9.2

2023-01-16 Thread GitBox


dependabot[bot] opened a new pull request, #227:
URL: https://github.com/apache/directory-scimple/pull/227

   Bumps [junit-bom](https://github.com/junit-team/junit5) from 5.9.1 to 5.9.2.
   
   Release notes
   Sourced from https://github.com/junit-team/junit5/releases;>junit-bom's 
releases.
   
   JUnit 5.9.2 = Platform 1.9.2 + Jupiter 5.9.2 + Vintage 5.9.2
   See http://junit.org/junit5/docs/5.9.2/release-notes/;>Release 
Notes.
   
   
   
   Commits
   
   https://github.com/junit-team/junit5/commit/8ed3c66c7eb20b835cf92f50a7bf8830838c462e;>8ed3c66
 Release 5.9.2
   https://github.com/junit-team/junit5/commit/742f99fcce6d8b8fbd38c7f541c55bdda771e220;>742f99f
 Prepare 5.9.2 release notes
   https://github.com/junit-team/junit5/commit/a9a3cf5fb75ad9adf8c197224981226db8f41181;>a9a3cf5
 Fix bug and polish contribution
   https://github.com/junit-team/junit5/commit/825ea38857bff2dcbc200c6ceb7972dbc89482b0;>825ea38
 Introduce new @MethodSource syntax to differentiate overloaded 
local factor...
   https://github.com/junit-team/junit5/commit/0c40f5ef057c90a8d4b2249dd9a0b6e289426424;>0c40f5e
 Polish Javadoc
   https://github.com/junit-team/junit5/commit/7d54016421d611a13db8196ea9625dfe1d9036c8;>7d54016
 Update codecov-action
   https://github.com/junit-team/junit5/commit/bfeeac4d4142a3680737626a0ccdb9a708cabb2a;>bfeeac4
 Remove duplicate copyright comment
   https://github.com/junit-team/junit5/commit/b0d9083315426b69d2bf38153987cdeb83460257;>b0d9083
 Format integration test projects with Spotless as well
   https://github.com/junit-team/junit5/commit/c4ed325cb2ff825ecd0bda3870cf8444bdf646f0;>c4ed325
 Update copyright
   https://github.com/junit-team/junit5/commit/0e3a1d32e504c63a09dbafc8c1926b66df417774;>0e3a1d3
 Update upload-artifact action
   Additional commits viewable in https://github.com/junit-team/junit5/compare/r5.9.1...r5.9.2;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.junit:junit-bom=maven=5.9.1=5.9.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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 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)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] dependabot[bot] opened a new pull request, #226: Bump mockito-junit-jupiter from 4.11.0 to 5.0.0

2023-01-16 Thread GitBox


dependabot[bot] opened a new pull request, #226:
URL: https://github.com/apache/directory-scimple/pull/226

   Bumps [mockito-junit-jupiter](https://github.com/mockito/mockito) from 
4.11.0 to 5.0.0.
   
   Release notes
   Sourced from https://github.com/mockito/mockito/releases;>mockito-junit-jupiter's 
releases.
   
   v5.0.0
   Mockito 5: prepare for future JDK versions
   For a while now, we have seen an increase in problems/incompatibilities 
with recent versions of the JDK due to our usage of JVM-internal API.
   Most notably, JDK 17 made some changes which are incompatible with the 
current subclass mockmaker.
   Therefore, to prepare for the future of JDK, we are making some core changes 
to ensure Mockito keeps on working.
   Switch the default mockmaker to mockito-inline
   Back in Mockito 2.7.6, we published a new mockmaker based on the 
inline bytecode principle.
   This mockmaker creates mocks manipulating bytecode equivalent within the 
original class such that its method implementations hook into the normal 
Mockito machinery.
   As a comparison, the subclass mockmaker generates real 
subclasses for mocks, to mimic the same behavior.
   While the approaches are similar, the inline mockmaker avoids certain 
restrictions that the JDK imposes.
   For example, it does not violate module boundaries (introduced in JDK 9, but 
more heavily used in JDK 17) and avoids the leaking of the creation of the 
subclass.
   Massive thanks to community member https://github.com/reta;>@​reta who implemented this 
change.
   When should I still be using the subclass mockmaker?
   There are legitimate remaining use cases for the subclass mockmaker.
   For example, on the Graal VM's native image, the inline mockmaker will not 
work and the subclass mockmaker is the appropriate choice.
   Additionally, if you would like to avoid mocking final classes, using the 
subclass mockmaker is a possibibility.
   Note however that if you solely want to use the subclass mockmaker to avoid 
mocking final, you will run into the above mentioned issues on JDK 17+.
   We want to leave this choice up to our users, which is why we will keep on 
supporting the subclass mockmaker.
   If you want to use the subclass mockmaker instead, you can use the new 
mockito-subclass artifact (published https://search.maven.org/artifact/org.mockito/mockito-subclass;>on Maven 
Central along with all our other artifacts).
   Update the minimum supported Java version to 11
   Mockito 4 supports Java 8 and above.
   Similar to other open source projects, we are moving away from JDK 8 and to 
newer versions.
   The primary reason for moving away from JDK 8 is the increasing maintenance 
costs with keeping our own infrastructure working.
   Lately we have been running into more and more JDK 8 breakages.
   Additionally, while we want to support the newest JDK API's, our current 
solution to support both JDK 8 and newer versions causes https://github-redirect.dependabot.com/mockito/mockito/issues/2798;>issues
 with the SecurityManager.
   Since we want Mockito to work on the newest version and more and more 
businesses adopting JDK 11, we have decided to make the switch as well.
   Massive thanks to community member https://github.com/reta;>@​reta who implemented this 
change.
   What should I do if I still run JDK 8?
   For JDK 8 and below, you can keep on using Mockito 4.
   This is similar to if you are using JDK 6, for which you can keep on using 
Mockito 2.
   The changes in Mockito 5 (for now) are primarily focused on the latest JDK 
versions, which means the API differences between Mockito 4 and 5 are minimal.
   However, over time this will most likely widen, so we do recommend adopting 
JDK 11 in the future.
   New type() method on ArgumentMatcher
   One of our most used public API's for customizing Mockito is the https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/ArgumentMatcher.html;>ArgumentMatcher
 interface.
   The interface allows you to define a custom matcher, which you can pass into 
method arguments to provide more targeted matches.
   One major shortcoming of the ArgumentMatcher was the lack of 
varargs support.
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/mockito/mockito/commit/adf528d173f8b763fcd4fedab245ed485b465211;>adf528d
 Bump versions.bytebuddy from 1.12.21 to 1.12.22 (https://github-redirect.dependabot.com/mockito/mockito/issues/2864;>#2864)
   https://github.com/mockito/mockito/commit/2418419a1915bd234332eac2b4d5de85622d4699;>2418419
 Bump versions.junitJupiter from 5.9.1 to 5.9.2 (https://github-redirect.dependabot.com/mockito/mockito/issues/2858;>#2858)
   https://github.com/mockito/mockito/commit/3d40cd51d3982e33f7c2a2670c65d28233ceb66e;>3d40cd5
 Bump junit-platform-launcher from 1.9.1 to 1.9.2 (https://github-redirect.dependabot.com/mockito/mockito/issues/2859;>#2859)
   https://github.com/mockito/mockito/commit/9bec8e3a1a0f57e4baa9b64825d67641e9eb2d5e;>9bec8e3
 Bump 

[GitHub] [directory-scimple] bdemers merged pull request #225: Use UUIDs for examples

2023-01-12 Thread GitBox


bdemers merged PR #225:
URL: https://github.com/apache/directory-scimple/pull/225


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers opened a new pull request, #225: Use UUIDs for examples

2023-01-11 Thread GitBox


bdemers opened a new pull request, #225:
URL: https://github.com/apache/directory-scimple/pull/225

   On create, always set the resourceId, it isn't valid for a client to set it
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #222: Phone number parsing is non-strict by default

2023-01-11 Thread GitBox


bdemers merged PR #222:
URL: https://github.com/apache/directory-scimple/pull/222


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers commented on pull request #224: Fix typo in SchemaExtensionConfiguration

2023-01-11 Thread GitBox


bdemers commented on PR #224:
URL: 
https://github.com/apache/directory-scimple/pull/224#issuecomment-1378896912

   Thanks @kjthorpe18!!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #224: Fix typo in SchemaExtensionConfiguration

2023-01-11 Thread GitBox


bdemers merged PR #224:
URL: https://github.com/apache/directory-scimple/pull/224


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] kjthorpe18 opened a new pull request, #224: Fix typo in SchemaExtensionConfiguration

2023-01-10 Thread GitBox


kjthorpe18 opened a new pull request, #224:
URL: https://github.com/apache/directory-scimple/pull/224

   Fixes a non-breaking typo with `SchemaExtensionConfiguration`, e.g. 
Extention -> Extension


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] kjthorpe18 closed pull request #221: Fix typo in SchemaExtensionConfiguration

2023-01-10 Thread GitBox


kjthorpe18 closed pull request #221: Fix typo in SchemaExtensionConfiguration
URL: https://github.com/apache/directory-scimple/pull/221


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] kjthorpe18 commented on pull request #221: Fix typo in SchemaExtensionConfiguration

2023-01-10 Thread GitBox


kjthorpe18 commented on PR #221:
URL: 
https://github.com/apache/directory-scimple/pull/221#issuecomment-1378168589

   > @kjthorpe18 did you mean to close this?
   
   Ah, nope that was an accident. I can re-open a new PR if that is preferred.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #218: Bump dependency-check-maven from 7.4.3 to 7.4.4

2023-01-10 Thread GitBox


bdemers merged PR #218:
URL: https://github.com/apache/directory-scimple/pull/218


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #219: Bump assertj-core from 3.23.1 to 3.24.1

2023-01-10 Thread GitBox


bdemers merged PR #219:
URL: https://github.com/apache/directory-scimple/pull/219


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #220: Bump swagger-annotations from 2.2.7 to 2.2.8

2023-01-10 Thread GitBox


bdemers merged PR #220:
URL: https://github.com/apache/directory-scimple/pull/220


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #223: Log uncaught client errors at DEBUG level, server errors at WARN

2023-01-10 Thread GitBox


bdemers merged PR #223:
URL: https://github.com/apache/directory-scimple/pull/223


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers commented on pull request #221: Fix typo in SchemaExtensionConfiguration

2023-01-10 Thread GitBox


bdemers commented on PR #221:
URL: 
https://github.com/apache/directory-scimple/pull/221#issuecomment-1378128433

   @kjthorpe18 did you mean to close this?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers opened a new pull request, #222: Phone number parsing is non-strict by default

2023-01-10 Thread GitBox


bdemers opened a new pull request, #222:
URL: https://github.com/apache/directory-scimple/pull/222

   Per SCIM RFC, phone numbers _should_ be formatted as defined in RFC3966, but 
this is not a requirement
   The SCIM RFC has an example that uses phone number `555-555-`, this 
needs to be allowed as a valid phone number
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] kjthorpe18 closed pull request #221: Fix typo in SchemaExtensionConfiguration

2023-01-10 Thread GitBox


kjthorpe18 closed pull request #221: Fix typo in SchemaExtensionConfiguration
URL: https://github.com/apache/directory-scimple/pull/221


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] kjthorpe18 opened a new pull request, #221: Fix typo in SchemaExtensionConfiguration

2023-01-10 Thread GitBox


kjthorpe18 opened a new pull request, #221:
URL: https://github.com/apache/directory-scimple/pull/221

   Entention -> Extension


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] dependabot[bot] opened a new pull request, #220: Bump swagger-annotations from 2.2.7 to 2.2.8

2023-01-09 Thread GitBox


dependabot[bot] opened a new pull request, #220:
URL: https://github.com/apache/directory-scimple/pull/220

   Bumps swagger-annotations from 2.2.7 to 2.2.8.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.swagger.core.v3:swagger-annotations=maven=2.2.7=2.2.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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 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)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] dependabot[bot] opened a new pull request, #218: Bump dependency-check-maven from 7.4.3 to 7.4.4

2023-01-09 Thread GitBox


dependabot[bot] opened a new pull request, #218:
URL: https://github.com/apache/directory-scimple/pull/218

   Bumps 
[dependency-check-maven](https://github.com/jeremylong/DependencyCheck) from 
7.4.3 to 7.4.4.
   
   Release notes
   Sourced from https://github.com/jeremylong/DependencyCheck/releases;>dependency-check-maven's
 releases.
   
   Version 7.4.4
   Fixed
   
   Resolved issue processing NVD CVE data due to column width (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5229;>#5229)
   
   See the full listing of https://github.com/jeremylong/DependencyCheck/milestone/56?closed=1;>changes.
   
   
   
   Changelog
   Sourced from https://github.com/jeremylong/DependencyCheck/blob/main/CHANGELOG.md;>dependency-check-maven's
 changelog.
   
   https://github.com/jeremylong/DependencyCheck/releases/tag/v7.4.4;>Version
 7.4.4 (2023-01-06)
   Fixed
   
   Resolved issue processing NVD CVE data due to column width (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5229;>#5229)
   
   See the full listing of https://github.com/jeremylong/DependencyCheck/milestone/56?closed=1;>changes.
   
   
   
   Commits
   
   https://github.com/jeremylong/DependencyCheck/commit/220140becf5a94da2b7e66514224af032b2ac3eb;>220140b
 build:prepare release v7.4.4
   https://github.com/jeremylong/DependencyCheck/commit/07a852d67664cc2d02505c2323456b136c799580;>07a852d
 docs: release notes
   https://github.com/jeremylong/DependencyCheck/commit/2d3660b3457dc19313b5a68075cfefbf2df40b5b;>2d3660b
 fix: long version of go dependency unable to inserted into software table 
(CV...
   https://github.com/jeremylong/DependencyCheck/commit/0e1141176f525e0252a0c5e0af04c383656a258e;>0e11411
 fix: update column width
   https://github.com/jeremylong/DependencyCheck/commit/69ad5b75bd6e3b15af6b5ba83d9daf8a0e085dee;>69ad5b7
 fix: update data version to 5.2.2 and update it in all other initialize 
scrip...
   https://github.com/jeremylong/DependencyCheck/commit/8b20c15629107a79c381866d0d1947685bb105b4;>8b20c15
 fix: long version of go dependency unable to inserted into software table 
(CV...
   https://github.com/jeremylong/DependencyCheck/commit/afc69a0de9e85aca3c9d5ac3f0c19057cecc6336;>afc69a0
 build(deps): bump actions/setup-node from 3.5.1 to 3.6.0 (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5219;>#5219)
   https://github.com/jeremylong/DependencyCheck/commit/5a8b81cafea4e9c464045f37718dd2b26ecc9311;>5a8b81c
 build(deps): bump actions/setup-node from 3.5.1 to 3.6.0
   https://github.com/jeremylong/DependencyCheck/commit/21b08b3b8368e224beeca346cfaa246ea8bb3ac9;>21b08b3
 fix: Support RELEASE and LATEST metaversions in the transitive dependencies 
(...
   https://github.com/jeremylong/DependencyCheck/commit/1fd1a1f1239c2eba046be07f4fb2dca751b5d53e;>1fd1a1f
 fix: add documentation about ossindexAnalyzerUrl parameter (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5202;>#5202)
   Additional commits viewable in https://github.com/jeremylong/DependencyCheck/compare/v7.4.3...v7.4.4;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.owasp:dependency-check-maven=maven=7.4.3=7.4.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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 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)
   
   
   


-- 
This is an 

[GitHub] [directory-scimple] dependabot[bot] opened a new pull request, #219: Bump assertj-core from 3.23.1 to 3.24.1

2023-01-09 Thread GitBox


dependabot[bot] opened a new pull request, #219:
URL: https://github.com/apache/directory-scimple/pull/219

   Bumps assertj-core from 3.23.1 to 3.24.1.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.assertj:assertj-core=maven=3.23.1=3.24.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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 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)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers commented on pull request #213: Draft: Applying Patches to resources

2023-01-06 Thread GitBox


bdemers commented on PR #213:
URL: 
https://github.com/apache/directory-scimple/pull/213#issuecomment-1374035757

   @erant10 I just used this branch to do a quick test with Okta's group 
membership patch requests and it worked great!
   
   Awesome work!
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #212: Bump version.spring-boot from 3.0.0 to 3.0.1

2023-01-05 Thread GitBox


bdemers merged PR #212:
URL: https://github.com/apache/directory-scimple/pull/212


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers commented on pull request #213: Draft: Applying Patches to resources

2023-01-04 Thread GitBox


bdemers commented on PR #213:
URL: 
https://github.com/apache/directory-scimple/pull/213#issuecomment-1371154368

   Note: if needed, we can clean up the history before merging, but there is 
probably more value in hacking on all the patch-related bits in one branch  


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers commented on pull request #213: Draft: Applying Patches to resources

2023-01-04 Thread GitBox


bdemers commented on PR #213:
URL: 
https://github.com/apache/directory-scimple/pull/213#issuecomment-1371151363

   I merged in #217 and resolved a couple of minor conflicts
   
   * added a couple of missing license headers.
   * updated ObjectMapper creation per comment above


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers closed pull request #217: Draft: Enable UpdateRequest patch related tests

2023-01-04 Thread GitBox


bdemers closed pull request #217: Draft: Enable UpdateRequest patch related 
tests
URL: https://github.com/apache/directory-scimple/pull/217


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers commented on pull request #217: Draft: Enable UpdateRequest patch related tests

2023-01-04 Thread GitBox


bdemers commented on PR #217:
URL: 
https://github.com/apache/directory-scimple/pull/217#issuecomment-1371146743

   Merged into #213 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] erant10 commented on pull request #213: Draft: Applying Patches to resources

2023-01-03 Thread GitBox


erant10 commented on PR #213:
URL: 
https://github.com/apache/directory-scimple/pull/213#issuecomment-1370204659

   @bdemers My main concern with this implementation is that PatchHandler is 
coupled with InMemoryFilterExpression, which is only meant to be used with the 
in-memory implementation... I wonder if there is a way to abstract-ify this 
FilterExpression so that it can be easily modified for non-demo purposes...


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] erant10 commented on a diff in pull request #213: Draft: Applying Patches to resources

2023-01-03 Thread GitBox


erant10 commented on code in PR #213:
URL: https://github.com/apache/directory-scimple/pull/213#discussion_r1060889752


##
scim-core/src/main/java/org/apache/directory/scim/core/repository/ObjectMapperProvider.java:
##
@@ -0,0 +1,27 @@
+package org.apache.directory.scim.core.repository;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.databind.AnnotationIntrospector;
+import com.fasterxml.jackson.databind.DeserializationFeature;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.fasterxml.jackson.databind.introspect.AnnotationIntrospectorPair;
+import com.fasterxml.jackson.databind.introspect.JacksonAnnotationIntrospector;
+import 
com.fasterxml.jackson.module.jakarta.xmlbind.JakartaXmlBindAnnotationIntrospector;
+import 
com.fasterxml.jackson.module.jakarta.xmlbind.JakartaXmlBindAnnotationModule;
+
+public class ObjectMapperProvider {

Review Comment:
   of course, feel free to merge :)
   
   Yeah I got the map conversion idea from this pr - 
https://github.com/apache/directory-scimple/pull/29
   which might not be the most efficient but it seems simple enough...



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers commented on pull request #213: Draft: Applying Patches to resources

2023-01-03 Thread GitBox


bdemers commented on PR #213:
URL: 
https://github.com/apache/directory-scimple/pull/213#issuecomment-1370126103

   I almost forgot, but if you haven't already, can you fill out an Apache ICLA 
(or CCLA in needed)
   https://www.apache.org/licenses/contributor-agreements.html


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers commented on a diff in pull request #213: Draft: Applying Patches to resources

2023-01-03 Thread GitBox


bdemers commented on code in PR #213:
URL: https://github.com/apache/directory-scimple/pull/213#discussion_r1060871770


##
scim-core/src/main/java/org/apache/directory/scim/core/repository/ObjectMapperProvider.java:
##
@@ -0,0 +1,27 @@
+package org.apache.directory.scim.core.repository;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.databind.AnnotationIntrospector;
+import com.fasterxml.jackson.databind.DeserializationFeature;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.fasterxml.jackson.databind.introspect.AnnotationIntrospectorPair;
+import com.fasterxml.jackson.databind.introspect.JacksonAnnotationIntrospector;
+import 
com.fasterxml.jackson.module.jakarta.xmlbind.JakartaXmlBindAnnotationIntrospector;
+import 
com.fasterxml.jackson.module.jakarta.xmlbind.JakartaXmlBindAnnotationModule;
+
+public class ObjectMapperProvider {

Review Comment:
   I recently refactored some of the JSON/ObjectMapper bits.
   I'm not 100% that will help with this usage, but it is something we can 
investigate.
   
   
https://github.com/apache/directory-scimple/blob/develop/scim-core/src/main/java/org/apache/directory/scim/core/json/ObjectMapperFactory.java
 
   
   This _may_ come into play when dealing with patches that contain values from 
SCIM Extensions.
   That said, with your approach using `objectAsMap` it _may_ not make a 
difference.
   (Mostly a note to myself, to go back and look at the ObjectMapper-related 
bits )



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers commented on pull request #213: Draft: Applying Patches to resources

2023-01-03 Thread GitBox


bdemers commented on PR #213:
URL: 
https://github.com/apache/directory-scimple/pull/213#issuecomment-1370112056

   Related PR for cleaning up/enabling patch related tests: #217


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers opened a new pull request, #217: Enable UpdateRequest patch related tests

2023-01-03 Thread GitBox


bdemers opened a new pull request, #217:
URL: https://github.com/apache/directory-scimple/pull/217

   These tests were disabled, so they have been reworked with a new 
PatchOperationAssert
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #214: Bump dependency-check-maven from 7.4.1 to 7.4.3

2023-01-03 Thread GitBox


bdemers merged PR #214:
URL: https://github.com/apache/directory-scimple/pull/214


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #215: Bump mockito-junit-jupiter from 4.10.0 to 4.11.0

2023-01-03 Thread GitBox


bdemers merged PR #215:
URL: https://github.com/apache/directory-scimple/pull/215


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #216: Bump mockito-core from 4.10.0 to 4.11.0

2023-01-03 Thread GitBox


bdemers merged PR #216:
URL: https://github.com/apache/directory-scimple/pull/216


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] dependabot[bot] opened a new pull request, #216: Bump mockito-core from 4.10.0 to 4.11.0

2023-01-02 Thread GitBox


dependabot[bot] opened a new pull request, #216:
URL: https://github.com/apache/directory-scimple/pull/216

   Bumps [mockito-core](https://github.com/mockito/mockito) from 4.10.0 to 
4.11.0.
   
   Release notes
   Sourced from https://github.com/mockito/mockito/releases;>mockito-core's 
releases.
   
   v4.11.0
   Changelog generated 
by https://github.com/shipkit/shipkit-changelog;>Shipkit Changelog 
Gradle Plugin
   4.11.0
   
   2022-12-28 - https://github.com/mockito/mockito/compare/v4.10.0...v4.11.0;>1 
commit(s) by Andy Coates
   Improve vararg handling: approach 2 [(https://github-redirect.dependabot.com/mockito/mockito/issues/2807;>#2807)](https://github-redirect.dependabot.com/mockito/mockito/pull/2807;>mockito/mockito#2807)
   Mocking varargs method with any(String[].class) doesn't 
work as expected [(https://github-redirect.dependabot.com/mockito/mockito/issues/2796;>#2796)](https://github-redirect.dependabot.com/mockito/mockito/issues/2796;>mockito/mockito#2796)
   (Argument)Matchers regression from 1.10.19 to 2.18.3 for varargs [(https://github-redirect.dependabot.com/mockito/mockito/issues/1498;>#1498)](https://github-redirect.dependabot.com/mockito/mockito/issues/1498;>mockito/mockito#1498)
   Cannot verify varargs parameter as an array [(https://github-redirect.dependabot.com/mockito/mockito/issues/1222;>#1222)](https://github-redirect.dependabot.com/mockito/mockito/issues/1222;>mockito/mockito#1222)
   ArgumentCaptor can't capture varargs-arrays [(https://github-redirect.dependabot.com/mockito/mockito/issues/584;>#584)](https://github-redirect.dependabot.com/mockito/mockito/issues/584;>mockito/mockito#584)
   Verification of an empty varargs call fails when isNotNull() is used 
[(https://github-redirect.dependabot.com/mockito/mockito/issues/567;>#567)](https://github-redirect.dependabot.com/mockito/mockito/issues/567;>mockito/mockito#567)
   
   
   
   
   Commits
   
   https://github.com/mockito/mockito/commit/483e15f9f940716a85f2d58f6c28981136790c4e;>483e15f
 Add type() method to ArgumentMatcher (https://github-redirect.dependabot.com/mockito/mockito/issues/2807;>#2807)
   See full diff in https://github.com/mockito/mockito/compare/v4.10.0...v4.11.0;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.mockito:mockito-core=maven=4.10.0=4.11.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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 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)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] dependabot[bot] opened a new pull request, #215: Bump mockito-junit-jupiter from 4.10.0 to 4.11.0

2023-01-02 Thread GitBox


dependabot[bot] opened a new pull request, #215:
URL: https://github.com/apache/directory-scimple/pull/215

   Bumps [mockito-junit-jupiter](https://github.com/mockito/mockito) from 
4.10.0 to 4.11.0.
   
   Release notes
   Sourced from https://github.com/mockito/mockito/releases;>mockito-junit-jupiter's 
releases.
   
   v4.11.0
   Changelog generated 
by https://github.com/shipkit/shipkit-changelog;>Shipkit Changelog 
Gradle Plugin
   4.11.0
   
   2022-12-28 - https://github.com/mockito/mockito/compare/v4.10.0...v4.11.0;>1 
commit(s) by Andy Coates
   Improve vararg handling: approach 2 [(https://github-redirect.dependabot.com/mockito/mockito/issues/2807;>#2807)](https://github-redirect.dependabot.com/mockito/mockito/pull/2807;>mockito/mockito#2807)
   Mocking varargs method with any(String[].class) doesn't 
work as expected [(https://github-redirect.dependabot.com/mockito/mockito/issues/2796;>#2796)](https://github-redirect.dependabot.com/mockito/mockito/issues/2796;>mockito/mockito#2796)
   (Argument)Matchers regression from 1.10.19 to 2.18.3 for varargs [(https://github-redirect.dependabot.com/mockito/mockito/issues/1498;>#1498)](https://github-redirect.dependabot.com/mockito/mockito/issues/1498;>mockito/mockito#1498)
   Cannot verify varargs parameter as an array [(https://github-redirect.dependabot.com/mockito/mockito/issues/1222;>#1222)](https://github-redirect.dependabot.com/mockito/mockito/issues/1222;>mockito/mockito#1222)
   ArgumentCaptor can't capture varargs-arrays [(https://github-redirect.dependabot.com/mockito/mockito/issues/584;>#584)](https://github-redirect.dependabot.com/mockito/mockito/issues/584;>mockito/mockito#584)
   Verification of an empty varargs call fails when isNotNull() is used 
[(https://github-redirect.dependabot.com/mockito/mockito/issues/567;>#567)](https://github-redirect.dependabot.com/mockito/mockito/issues/567;>mockito/mockito#567)
   
   
   
   
   Commits
   
   https://github.com/mockito/mockito/commit/483e15f9f940716a85f2d58f6c28981136790c4e;>483e15f
 Add type() method to ArgumentMatcher (https://github-redirect.dependabot.com/mockito/mockito/issues/2807;>#2807)
   See full diff in https://github.com/mockito/mockito/compare/v4.10.0...v4.11.0;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.mockito:mockito-junit-jupiter=maven=4.10.0=4.11.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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 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)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] dependabot[bot] opened a new pull request, #214: Bump dependency-check-maven from 7.4.1 to 7.4.3

2023-01-02 Thread GitBox


dependabot[bot] opened a new pull request, #214:
URL: https://github.com/apache/directory-scimple/pull/214

   Bumps 
[dependency-check-maven](https://github.com/jeremylong/DependencyCheck) from 
7.4.1 to 7.4.3.
   
   Release notes
   Sourced from https://github.com/jeremylong/DependencyCheck/releases;>dependency-check-maven's
 releases.
   
   Version 7.4.3
   Fixed
   
   Fixed NPE when analyzing version ranges in NPM (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5158;>#5158
  https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5190;>#5190)
   Resolved several FP (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5191;>#5191)
   
   See the full listing of https://github.com/jeremylong/DependencyCheck/milestone/55?closed=1;>changes.
   Version 7.4.2
   Fixed
   
   Fixes maven 3.1 compatibility issue (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5152;>#5152)
   Fixed issue with invalid node_module paths in some scans 
(https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5135;>#5135)
   Fixed missing option to disable the Poetry Analyzer in the CLI (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5160;>#5160)
   Fixed missing option to configure the OSS Index URL in the CLI (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5180;>#5180)
   Fixed NPE when analyzing version ranges in NPM (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5158;>#5158)
   Fixed issue with non-proxy host in the gradle plugin (https://github-redirect.dependabot.com/dependency-check/dependency-check-gradle/pull/298;>dependency-check/dependency-check-gradle#298)
   Resolved several FP
   
   See the full listing of https://github.com/jeremylong/DependencyCheck/milestone/54?closed=1;>changes.
   
   
   
   Changelog
   Sourced from https://github.com/jeremylong/DependencyCheck/blob/main/CHANGELOG.md;>dependency-check-maven's
 changelog.
   
   https://github.com/jeremylong/DependencyCheck/releases/tag/v7.4.3;>Version
 7.4.3 (2022-12-29)
   Fixed
   
   Fixed NPE when analyzing version ranges in NPM (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5158;>#5158
  https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5190;>#5190)
   Resolved several FP (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5191;>#5191)
   
   See the full listing of https://github.com/jeremylong/DependencyCheck/milestone/55?closed=1;>changes.
   https://github.com/jeremylong/DependencyCheck/releases/tag/v7.4.2;>Version
 7.4.2 (2022-12-28)
   Fixed
   
   Fixes maven 3.1 compatibility issue (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5152;>#5152)
   Fixed issue with invalid node_module paths in some scans 
(https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5135;>#5135)
   Fixed missing option to disable the Poetry Analyzer in the CLI (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5160;>#5160)
   Fixed missing option to configure the OSS Index URL in the CLI (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5180;>#5180)
   Fixed NPE when analyzing version ranges in NPM (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5158;>#5158)
   Fixed issue with non-proxy host in the gradle plugin (https://github-redirect.dependabot.com/dependency-check/dependency-check-gradle/pull/298;>dependency-check/dependency-check-gradle#298)
   Resolved several FP
   
   See the full listing of https://github.com/jeremylong/DependencyCheck/milestone/54?closed=1;>changes.
   
   
   
   Commits
   
   https://github.com/jeremylong/DependencyCheck/commit/b8b068d43551464bfbbed6b28b2f803a340ae477;>b8b068d
 build:prepare release v7.4.3
   https://github.com/jeremylong/DependencyCheck/commit/67465bfdcd7a20ef0fc4102be102a1a94a2d827b;>67465bf
 docs: release notes
   https://github.com/jeremylong/DependencyCheck/commit/c2ab4cac65edf1247fe8310f020db82963f3a38f;>c2ab4ca
 fix: false positives (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5191;>#5191)
   https://github.com/jeremylong/DependencyCheck/commit/e2d13893c2aaead6ee6b4df0871b3489fcedba3c;>e2d1389
 fix: Upgrade semver4j to 4.1.1 to prevent NullPointerException (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5190;>#5190)
   https://github.com/jeremylong/DependencyCheck/commit/67b1f93bba3ac787193e83f460d4057c0fa9de91;>67b1f93
 fix: false positives
   https://github.com/jeremylong/DependencyCheck/commit/c5c4de2a3e42e3cfe8db02151a8feb5828b8f0a9;>c5c4de2
 build(deps): bump mockito-core from 4.10.0 to 4.11.0 (https://github-redirect.dependabot.com/jeremylong/DependencyCheck/issues/5189;>#5189)
   https://github.com/jeremylong/DependencyCheck/commit/1e9edc8a7e1fc634c17edd1decb41aa5bfac68d6;>1e9edc8
 

[GitHub] [directory-scimple] dependabot[bot] opened a new pull request, #212: Bump version.spring-boot from 3.0.0 to 3.0.1

2022-12-26 Thread GitBox


dependabot[bot] opened a new pull request, #212:
URL: https://github.com/apache/directory-scimple/pull/212

   Bumps `version.spring-boot` from 3.0.0 to 3.0.1.
   Updates `spring-boot-maven-plugin` from 3.0.0 to 3.0.1
   
   Release notes
   Sourced from https://github.com/spring-projects/spring-boot/releases;>spring-boot-maven-plugin's
 releases.
   
   v3.0.1
   :lady_beetle: Bug Fixes
   
   Fix typo in LocalDevToolsAutoConfiguration logging https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33615;>#33615
   No warning is given when springProfile is used in a 
Logback root block https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33610;>#33610
   Auto-configure PropagationWebGraphQlInterceptor for tracing propagation 
https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33542;>#33542
   WebClient instrumentation fails with IllegalArgumentException when 
adapting to WebClientExchangeTagsProvider https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33483;>#33483
   Reactive observation auto-configuration does not declare order for 
WebFilter https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33444;>#33444
   Web server fails to start due to Resource location must not be 
null when attempting to use a PKCS 11 KeyStore https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33433;>#33433
   Actuator health endpoint for neo4j throws NoSuchElementException and 
always returns Status.DOWN https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33428;>#33428
   Anchors in YAML configuration files throw UnsupportedOperationException 
https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33404;>#33404
   ZipkinRestTemplateSender is not customizable https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33399;>#33399
   AOT doesn't work with Logstash Logback Encoder https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33387;>#33387
   Maven process-aot goal fails when release version is set in Maven 
compiler plugin https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33382;>#33382
   DependsOnDatabaseInitializationPostProcessor re-declares 
bean dependencies at native image runtime https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33374;>#33374
   @SpringBootTest now throws a NullPointerException rather 
than a helpful IllegalStateException when @SpringBootConfiguration 
is not found https://github-redirect.dependabot.com/spring-projects/spring-boot/pull/33371;>#33371
   bootBuildImage always trys to create a native image due to bootJar 
always adding a META-INF/native-image/argfile to the jar https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33363;>#33363
   
   :notebook_with_decorative_cover: Documentation
   
   Improve gradle plugin tags documentation https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33617;>#33617
   Improve maven plugin tags documentation https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33616;>#33616
   Fix typo in tomcat accesslog checkExists doc https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33512;>#33512
   Documented Java compiler level is wrong https://github-redirect.dependabot.com/spring-projects/spring-boot/pull/33505;>#33505
   Fix typo in documentation https://github-redirect.dependabot.com/spring-projects/spring-boot/pull/33453;>#33453
   Update instead of replace environment in bootBuildImage documentation https://github-redirect.dependabot.com/spring-projects/spring-boot/pull/33424;>#33424
   Update the reference docs to document the need to declare the 
native-maven-plugin when using buildpacks to create a native image https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33422;>#33422
   Document that the shutdown endpoint is not intended for use when 
deploying a war to a servlet container https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33410;>#33410
   Reinstate GraphQL testing documentaion https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33407;>#33407
   Description of NEVER in Sanitize Sensitive Values isn't 
formatted correctly https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33398;>#33398
   
   :hammer: Dependency Upgrades
   
   Upgrade to AspectJ 1.9.19 https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33586;>#33586
   Upgrade to Byte Buddy 1.12.20 https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33587;>#33587
   Upgrade to Couchbase Client 3.4.1 https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33588;>#33588
   Upgrade to Dropwizard Metrics 4.2.14 https://github-redirect.dependabot.com/spring-projects/spring-boot/issues/33589;>#33589
   Upgrade to 

[GitHub] [directory-studio] MindTooth commented on pull request #36: DIRSTUDIO-1293 | Changes for native Apple Silicon M1 build

2022-12-26 Thread GitBox


MindTooth commented on PR #36:
URL: https://github.com/apache/directory-studio/pull/36#issuecomment-1365264676

   Care to perhaps upstream this using the correct channels?   Would love to 
see this being included in a official release.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers commented on pull request #180: Bump wildfly-maven-plugin from 3.0.1.Final to 4.0.0.Final

2022-12-23 Thread GitBox


bdemers commented on PR #180:
URL: 
https://github.com/apache/directory-scimple/pull/180#issuecomment-1364052263

   @dependabot rebase


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] dependabot[bot] commented on pull request #184: Bump logback-classic from 1.2.11 to 1.4.5

2022-12-23 Thread GitBox


dependabot[bot] commented on PR #184:
URL: 
https://github.com/apache/directory-scimple/pull/184#issuecomment-1364051935

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers closed pull request #184: Bump logback-classic from 1.2.11 to 1.4.5

2022-12-23 Thread GitBox


bdemers closed pull request #184: Bump logback-classic from 1.2.11 to 1.4.5
URL: https://github.com/apache/directory-scimple/pull/184


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #211: Remove resources classes from Feature implementation

2022-12-23 Thread GitBox


bdemers merged PR #211:
URL: https://github.com/apache/directory-scimple/pull/211


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers opened a new pull request, #211: Remove resources classes from Feature implementation

2022-12-22 Thread GitBox


bdemers opened a new pull request, #211:
URL: https://github.com/apache/directory-scimple/pull/211

   Registering endpoints in a Feature is a gray area with JAX-RS. This seems to 
work with Jetty but not Wildfly.
   Based on community feedback this doesn't seem to be a valid expectation of a 
Feature.
   
   This change limits ScimpleFeature to only registering ExceptionMappers and 
Media Type related classes
   And adds util functionality in ScimResourceHelper
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] dependabot[bot] closed pull request #177: Bump tomee-maven-plugin from 9.0.0-M8 to 9.0.0.RC1

2022-12-22 Thread GitBox


dependabot[bot] closed pull request #177: Bump tomee-maven-plugin from 9.0.0-M8 
to 9.0.0.RC1
URL: https://github.com/apache/directory-scimple/pull/177


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] dependabot[bot] commented on pull request #177: Bump tomee-maven-plugin from 9.0.0-M8 to 9.0.0.RC1

2022-12-22 Thread GitBox


dependabot[bot] commented on PR #177:
URL: 
https://github.com/apache/directory-scimple/pull/177#issuecomment-1363081597

   Looks like org.apache.tomee.maven:tomee-maven-plugin is no longer a 
dependency, so this is no longer needed.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #209: Fixed Wildfly related issues

2022-12-22 Thread GitBox


bdemers merged PR #209:
URL: https://github.com/apache/directory-scimple/pull/209


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers merged pull request #210: Add enforcer rule to ensure dependencies have compatible bytecode versions

2022-12-22 Thread GitBox


bdemers merged PR #210:
URL: https://github.com/apache/directory-scimple/pull/210


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-kerby] coheigea merged pull request #114: [DIRKRB-762] The AS request appears with an NPE when preauth_required is set to false

2022-12-20 Thread GitBox


coheigea merged PR #114:
URL: https://github.com/apache/directory-kerby/pull/114


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



[GitHub] [directory-scimple] bdemers opened a new pull request, #210: Add enforcer rule to ensure dependencies have compatible bytecode versions

2022-12-20 Thread GitBox


bdemers opened a new pull request, #210:
URL: https://github.com/apache/directory-scimple/pull/210

   All non-spring modules require Java 11 (Spring modules Java 17)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org



  1   2   3   4   5   6   7   8   9   10   >