Skip to content

Commit

Permalink
Bump the all-dependencies (14 updates) (#850)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>

* AccessToken -> access_token

* bumper revision fra 3.0 >  3.4

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Henning Solberg <[email protected]>
  • Loading branch information
dependabot[bot] and hensol authored Dec 16, 2024
1 parent adfc561 commit 145872f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ private fun genererAccessToken(
return oAuth2AccessTokenService
.getAccessToken(
clientProperties,
).accessToken ?: throw JwtTokenValidatorException("Kunne ikke hente accesstoken")
).access_token ?: throw JwtTokenValidatorException("Kunne ikke hente accesstoken")
}

/**
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<url>https://github.com/navikt/familie-felles</url>

<properties>
<revision>3.0</revision>
<revision>3.4</revision>
<sha1/>
<changelist>-SNAPSHOT</changelist>
<java.version>21</java.version>
Expand All @@ -22,12 +22,12 @@
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<kontrakter.version>3.0_20241102131210_d65efd1</kontrakter.version>
<kontrakter.version>3.0_20241206132953_18ef9da</kontrakter.version>
<kotest.version>5.9.1</kotest.version>
<kotlin.version>2.0.21</kotlin.version>
<kotlin.version>2.1.0</kotlin.version>
<mockk.version>1.13.13</mockk.version>
<nav.security.token.version>5.0.5</nav.security.token.version>
<wiremock.version>3.9.2</wiremock.version>
<nav.security.token.version>5.0.13</nav.security.token.version>
<wiremock.version>3.10.0</wiremock.version>
</properties>

<modules>
Expand All @@ -50,7 +50,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>3.3.5</version>
<version>3.4.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -324,7 +324,7 @@
<dependency>
<groupId>com.pinterest.ktlint</groupId>
<artifactId>ktlint-cli</artifactId>
<version>1.4.1</version>
<version>1.5.0</version>
</dependency>
<!-- additional 3rd party ruleset(s) can be specified here -->
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -652,11 +652,11 @@ fun <T> Tidslinje<T>.hentVerdier(): List<T?> = this.innhold.slåSammenLike().map
fun <T> Tidslinje<T>.tilTidslinjePerioderMedDato(): List<TidslinjePeriodeMedDato<T>> {
val (tidslinjePeriodeMedLocalDateListe, _) =
this.innhold.fold(Pair(emptyList<TidslinjePeriodeMedDato<T>>(), 0L)) {
(
tidslinjePeriodeMedLocalDateListe: List<TidslinjePeriodeMedDato<T>>,
tidFraStarttidspunktFom: Long,
),
tidslinjePeriode,
(
tidslinjePeriodeMedLocalDateListe: List<TidslinjePeriodeMedDato<T>>,
tidFraStarttidspunktFom: Long,
),
tidslinjePeriode,
->
val tidFraStarttidspunktTilNesteFom = tidFraStarttidspunktFom + tidslinjePeriode.lengde

Expand Down
2 changes: 1 addition & 1 deletion unleash/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>io.getunleash</groupId>
<artifactId>unleash-client-java</artifactId>
<version>9.2.4</version>
<version>9.2.6</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ private fun genererAccessToken(
clientConfigurationProperties,
grantType,
)
return oAuth2AccessTokenService.getAccessToken(clientProperties).accessToken ?: throw JwtTokenMissingException()
return oAuth2AccessTokenService.getAccessToken(clientProperties).access_token ?: throw JwtTokenMissingException()
}

/**
Expand Down

0 comments on commit 145872f

Please sign in to comment.