Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Bump the gradle group with 9 updates #159

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 18, 2023

Bumps the gradle group with 9 updates:

Package From To
com.github.navikt:dagpenger-events 20231204.ee1cc3 2023081713361692272216.01ab7c590338
com.expediagroup:graphql-kotlin-client 6.4.0 7.0.2
com.expediagroup:graphql-kotlin-ktor-client 6.4.0 7.0.2
com.expediagroup:graphql-kotlin-client-jackson 6.4.0 7.0.2
io.getunleash:unleash-client-java 8.0.0 9.2.0
no.nav.dagpenger:sts-klient 2023.11.27-13.50.d478414fd10d 2023.12.13-22.05.4909146325c9
org.slf4j:slf4j-api 2.0.7 2.0.9
no.nav.security:mock-oauth2-server 0.5.7 2.1.0
com.expediagroup.graphql 6.4.0 7.0.2

Updates com.github.navikt:dagpenger-events from 20231204.ee1cc3 to 2023081713361692272216.01ab7c590338

Release notes

Sourced from com.github.navikt:dagpenger-events's releases.

20231212.b2f698

What's Changed

Full Changelog: navikt/dagpenger-events@20231211.6dd0c1...20231212.b2f698

20231211.6dd0c1

Full Changelog: navikt/dagpenger-events@20231204.ee1cc3...20231211.6dd0c1

20231204.0033e3

Full Changelog: navikt/dagpenger-events@20231204.c16b77...20231204.0033e3

Commits

Updates com.expediagroup:graphql-kotlin-client from 6.4.0 to 7.0.2

Release notes

Sourced from com.expediagroup:graphql-kotlin-client's releases.

7.0.2

