From 186a86523111293f55752bd498de2c135f4167ec Mon Sep 17 00:00:00 2001 From: Jan K9f Date: Mon, 2 Jun 2025 14:44:20 +0200 Subject: [PATCH 1/2] chore: Add labeler --- .gitea/labeler.yml | 9 +++++++++ .gitea/workflows/labeler.yml | 14 ++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .gitea/labeler.yml create mode 100644 .gitea/workflows/labeler.yml diff --git a/.gitea/labeler.yml b/.gitea/labeler.yml new file mode 100644 index 0000000..880aa6d --- /dev/null +++ b/.gitea/labeler.yml @@ -0,0 +1,9 @@ +frontend: + - changed-files: + - any-glob-to-any-file: + - "frontend/**" + +backend: + - changed-files: + - any-glob-to-any-file: + - "backend/**" diff --git a/.gitea/workflows/labeler.yml b/.gitea/workflows/labeler.yml new file mode 100644 index 0000000..e177ec3 --- /dev/null +++ b/.gitea/workflows/labeler.yml @@ -0,0 +1,14 @@ +name: "Pull Request Labeler" +on: + pull_request_target: + +jobs: + labeler: + permissions: + contents: read + pull-requests: write + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v5 + with: + configuration-path: ".gitea/labeler.yml" From 7facef90654b5975af0f56ed0c10502d2414f937 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 3 Jun 2025 08:01:50 +0000 Subject: [PATCH 2/2] fix(deps): update dependencies (major and minor) --- backend/build.gradle.kts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/backend/build.gradle.kts b/backend/build.gradle.kts index 1d73b90..548c9aa 100644 --- a/backend/build.gradle.kts +++ b/backend/build.gradle.kts @@ -39,7 +39,7 @@ repositories { } dependencies { - implementation("com.stripe:stripe-java:29.1.0") + implementation("com.stripe:stripe-java:29.2.0") implementation("org.springframework.boot:spring-boot-starter-data-jpa") implementation("org.springframework.boot:spring-boot-starter-web") compileOnly("org.projectlombok:lombok") @@ -47,13 +47,13 @@ dependencies { testImplementation("org.springframework.boot:spring-boot-starter-test") testRuntimeOnly("org.junit.platform:junit-platform-launcher") implementation("org.springframework.boot:spring-boot-starter-security") - implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server:3.4.5") - implementation("org.springframework.boot:spring-boot-starter-oauth2-client:3.4.5") + implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server:3.5.0") + implementation("org.springframework.boot:spring-boot-starter-oauth2-client:3.5.0") runtimeOnly("org.postgresql:postgresql") implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.8") - implementation("io.jsonwebtoken:jjwt-api:0.11.5") - runtimeOnly("io.jsonwebtoken:jjwt-impl:0.11.5") - runtimeOnly("io.jsonwebtoken:jjwt-jackson:0.11.5") + implementation("io.jsonwebtoken:jjwt-api:0.12.6") + runtimeOnly("io.jsonwebtoken:jjwt-impl:0.12.6") + runtimeOnly("io.jsonwebtoken:jjwt-jackson:0.12.6") implementation("org.springframework.boot:spring-boot-starter-mail") }