From 646bcdae962cdcc6a798628dba92674f8ebbc109 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 05:45:04 +0000 Subject: [PATCH] build(deps): bump the mybatis group across 1 directory with 2 updates Bumps the mybatis group with 2 updates in the / directory: [com.github.pagehelper:pagehelper-spring-boot-starter](https://github.com/pagehelper/pagehelper-spring-boot) and [org.mybatis.spring.boot:mybatis-spring-boot-starter](https://github.com/mybatis/spring-boot-starter). Updates `com.github.pagehelper:pagehelper-spring-boot-starter` from 4.1.0 to 4.1.1 - [Release notes](https://github.com/pagehelper/pagehelper-spring-boot/releases) - [Commits](https://github.com/pagehelper/pagehelper-spring-boot/compare/4.1.0...4.1.1) Updates `org.mybatis.spring.boot:mybatis-spring-boot-starter` from 4.0.1 to 4.1.0 - [Release notes](https://github.com/mybatis/spring-boot-starter/releases) - [Commits](https://github.com/mybatis/spring-boot-starter/compare/mybatis-spring-boot-4.0.1...mybatis-spring-boot-4.1.0) --- updated-dependencies: - dependency-name: com.github.pagehelper:pagehelper-spring-boot-starter dependency-version: 4.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: mybatis - dependency-name: org.mybatis.spring.boot:mybatis-spring-boot-starter dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: mybatis ... Signed-off-by: dependabot[bot] --- core/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/build.gradle.kts b/core/build.gradle.kts index c66b121..2731662 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -87,7 +87,7 @@ dependencies { // generic "AOP" abstraction). Same artifact contents, new ID. api("org.springframework.boot:spring-boot-starter-aspectj") api("org.springframework.data:spring-data-commons") - api("com.github.pagehelper:pagehelper-spring-boot-starter:4.1.0") + api("com.github.pagehelper:pagehelper-spring-boot-starter:4.1.1") // MyBatis Spring Boot Starter is exposed as api because PageHelper // requires MyBatis at runtime. PageHelper 4.0.0 brings @@ -97,7 +97,7 @@ dependencies { // transitive that some other dep brings in. Override with // `exclude(group = "org.mybatis.spring.boot")` + a direct declaration // if you need a different MyBatis line for some reason. - api("org.mybatis.spring.boot:mybatis-spring-boot-starter:4.0.1") + api("org.mybatis.spring.boot:mybatis-spring-boot-starter:4.1.0") // Silences "cannot find javax.annotation.Nonnull" cosmetic warnings emitted when // resolving Spring's @Nullable. Not exposed to consumers (compileOnly).