Patch Changes

  • Rewrite CompletableFutureExtension.allSettled to not use CompletableFuture.supplyAsync (#1872) @​roookeee
  • fix(federation): skip fieldset validation when it includes type reference (#1861) @​dariuszkuc
  • fix(federation): update federated hooks to support flow (#1864) @​dariuszkuc

Other Changes

7.0.1

Patch Changes

Other Changes

7.0.0

🎉 GraphQL Kotlin 7.0.0!

After over a hundred PRs and numerous pre-releases, we are pleased to announce the 7.0.0 release!

Major Changes and Features

Ktor GraphQL Server Plugin

Ktor is a lightweight web framework from Jetbrains. Its built in Kotlin using Coroutines and follows a functional configuration style where we have to explicitly configure our server with the features that we want to use. Starting with GraphQL Kotlin v7, we now provide an official Ktor Server Plugin to simplify your GraphQL Ktor server development!

class HelloWorldQuery : Query {
    fun hello(): String = "Hello World!"
}
fun Application.graphQLModule() {
install(GraphQL) {
schema {
packages = listOf("com.example")
queries = listOf(
HelloWorldQuery()
)
}
}
</tr></table>

... (truncated)

Commits
  • 716809e fix(federation): skip fieldset validation when it includes type reference (#1...
  • 8796749 fix(federation): update federated hooks to support flow (#1864)
  • f056e9d chore: update to latest Gradle and Maven versions (#1875)
  • 4c6a625 Rewrite CompletableFutureExtension.allSettled to not use CompletableFuture.su...
  • 3ec66c1 chore: Update plugin goals in documentation (#1871)
  • 8648080 fix: Ktor Subscriptions wrong url #1863 (#1865)
  • 742b49f open class KtorGraphQLRequestParser (#1856)
  • 14787d8 chore: update graphiql 3.0.6 (#1855)
  • 46f2994 chore: bump min node version to 18 (#1849)
  • d204b39 chore: update docusaurus to point to v7 docs as latest (#1848)
  • Additional commits viewable in compare view

Updates com.expediagroup:graphql-kotlin-ktor-client from 6.4.0 to 7.0.2

Release notes

Sourced from com.expediagroup:graphql-kotlin-ktor-client's releases.

7.0.2

Patch Changes

  • Rewrite CompletableFutureExtension.allSettled to not use CompletableFuture.supplyAsync (#1872) @​roookeee
  • fix(federation): skip fieldset validation when it includes type reference (#1861) @​dariuszkuc
  • fix(federation): update federated hooks to support flow (#1864) @​dariuszkuc

Other Changes

7.0.1

Patch Changes

Other Changes

7.0.0

🎉 GraphQL Kotlin 7.0.0!

After over a hundred PRs and numerous pre-releases, we are pleased to announce the 7.0.0 release!

Major Changes and Features

Ktor GraphQL Server Plugin

Ktor is a lightweight web framework from Jetbrains. Its built in Kotlin using Coroutines and follows a functional configuration style where we have to explicitly configure our server with the features that we want to use. Starting with GraphQL Kotlin v7, we now provide an official Ktor Server Plugin to simplify your GraphQL Ktor server development!

class HelloWorldQuery : Query {
    fun hello(): String = "Hello World!"
}
fun Application.graphQLModule() {
install(GraphQL) {
schema {
packages = listOf("com.example")
queries = listOf(
HelloWorldQuery()
)
}
}
</tr></table>

... (truncated)

Commits
  • 716809e fix(federation): skip fieldset validation when it includes type reference (#1...
  • 8796749 fix(federation): update federated hooks to support flow (#1864)
  • f056e9d chore: update to latest Gradle and Maven versions (#1875)
  • 4c6a625 Rewrite CompletableFutureExtension.allSettled to not use CompletableFuture.su...
  • 3ec66c1 chore: Update plugin goals in documentation (#1871)
  • 8648080 fix: Ktor Subscriptions wrong url #1863 (#1865)
  • 742b49f open class KtorGraphQLRequestParser (#1856)
  • 14787d8 chore: update graphiql 3.0.6 (#1855)
  • 46f2994 chore: bump min node version to 18 (#1849)
  • d204b39 chore: update docusaurus to point to v7 docs as latest (#1848)
  • Additional commits viewable in compare view

Updates com.expediagroup:graphql-kotlin-client-jackson from 6.4.0 to 7.0.2

Release notes

Sourced from com.expediagroup:graphql-kotlin-client-jackson's releases.

7.0.2

Patch Changes

  • Rewrite CompletableFutureExtension.allSettled to not use CompletableFuture.supplyAsync (#1872) @​roookeee
  • fix(federation): skip fieldset validation when it includes type reference (#1861) @​dariuszkuc
  • fix(federation): update federated hooks to support flow (#1864) @​dariuszkuc

Other Changes

7.0.1

Patch Changes

Other Changes

7.0.0

🎉 GraphQL Kotlin 7.0.0!

After over a hundred PRs and numerous pre-releases, we are pleased to announce the 7.0.0 release!

Major Changes and Features

Ktor GraphQL Server Plugin

Ktor is a lightweight web framework from Jetbrains. Its built in Kotlin using Coroutines and follows a functional configuration style where we have to explicitly configure our server with the features that we want to use. Starting with GraphQL Kotlin v7, we now provide an official Ktor Server Plugin to simplify your GraphQL Ktor server development!

class HelloWorldQuery : Query {
    fun hello(): String = "Hello World!"
}
fun Application.graphQLModule() {
install(GraphQL) {
schema {
packages = listOf("com.example")
queries = listOf(
HelloWorldQuery()
)
}
}
</tr></table>

... (truncated)

Commits
  • 716809e fix(federation): skip fieldset validation when it includes type reference (#1...
  • 8796749 fix(federation): update federated hooks to support flow (#1864)
  • f056e9d chore: update to latest Gradle and Maven versions (#1875)
  • 4c6a625 Rewrite CompletableFutureExtension.allSettled to not use CompletableFuture.su...
  • 3ec66c1 chore: Update plugin goals in documentation (#1871)
  • 8648080 fix: Ktor Subscriptions wrong url #1863 (#1865)
  • 742b49f open class KtorGraphQLRequestParser (#1856)
  • 14787d8 chore: update graphiql 3.0.6 (#1855)
  • 46f2994 chore: bump min node version to 18 (#1849)
  • d204b39 chore: update docusaurus to point to v7 docs as latest (#1848)
  • Additional commits viewable in compare view

Updates io.getunleash:unleash-client-java from 8.0.0 to 9.2.0

Release notes

Sourced from io.getunleash:unleash-client-java's releases.

unleash-client-java-9.2.0

  • 9d762e0e - [maven-release-plugin] prepare release unleash-client-java-9.2.0
  • dde0dde8 - chore(format): spotless apply
  • f64bc6b3 - fix: add deprecated method for old hashing algorithm (#233)
  • 1f1b8c4c - chore(update): Bring spring-boot example up to speed with Spring Boot 3.2 and unleash-client 9.1.1 (#228)
  • beff1b89 - feat: Added the possibility to add a custom startupExceptionHandler (#227)
  • db65acb9 - chore: amend release generation (#226)
  • 4e8f5ad7 - [maven-release-plugin] prepare for next development iteration

unleash-client-java-9.1.1

What's Changed

Full Changelog: Unleash/unleash-client-java@unleash-client-java-9.1.0...unleash-client-java-9.1.1

unleash-client-java-9.1.0

  • 95bc59da - [maven-release-plugin] prepare for next development iteration
  • e50bbf7d - fix: roll back spotless to 2.28 to still support java 8
  • c984c23d - feat: Obey HTTP Status codes from upstream. (#221)
  • 57d45d7a - fix: prevent failure count going below zero (#222)
  • 061277bd - [maven-release-plugin] prepare release unleash-client-java-9.1.0

unleash-client-java-9.0.0

Breaking

Minor updaes

  • e3ababfe - [maven-release-plugin] prepare for next development iteration
  • 4193824a - docs: Updated docs to reference actually existing classes (#219)
  • 6b8890c8 - chore(format): updated spotless
  • 75d61984 - [maven-release-plugin] prepare release unleash-client-java-9.0.0

unleash-client-java-8.4.0

  • 6c04e900 - [maven-release-plugin] prepare for next development iteration
  • 00442ef5 - feat: make sure gpg entry expects passphrase in environment variable (#213)
  • 54bf433f - docs: make synchronousFetchOnInitialisation in option more clear (#217)
  • def11ea7 - docs: Added link to feature flag best practices article (#216)
  • f74e2524 - feat: Handle dependent feature toggles (#218)
  • dd8c8803 - [maven-release-plugin] prepare release unleash-client-java-8.4.0

unleash-client-java-8.3.1

  • 83e6fc08 - [maven-release-plugin] prepare for next development iteration
  • 0374a866 - task: Added workflow for releasing new versions from GHA (#209)
  • 2a2d17bc - fix: when using multiple strategies some of them might not be evaluated (#211)
  • b98487d9 - [maven-release-plugin] prepare release unleash-client-java-8.3.1

unleash-client-java-8.3.0

  • 5d5033da - [maven-release-plugin] prepare for next development iteration

... (truncated)

Commits
  • 9d762e0 [maven-release-plugin] prepare release unleash-client-java-9.2.0
  • dde0dde chore(format): spotless apply
  • f64bc6b fix: add deprecated method for old hashing algorithm (#233)
  • 1f1b8c4 chore(update): Bring spring-boot example up to speed with Spring Boot 3.2 and...
  • beff1b8 feat: Added the possibility to add a custom startupExceptionHandler (#227)
  • db65acb chore: amend release generation (#226)
  • 4e8f5ad [maven-release-plugin] prepare for next development iteration
  • 675f9e8 [maven-release-plugin] prepare release unleash-client-java-9.1.1
  • b55056d chore: allow to fail if unavailable (#225)
  • 2cf0127 [maven-release-plugin] prepare for next development iteration
  • Additional commits viewable in compare view

Updates no.nav.dagpenger:sts-klient from 2023.11.27-13.50.d478414fd10d to 2023.12.13-22.05.4909146325c9

Updates org.slf4j:slf4j-api from 2.0.7 to 2.0.9

Updates no.nav.security:mock-oauth2-server from 0.5.7 to 2.1.0

Release notes

Sourced from no.nav.security:mock-oauth2-server's releases.

2.1.0

What's Changed

🚀 Features

  • Regex based matching in RequestMappingTokenCallback and request parameters used as variables inside claims (#578) @​kvokacka

⬆️ Dependency upgrades

2.0.1

What's Changed

🚀 Features

  • feat: basic client authentication for token exchange grant (#564) @​valdemon

🐛 Bug Fixes

  • fix: use hostname instead of canonicalHostname (#586) @​tronghn
    • this should resolve issues with inconsistent URLs for Windows users
  • fix(httpRequest): naming clash, update nimbus sdk to latest (#576) @​ybelMekk

⬆️ Dependency upgrades

... (truncated)

Commits
  • bbb1fdf chore(deps): bump ch.qos.logback:logback-classic from 1.4.13 to 1.4.14 (#604)
  • 52160a6 chore(deps): bump actions/stale from 8 to 9 (#605)
  • b896913 chore(deps): bump ktorVersion from 2.3.6 to 2.3.7 (#606)
  • b449a92 chore(deps): bump ch.qos.logback:logback-classic from 1.4.11 to 1.4.13 (#602)
  • 8a07264 chore(deps): bump actions/setup-java from 3 to 4 (#603)
  • f0295bd chore(deps): bump JamesIves/github-pages-deploy-action (#601)
  • b8609ec chore(deps): bump springBootVersion from 3.1.5 to 3.2.0 (#596)
  • 4f99951 chore(deps): bump jvm from 1.9.20 to 1.9.21 (#597)
  • 18582a1 chore(deps): bump org.jetbrains.kotlin:kotlin-test-junit5 (#598)
  • 4f1442d - request parameters can be used as variables inside claims (#578)
  • Additional commits viewable in compare view

Updates com.expediagroup.graphql from 6.4.0 to 7.0.2

Release notes

Sourced from com.expediagroup.graphql's releases.

7.0.2

Patch Changes

  • Rewrite CompletableFutureExtension.allSettled to not use CompletableFuture.supplyAsync (#1872) @​roookeee
  • fix(federation): skip fieldset validation when it includes type reference (#1861) @​dariuszkuc
  • fix(federation): update federated hooks to support flow (#1864) @​dariuszkuc

Other Changes

7.0.1

Patch Changes

Other Changes

7.0.0

🎉 GraphQL Kotlin 7.0.0!

After over a hundred PRs and numerous pre-releases, we are pleased to announce the 7.0.0 release!

Major Changes and Features

Ktor GraphQL Server Plugin

Ktor is a lightweight web framework from Jetbrains. Its built in Kotlin using Coroutines and follows a functional configuration style where we have to explicitly configure our server with the features that we want to use. Starting with GraphQL Kotlin v7, we now provide an official Ktor Server Plugin to simplify your GraphQL Ktor server development!

class HelloWorldQuery : Query {
    fun hello(): String = "Hello World!"
}
fun Application.graphQLModule() {
install(GraphQL) {
schema {
packages = listOf("com.example")
queries = listOf(
HelloWorldQuery()
)
}
}
</tr></table>

... (truncated)

Commits
  • 716809e fix(federation): skip fieldset validation when it includes type reference (#1...
  • 8796749 fix(federation): update federated hooks to support flow (#1864)
  • f056e9d chore: update to latest Gradle and Maven versions (#1875)
  • 4c6a625 Rewrite CompletableFutureExtension.allSettled to not use CompletableFuture.su...
  • 3ec66c1 chore: Update plugin goals in documentation (#1871)
  • 8648080 fix: Ktor Subscriptions wrong url #1863 (#1865)
  • 742b49f open class KtorGraphQLRequestParser (#1856)
  • 14787d8 chore: update graphiql 3.0.6 (#1855)
  • 46f2994 chore: bump min node version to 18 (#1849)
  • d204b39 chore: update docusaurus to point to v7 docs as latest (#1848)
  • Additional commits viewable in 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 commands and options

You can trigger Dependabot actions by commenting on this PR:

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

Bumps the gradle group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [com.github.navikt:dagpenger-events](https://github.com/navikt/dagpenger-events) | `20231204.ee1cc3` | `2023081713361692272216.01ab7c590338` |
| [com.expediagroup:graphql-kotlin-client](https://github.com/ExpediaGroup/graphql-kotlin) | `6.4.0` | `7.0.2` |
| [com.expediagroup:graphql-kotlin-ktor-client](https://github.com/ExpediaGroup/graphql-kotlin) | `6.4.0` | `7.0.2` |
| [com.expediagroup:graphql-kotlin-client-jackson](https://github.com/ExpediaGroup/graphql-kotlin) | `6.4.0` | `7.0.2` |
| [io.getunleash:unleash-client-java](https://github.com/Unleash/unleash-client-java) | `8.0.0` | `9.2.0` |
| no.nav.dagpenger:sts-klient | `2023.11.27-13.50.d478414fd10d` | `2023.12.13-22.05.4909146325c9` |
| org.slf4j:slf4j-api | `2.0.7` | `2.0.9` |
| [no.nav.security:mock-oauth2-server](https://github.com/navikt/mock-oauth2-server) | `0.5.7` | `2.1.0` |
| [com.expediagroup.graphql](https://github.com/ExpediaGroup/graphql-kotlin) | `6.4.0` | `7.0.2` |


Updates `com.github.navikt:dagpenger-events` from 20231204.ee1cc3 to 2023081713361692272216.01ab7c590338
- [Release notes](https://github.com/navikt/dagpenger-events/releases)
- [Commits](https://github.com/navikt/dagpenger-events/commits)

Updates `com.expediagroup:graphql-kotlin-client` from 6.4.0 to 7.0.2
- [Release notes](https://github.com/ExpediaGroup/graphql-kotlin/releases)
- [Commits](ExpediaGroup/graphql-kotlin@6.4.0...7.0.2)

Updates `com.expediagroup:graphql-kotlin-ktor-client` from 6.4.0 to 7.0.2
- [Release notes](https://github.com/ExpediaGroup/graphql-kotlin/releases)
- [Commits](ExpediaGroup/graphql-kotlin@6.4.0...7.0.2)

Updates `com.expediagroup:graphql-kotlin-client-jackson` from 6.4.0 to 7.0.2
- [Release notes](https://github.com/ExpediaGroup/graphql-kotlin/releases)
- [Commits](ExpediaGroup/graphql-kotlin@6.4.0...7.0.2)

Updates `io.getunleash:unleash-client-java` from 8.0.0 to 9.2.0
- [Release notes](https://github.com/Unleash/unleash-client-java/releases)
- [Changelog](https://github.com/Unleash/unleash-client-java/blob/main/CHANGELOG.md)
- [Commits](Unleash/unleash-client-java@unleash-client-java-8.0.0...unleash-client-java-9.2.0)

Updates `no.nav.dagpenger:sts-klient` from 2023.11.27-13.50.d478414fd10d to 2023.12.13-22.05.4909146325c9

Updates `org.slf4j:slf4j-api` from 2.0.7 to 2.0.9

Updates `no.nav.security:mock-oauth2-server` from 0.5.7 to 2.1.0
- [Release notes](https://github.com/navikt/mock-oauth2-server/releases)
- [Commits](navikt/mock-oauth2-server@0.5.7...2.1.0)

Updates `com.expediagroup.graphql` from 6.4.0 to 7.0.2
- [Release notes](https://github.com/ExpediaGroup/graphql-kotlin/releases)
- [Commits](ExpediaGroup/graphql-kotlin@6.4.0...7.0.2)

---
updated-dependencies:
- dependency-name: com.github.navikt:dagpenger-events
  dependency-type: direct:production
  dependency-group: gradle
- dependency-name: com.expediagroup:graphql-kotlin-client
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gradle
- dependency-name: com.expediagroup:graphql-kotlin-ktor-client
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gradle
- dependency-name: com.expediagroup:graphql-kotlin-client-jackson
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gradle
- dependency-name: io.getunleash:unleash-client-java
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gradle
- dependency-name: no.nav.dagpenger:sts-klient
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: org.slf4j:slf4j-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle
- dependency-name: no.nav.security:mock-oauth2-server
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gradle
- dependency-name: com.expediagroup.graphql
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gradle
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner December 18, 2023 13:00
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Dec 18, 2023
@geiralund geiralund closed this Dec 18, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 18, 2023

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

@geiralund geiralund deleted the dependabot/gradle/gradle-8a1ea547a2 branch December 18, 2023 13:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant