Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Update dependency com.graphql-java:java-dataloader to v3.4.0 #68

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 31, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
com.graphql-java:java-dataloader 3.1.0 -> 3.4.0 age adoption passing confidence

Release Notes

graphql-java/java-dataloader (com.graphql-java:java-dataloader)

v3.4.0

Compare Source

Thanks to everybody who contributed to this release of Dataloader!

With this release, this library changed from using Java 8 to Java 11.

What's Changed

New Contributors

Full Changelog: graphql-java/java-dataloader@v3.3.0...v3.4.0

v3.3.0: 3.3.0

Compare Source

What's Changed

Full Changelog: graphql-java/java-dataloader@v3.2.2...v3.3.0

v3.2.2: 3.2.2

Compare Source

What's Changed

A series of small fixes to make the code more efficient

New Contributors

Full Changelog: graphql-java/java-dataloader@v3.2.1...v3.2.2

v3.2.1: 3.2.1

Compare Source

New ticker mode

There is a new mode in ScheduledDataLoaderRegistry called ticker mode that will continue to tick away and allow for chained data loader calls. See the readme for more details.

  ScheduledDataLoaderRegistry registry = ScheduledDataLoaderRegistry.newScheduledRegistry()
        .register("a", dataLoaderA)
        .register("b", dataLoaderB)
        .scheduledExecutorService(executorService)
        .schedule(Duration.ofMillis(10))
        .tickerMode(true) // ticker mode is on
        .build();

  CompletableFuture<Object> chainedCalls = dataLoaderA.load("user1")
        .thenCompose(userAsKey -> dataLoaderB.load(userAsKey));

Predicates per dataloader in ScheduledDataLoaderRegistry

ScheduledDataLoaderRegistry now has the capability to have a predicate per data loader specified as well as an overall one. This allows you to have fine control on when dataloaders get dispatched.

What's Changed

New Contributors

Full Changelog: graphql-java/java-dataloader@v3.2.0...v3.2.1

v3.2.0: 3.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: graphql-java/java-dataloader@v3.1.4...v3.2.0

v3.1.4: 3.1.4

Compare Source

What's Changed

New Contributors

Full Changelog: graphql-java/java-dataloader@v3.1.3...v3.1.4

v3.1.3: 3.1.3

Compare Source

What's Changed

New Contributors

Full Changelog: graphql-java/java-dataloader@v3.1.2...vv3.1.3

v3.1.2: 3.1.2

Compare Source

This fix release prevents excessive object allocation in the no-op ValueCache

v3.1.1: 3.1.1

Compare Source

Small bugs fixes and the ability to prime the cache


Configuration

📅 Schedule: Branch creation - "every weekday" in timezone Europe/Oslo, 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate-com.graphql-java-java-dataloader-3.x branch from c9c38f0 to 3926f4a Compare March 7, 2022 12:46
@renovate renovate bot changed the title Update dependency com.graphql-java:java-dataloader to v3.1.1 Update dependency com.graphql-java:java-dataloader to v3.1.2 Mar 7, 2022
@renovate renovate bot force-pushed the renovate-com.graphql-java-java-dataloader-3.x branch from 3926f4a to 9250868 Compare June 18, 2022 17:22
@renovate renovate bot changed the title Update dependency com.graphql-java:java-dataloader to v3.1.2 Update dependency com.graphql-java:java-dataloader to v3.1.4 Jun 18, 2022
@renovate renovate bot force-pushed the renovate-com.graphql-java-java-dataloader-3.x branch from 9250868 to d416482 Compare September 25, 2022 22:45
@renovate renovate bot changed the title Update dependency com.graphql-java:java-dataloader to v3.1.4 Update dependency com.graphql-java:java-dataloader to v3.2.0 Sep 25, 2022
@renovate renovate bot force-pushed the renovate-com.graphql-java-java-dataloader-3.x branch from d416482 to d8a1966 Compare October 27, 2023 04:48
@renovate renovate bot changed the title Update dependency com.graphql-java:java-dataloader to v3.2.0 Update dependency com.graphql-java:java-dataloader to v3.2.1 Oct 27, 2023
@renovate renovate bot force-pushed the renovate-com.graphql-java-java-dataloader-3.x branch from d8a1966 to 36856cf Compare November 24, 2023 07:25
@renovate renovate bot changed the title Update dependency com.graphql-java:java-dataloader to v3.2.1 Update dependency com.graphql-java:java-dataloader to v3.2.2 Nov 24, 2023
@renovate renovate bot force-pushed the renovate-com.graphql-java-java-dataloader-3.x branch from 36856cf to 335716c Compare April 24, 2024 09:50
@renovate renovate bot changed the title Update dependency com.graphql-java:java-dataloader to v3.2.2 Update dependency com.graphql-java:java-dataloader to v3.3.0 Apr 24, 2024
@renovate renovate bot force-pushed the renovate-com.graphql-java-java-dataloader-3.x branch from 335716c to 20f3232 Compare December 26, 2024 22:34
@renovate renovate bot changed the title Update dependency com.graphql-java:java-dataloader to v3.3.0 Update dependency com.graphql-java:java-dataloader to v3.4.0 Dec 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants