You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jmeter.apache.org by "renovate-bot (via GitHub)" <gi...@apache.org> on 2023/04/29 08:18:25 UTC

[GitHub] [jmeter] renovate-bot opened a new pull request, #5865: fix(deps): update dependency org.mongodb:mongo-java-driver to v2.14.3

renovate-bot opened a new pull request, #5865:
URL: https://github.com/apache/jmeter/pull/5865

   [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)
   
   This PR contains the following updates:
   
   | Package | Change | Age | Adoption | Passing | Confidence |
   |---|---|---|---|---|---|
   | [org.mongodb:mongo-java-driver](http://www.mongodb.org) ([source](https://togithub.com/mongodb/mongo-java-driver)) | `2.11.3` -> `2.14.3` | [![age](https://badges.renovateapi.com/packages/maven/org.mongodb:mongo-java-driver/2.14.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.mongodb:mongo-java-driver/2.14.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.mongodb:mongo-java-driver/2.14.3/compatibility-slim/2.11.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.mongodb:mongo-java-driver/2.14.3/confidence-slim/2.11.3)](https://docs.renovatebot.com/merge-confidence/) |
   
   ---
   
   ### Configuration
   
   📅 **Schedule**: Branch creation - "every 3 weeks on Monday" (UTC), Automerge - At any time (no schedule defined).
   
   🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
   
   â™» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
   
   🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
   
   ---
   
    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
   
   ---
   
   This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/apache/jmeter).
   <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS40OC4yIiwidXBkYXRlZEluVmVyIjoiMzUuNDguMiJ9-->
   


-- 
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-unsubscribe@jmeter.apache.org

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


[GitHub] [jmeter] FSchumacher commented on pull request #5865: fix(deps): update dependency org.mongodb:mongo-java-driver to v2.14.3

Posted by "FSchumacher (via GitHub)" <gi...@apache.org>.
FSchumacher commented on PR #5865:
URL: https://github.com/apache/jmeter/pull/5865#issuecomment-1528724138

   I believe, that our mongodb sampler is using deprecated features and there was an enhancement discussion a few years ago.
   I think it was not possible to support the old and the new style of API at the same time in one sampler and the issue was therefore declined. Maybe we could deprecate this sampler, and either add a new one, or hope that some third party plug-in will spring into life to fill the niche.


-- 
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-unsubscribe@jmeter.apache.org

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


[GitHub] [jmeter] vlsi commented on pull request #5865: fix(deps): update dependency org.mongodb:mongo-java-driver to v2.14.3

Posted by "vlsi (via GitHub)" <gi...@apache.org>.
vlsi commented on PR #5865:
URL: https://github.com/apache/jmeter/pull/5865#issuecomment-1528723383

   There are deprecation warnings:
   
   ```
   > Task :src:protocol:mongodb:compileJava FAILED
   /Users/runner/work/jmeter/jmeter/src/protocol/mongodb/src/main/java/org/apache/jmeter/protocol/mongodb/config/MongoSourceElement.java:116: warning: [deprecation] autoConnectRetry(boolean) in Builder has been deprecated
                   .autoConnectRetry(getAutoConnectRetry())
                   ^
   /Users/runner/work/jmeter/jmeter/src/protocol/mongodb/src/main/java/org/apache/jmeter/protocol/mongodb/config/MongoSourceElement.java:119: warning: [deprecation] maxAutoConnectRetryTime(long) in Builder has been deprecated
                   .maxAutoConnectRetryTime(getMaxAutoConnectRetryTime())
                   ^
   /Users/runner/work/jmeter/jmeter/src/protocol/mongodb/src/main/java/org/apache/jmeter/protocol/mongodb/config/MongoSourceElement.java:129: warning: [deprecation] WriteConcern(int,int,boolean,boolean,boolean) in WriteConcern has been deprecated
               builder.writeConcern(new WriteConcern(
                                    ^
   error: warnings found and -Werror specified
   /Users/runner/work/jmeter/jmeter/src/protocol/mongodb/src/main/java/org/apache/jmeter/protocol/mongodb/mongo/MongoDB.java:52: warning: [deprecation] isAuthenticated() in DB has been deprecated
           boolean authenticated = db.isAuthenticated();
                                     ^
   /Users/runner/work/jmeter/jmeter/src/protocol/mongodb/src/main/java/org/apache/jmeter/protocol/mongodb/mongo/MongoDB.java:56: warning: [deprecation] authenticate(String,char[]) in DB has been deprecated
                   authenticated = db.authenticate(username, password.toCharArray());
                                     ^
   /Users/runner/work/jmeter/jmeter/src/protocol/mongodb/src/main/java/org/apache/jmeter/protocol/mongodb/sampler/MongoScriptRunner.java:54: warning: [deprecation] requestStart() in DB has been deprecated
           db.requestStart();
   ```


-- 
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-unsubscribe@jmeter.apache.org

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


Re: [PR] fix(deps): update dependency org.mongodb:mongo-java-driver to v2.14.3 [jmeter]

Posted by "vlsi (via GitHub)" <gi...@apache.org>.
vlsi commented on PR #5865:
URL: https://github.com/apache/jmeter/pull/5865#issuecomment-1825526780

   I added `@SuppressWarnings("deprecation")` so the build does not fail.
   I guess we can refactor mongo sampler later


-- 
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-unsubscribe@jmeter.apache.org

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


Re: [PR] fix(deps): update dependency org.mongodb:mongo-java-driver to v2.14.3 [jmeter]

Posted by "vlsi (via GitHub)" <gi...@apache.org>.
vlsi closed pull request #5865: fix(deps): update dependency org.mongodb:mongo-java-driver to v2.14.3
URL: https://github.com/apache/jmeter/pull/5865


-- 
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-unsubscribe@jmeter.apache.org

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