Skip to content

Commit 1b231ca

Browse files
committed
Update for Spring Boot 3.5.5
Add sample for Boot4
1 parent 4f2d201 commit 1b231ca

File tree

20 files changed

+185
-30
lines changed

20 files changed

+185
-30
lines changed

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22
Newest updates are at the top of this file
33

4+
## 3.5.5 (2025-08-27)
5+
- Update Spring dependencies
6+
- Update Narayana dependency
7+
- Add samples/s6.boot4
8+
49
## 3.5.4 (2025-07-28)
510
- Update Spring dependencies
611
- Update Testcontainers dependencies

boot3.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
ext {
33
// Our shipped version - should usually match the Spring Boot Version but
44
// there may be reasons to make it different
5-
mqStarterVersion = '3.5.4'
5+
mqStarterVersion = '3.5.5'
66

77
// Direct Dependencies - give versions here
8-
springVersion = '6.2.9'
9-
springBootVersion = '3.5.4'
8+
springVersion = '6.2.10'
9+
springBootVersion = '3.5.5'
1010

1111
pooledJmsVersion = '3.1.7'
1212
jUnitVersion = '4.13.2'

boot4.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
ext {
33
// Our shipped version - should usually match the Spring Boot Version but
44
// there may be reasons to make it different
5-
mqStarterVersion = '4.0.0-M1'
5+
mqStarterVersion = '4.0.0-M2'
66

77
// Direct Dependencies - give versions here
88
// Currently placeholders until real Spring Boot 4 versions are available.
9-
springVersion = '7.0.0-M7'
10-
springBootVersion = '4.0.0-M1'
9+
springVersion = '7.0.0-M8'
10+
springBootVersion = '4.0.0-M2'
1111

1212
pooledJmsVersion = '3.1.7'
1313
jUnitVersion = '4.13.2'

mq-jms-spring-boot-starter/src/test/java/com/ibm/mq/spring/boot/MQConfigurationPropertiesJksTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
@RunWith(SpringRunner.class)
3333
@SpringBootTest(classes={MQConfigurationPropertiesJks.class})
3434
@TestPropertySource(properties = {
35-
"logging.level.root=TRACE",
36-
"logging.level.com.ibm.mq.spring.boot=TRACE"
35+
"logging.level.root=INFO",
36+
"logging.level.com.ibm.mq.spring.boot=INFO"
3737
})
3838
public class MQConfigurationPropertiesJksTest {
3939

mq-jms-spring-boot-starter/src/test/java/com/ibm/mq/spring/boot/MQConfigurationPropertiesJndiTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
@SpringBootTest(classes={MQConfigurationPropertiesJndi.class})
3333
@RunWith(SpringRunner.class)
3434
@TestPropertySource(properties = {
35-
"logging.level.root=TRACE",
36-
"logging.level.com.ibm.mq.spring.boot=TRACE"
35+
"logging.level.root=INFO",
36+
"logging.level.com.ibm.mq.spring.boot=INFO"
3737
})
3838
public class MQConfigurationPropertiesJndiTest {
3939

mq-jms-spring-boot-starter/src/test/java/com/ibm/mq/spring/boot/MQConfigurationPropertiesTokenServerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
@RunWith(SpringRunner.class)
2929
@SpringBootTest(classes={MQConfigurationPropertiesTokenServer.class})
3030
@TestPropertySource(properties = {
31-
"logging.level.root=TRACE",
32-
"logging.level.com.ibm.mq.spring.boot=TRACE"
31+
"logging.level.root=INFO",
32+
"logging.level.com.ibm.mq.spring.boot=INFO"
3333
})
3434
public class MQConfigurationPropertiesTokenServerTest {
3535

mq-jms-spring-boot-starter/src/test/java/com/ibm/mq/spring/boot/MQPropertiesTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
@RunWith(SpringRunner.class)
3737
@SpringBootTest(classes={MQAutoConfiguration.class})
3838
@TestPropertySource(properties = {
39-
"logging.level.root=TRACE",
40-
"logging.level.com.ibm.mq.spring.boot=TRACE"
39+
"logging.level.root=INFO",
40+
"logging.level.com.ibm.mq.spring.boot=INFO"
4141
})
4242
@EnableAutoConfiguration
4343
@TestPropertySource(properties = {

samples/s1/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.5.4")
7+
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.5.5")
88
}
99
}
1010

1111
apply plugin: 'java'
1212
apply plugin: 'org.springframework.boot'
1313

1414
// The designated version should match the current version in the root of the repo
15-
ext.starterVersion = '3.5.4'
15+
ext.starterVersion = '3.5.5'
1616
// The local, flatDir configuration lets us use a modified version from
1717
// this repository without needing it released via maven
1818
repositories {

samples/s2.tls/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.5.4")
7+
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.5.5")
88
}
99
}
1010

1111
apply plugin: 'java'
1212
apply plugin: 'org.springframework.boot'
1313

1414
// The designated version should match the current version in the root of the repo
15-
ext.starterVersion = '3.5.4'
15+
ext.starterVersion = '3.5.5'
1616
// The local, flatDir configuration lets us use a modified version from
1717
// this repository without needing it released via maven
1818
repositories {

samples/s2/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.5.4")
7+
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.5.5")
88
}
99
}
1010

1111
apply plugin: 'java'
1212
apply plugin: 'org.springframework.boot'
1313

1414
// The designated version should match the current version in the root of the repo
15-
ext.starterVersion = '3.5.4'
15+
ext.starterVersion = '3.5.5'
1616
// The local, flatDir configuration lets us use a modified version from
1717
// this repository without needing it released via maven
1818
repositories {

0 commit comments

Comments
 (0)