From 698370fd9b6233c7e8c84f9e254c2b71ee7f5c0b Mon Sep 17 00:00:00 2001 From: Jan K9f Date: Tue, 3 Jun 2025 10:31:50 +0200 Subject: [PATCH 1/3] chore: Add ci label to labeler --- .gitea/labeler.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/labeler.yml b/.gitea/labeler.yml index 880aa6d..a26346d 100644 --- a/.gitea/labeler.yml +++ b/.gitea/labeler.yml @@ -7,3 +7,8 @@ backend: - changed-files: - any-glob-to-any-file: - "backend/**" + +ci: + - changed-files: + - any-glob-to-any-file: + - ".gitea/**" From fa96cf89418229e1c51dd3c2deb63e9689f5b745 Mon Sep 17 00:00:00 2001 From: Jan K9f Date: Tue, 3 Jun 2025 10:29:20 +0200 Subject: [PATCH 2/3] chore: Add sizes for prs --- .gitea/size.yml | 19 +++++++++++++++++++ .gitea/workflows/size.yml | 17 +++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 .gitea/size.yml create mode 100644 .gitea/workflows/size.yml diff --git a/.gitea/size.yml b/.gitea/size.yml new file mode 100644 index 0000000..c13c0ba --- /dev/null +++ b/.gitea/size.yml @@ -0,0 +1,19 @@ +buckets: + - maxSize: 80 + label: size/small + comment: null + - maxSize: 200 + label: size/medium + comment: null + - maxSize: 2000 + label: size/large + comment: > + 👮‍♀️⚠️ This is a friendly reminder that the diff size of this PR is bigger than + 200 lines we aim for. Please consider splitting this PR into more digestible pieces! + - maxSize: Infinity + label: size/huge + comment: > + 👮‍♀️🛑 This PR's diff size is quite huge. + Hopefully you know what you're doing. + If you did not commit a lot of autogenerated files intentionally, + there are few good reasons for this. diff --git a/.gitea/workflows/size.yml b/.gitea/workflows/size.yml new file mode 100644 index 0000000..63a1acc --- /dev/null +++ b/.gitea/workflows/size.yml @@ -0,0 +1,17 @@ +name: Label PRs based on size + +on: [pull_request] + +jobs: + add_pr_size_label: + runs-on: ubuntu-latest + name: Check PR size + + steps: + - name: Check out code + uses: actions/checkout@v4 + + - name: Label and comment PR + uses: boschresearch/pr-size-labeler@v5.0.1 + with: + bucketConfigFile: ".gitea/size.yml" From ddd24b63bf2d7ce09382dcac67a70727c560e269 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 3 Jun 2025 08:47:04 +0000 Subject: [PATCH 3/3] 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") }