File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22Newest updates are at the top of this file
33
4+ ## 2.7.11 and 3.0.6 (2023-04-21)
5+ - Update dependencies to Spring Boot 2.7.11/3.0.6
6+ - Over-enthusiastic conversion to Jakarta names (#91 )
7+
48## 2.7.10 and 3.0.5 (2023-03-24)
59- Update dependencies to Spring Boot 2.7.10/3.0.5
610
Original file line number Diff line number Diff line change 11// This file contains the versions of Spring etc to work with a javax.jms-based system
22ext {
33 // Our shipped version - should usually match the Spring Boot Version
4- mqStarterVersion = ' 2.7.10 '
4+ mqStarterVersion = ' 2.7.11 '
55
66 // Direct Dependencies - give versions here
7- springVersion = ' 5.3.26 '
8- springBootVersion = ' 2.7.10 '
7+ springVersion = ' 5.3.27 '
8+ springBootVersion = ' 2.7.11 '
99
1010 // The pooledJms v2.x level is built against Java 11 so we can' t move there
1111 pooledJmsVersion = ' 1.2.4'
Original file line number Diff line number Diff line change 22ext {
33 // Our shipped version - should usually match the Spring Boot Version but
44 // we keep it different during the pre-GA releases
5- mqStarterVersion = ' 3.0.5 '
5+ mqStarterVersion = ' 3.0.6 '
66
77 // Direct Dependencies - give versions here
8- springVersion = ' 6.0.7 '
9- springBootVersion = ' 3.0.5 '
8+ springVersion = ' 6.0.8 '
9+ springBootVersion = ' 3.0.6 '
1010
1111 pooledJmsVersion = ' 3.1.0'
1212 jUnitVersion = ' 4.13.2'
Original file line number Diff line number Diff line change @@ -12,6 +12,12 @@ curdir=`pwd`
1212in=" $1 "
1313out=" $2 "
1414
15+ if [ -z " $in " -o -z " $out " ]
16+ then
17+ echo " Usage: makeJms3.sh inDir outDir"
18+ exit 1
19+ fi
20+
1521if [ ! -d $in ]
1622then
1723 echo " Cannot find input directory $in "
2834 # Change various package names, but the javax.naming seems to have to remain so we revert that
2935 # specific change in the final step of the filter.
3036 cat $f | \
31- sed " s/com.ibm.mq.jms/com.ibm.mq.jakarta.jms/g" | \
32- sed " s/com.ibm.msg.client/com.ibm.msg.client.jakarta/g" | \
33- sed " s/javax/jakarta/g" |
34- sed " s/jakarta.naming/javax.naming/g" > $out /$f
37+ sed " s/import com.ibm.mq.jms/import com.ibm.mq.jakarta.jms/g" | \
38+ sed " s/import com.ibm.msg.client/import com.ibm.msg.client.jakarta/g" | \
39+ sed " s/javax/jakarta/g" | \
40+ sed " s/com.ibm.mq.jakarta.jms.channel.sharing/com.ibm.mq.jms.channel.sharing/g" | \
41+ sed " s/jakarta.net.ssl/javax.net.ssl/g" | \
42+ sed " s/jakarta.naming/javax.naming/g" > $out /$f
3543done
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ apply plugin: 'java'
1313apply plugin : ' org.springframework.boot'
1414
1515// The designated version should match the current version in the root of the repo
16- ext. starterVersion = ' 2.7.10 '
16+ ext. starterVersion = ' 2.7.11 '
1717
1818// The local, flatDir configuration lets us use a modified version from
1919// this repository without needing it released via maven
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ apply plugin: 'java'
1313apply plugin : ' org.springframework.boot'
1414
1515// The designated version should match the current version in the root of the repo
16- ext. starterVersion = ' 2.7.10 '
16+ ext. starterVersion = ' 2.7.11 '
1717
1818// The local, flatDir configuration lets us use a modified version from
1919// this repository without needing it released via maven
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ apply plugin: 'java'
1313apply plugin : ' org.springframework.boot'
1414
1515// The designated version should match the current version in the root of the repo
16- ext. starterVersion = ' 2.7.10 '
16+ ext. starterVersion = ' 2.7.11 '
1717
1818// The local, flatDir configuration lets us use a modified version from
1919// this repository without needing it released via maven
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ apply plugin: 'java'
1313apply plugin : ' org.springframework.boot'
1414
1515// The designated version should match the current version in the root of the repo
16- ext. starterVersion = ' 3.0.5 '
16+ ext. starterVersion = ' 3.0.6 '
1717
1818
1919// The local, flatDir configuration lets us use a modified version from
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ apply plugin: 'java'
1313apply plugin : ' org.springframework.boot'
1414
1515// The designated version should match the current version in the root of the repo
16- ext. starterVersion = ' 2.7.10 '
16+ ext. starterVersion = ' 2.7.11 '
1717
1818// The local, flatDir configuration lets us use a modified version from
1919// this repository without needing it released via maven
You can’t perform that action at this time.
0 commit comments