|
26 | 26 | <properties>
|
27 | 27 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
28 | 28 |
|
29 |
| - <kotlin.version>2.0.0</kotlin.version> |
30 |
| - <kotlin.coroutine.version>1.9.0</kotlin.coroutine.version> |
31 |
| - <spring-boot.version>3.2.12</spring-boot.version> |
32 |
| - <flyway.version>10.12.0</flyway.version> |
| 29 | + <kotlin.version>2.1.0</kotlin.version> |
| 30 | + <kotlin.coroutine.version>1.10.1</kotlin.coroutine.version> |
| 31 | + <spring-boot.version>3.4.2</spring-boot.version> |
| 32 | + <flyway.version>11.2.0</flyway.version> |
33 | 33 | <bucket4j.version>8.14.0</bucket4j.version>
|
34 | 34 |
|
35 | 35 | <kotlin.compiler.languageVersion>2.0</kotlin.compiler.languageVersion>
|
|
281 | 281 | <args>
|
282 | 282 | <arg>-Xjvm-default=all</arg>
|
283 | 283 | <arg>-Xcontext-receivers</arg>
|
| 284 | + <arg>-Xsuppress-warning=CONTEXT_RECEIVERS_DEPRECATED</arg> |
284 | 285 | </args>
|
285 | 286 | </configuration>
|
286 | 287 | <executions>
|
|
471 | 472 | <dependency>
|
472 | 473 | <groupId>org.jetbrains.kotlinx</groupId>
|
473 | 474 | <artifactId>kotlinx-datetime-jvm</artifactId>
|
474 |
| - <version>0.5.0</version> |
| 475 | + <version>0.6.1</version> |
475 | 476 | </dependency>
|
476 | 477 | <dependency>
|
477 | 478 | <groupId>net.dv8tion</groupId>
|
|
516 | 517 | <dependency>
|
517 | 518 | <groupId>io.github.classgraph</groupId>
|
518 | 519 | <artifactId>classgraph</artifactId>
|
519 |
| - <version>4.8.175</version> |
| 520 | + <version>4.8.179</version> |
520 | 521 | </dependency>
|
521 | 522 | <dependency>
|
522 | 523 | <groupId>net.sf.trove4j</groupId>
|
|
526 | 527 | <dependency>
|
527 | 528 | <groupId>com.github.ben-manes.caffeine</groupId>
|
528 | 529 | <artifactId>caffeine</artifactId>
|
529 |
| - <version>3.1.8</version> |
| 530 | + <version>3.2.0</version> |
530 | 531 | </dependency>
|
531 | 532 | <dependency>
|
532 | 533 | <groupId>info.debatty</groupId>
|
|
536 | 537 | <dependency>
|
537 | 538 | <groupId>org.slf4j</groupId>
|
538 | 539 | <artifactId>slf4j-api</artifactId>
|
539 |
| - <version>2.0.13</version> |
| 540 | + <version>2.0.16</version> |
540 | 541 | </dependency>
|
541 | 542 | <dependency>
|
542 | 543 | <groupId>io.github.oshai</groupId>
|
543 | 544 | <artifactId>kotlin-logging-jvm</artifactId>
|
544 |
| - <version>7.0.0</version> |
| 545 | + <version>7.0.3</version> |
545 | 546 | </dependency>
|
546 | 547 | <dependency>
|
547 | 548 | <groupId>com.bucket4j</groupId>
|
|
557 | 558 | <dependency>
|
558 | 559 | <groupId>dev.reformator.stacktracedecoroutinator</groupId>
|
559 | 560 | <artifactId>stacktrace-decoroutinator-jvm</artifactId>
|
560 |
| - <version>2.4.5</version> |
| 561 | + <version>2.4.8</version> |
561 | 562 | <scope>test</scope>
|
562 | 563 | </dependency>
|
563 | 564 | <dependency>
|
|
569 | 570 | <dependency>
|
570 | 571 | <groupId>ch.qos.logback</groupId>
|
571 | 572 | <artifactId>logback-classic</artifactId>
|
572 |
| - <version>1.5.6</version> |
| 573 | + <version>1.5.16</version> |
573 | 574 | <scope>test</scope>
|
574 | 575 | </dependency>
|
575 | 576 | <dependency>
|
576 | 577 | <groupId>org.postgresql</groupId>
|
577 | 578 | <artifactId>postgresql</artifactId>
|
578 |
| - <version>42.7.3</version> |
| 579 | + <version>42.7.5</version> |
579 | 580 | <scope>test</scope>
|
580 | 581 | </dependency>
|
581 | 582 | <dependency>
|
582 | 583 | <groupId>com.h2database</groupId>
|
583 | 584 | <artifactId>h2</artifactId>
|
584 |
| - <version>2.2.224</version> |
| 585 | + <version>2.3.232</version> |
585 | 586 | <scope>test</scope>
|
586 | 587 | </dependency>
|
587 | 588 | <dependency>
|
|
599 | 600 | <dependency>
|
600 | 601 | <groupId>com.zaxxer</groupId>
|
601 | 602 | <artifactId>HikariCP</artifactId>
|
602 |
| - <version>5.1.0</version> |
| 603 | + <version>6.2.1</version> |
603 | 604 | <optional>true</optional>
|
604 | 605 | </dependency>
|
605 | 606 | <dependency>
|
|
611 | 612 | <dependency>
|
612 | 613 | <groupId>org.junit.jupiter</groupId>
|
613 | 614 | <artifactId>junit-jupiter</artifactId>
|
614 |
| - <version>5.9.2</version> |
| 615 | + <version>5.11.4</version> |
615 | 616 | <scope>test</scope>
|
616 | 617 | </dependency>
|
617 | 618 | <dependency>
|
618 | 619 | <groupId>io.mockk</groupId>
|
619 | 620 | <artifactId>mockk-jvm</artifactId>
|
620 |
| - <version>1.13.13</version> |
| 621 | + <version>1.13.16</version> |
621 | 622 | <scope>test</scope>
|
622 | 623 | </dependency>
|
623 | 624 | <dependency> <!-- Upgrade because kotlinx-coroutines-debug somehow has an ANCIENT version -->
|
624 | 625 | <groupId>net.bytebuddy</groupId>
|
625 | 626 | <artifactId>byte-buddy</artifactId>
|
626 |
| - <version>1.14.17</version> |
| 627 | + <version>1.16.1</version> |
627 | 628 | <scope>test</scope>
|
628 | 629 | </dependency>
|
629 | 630 | <dependency>
|
630 | 631 | <groupId>net.bytebuddy</groupId>
|
631 | 632 | <artifactId>byte-buddy-agent</artifactId>
|
632 |
| - <version>1.14.17</version> |
| 633 | + <version>1.16.1</version> |
633 | 634 | <scope>test</scope>
|
634 | 635 | </dependency>
|
635 | 636 | <dependency>
|
|
0 commit comments