Skip to content

Commit ac28a88

Browse files
committed
docs(2.1.5): 2.1.5
1 parent e1f3b1a commit ac28a88

File tree

4 files changed

+71
-11
lines changed

4 files changed

+71
-11
lines changed

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@ Jt-808协议服务端。
1717

1818
## Compatibility
1919

20-
支持 **spring-boot-2.x
21-
** [![spring-boot-2.x](https://img.shields.io/maven-central/v/io.github.hylexus.jt/jt-808-server-spring-boot-starter-boot2.svg?label=spring-boot-2.x)](https://search.maven.org/search?q=g:%22io.github.hylexus.jt%22%20AND%20a:%22jt-808-server-spring-boot-starter-boot2%22)
22-
**spring-boot-3.x
23-
** [![spring-boot-3.x](https://img.shields.io/maven-central/v/io.github.hylexus.jt/jt-808-server-spring-boot-starter.svg?label=spring-boot-3.x)](https://search.maven.org/search?q=g:%22io.github.hylexus.jt%22%20AND%20a:%22jt-808-server-spring-boot-starter%22)
20+
支持 **spring-boot-2.x** [![spring-boot-2.x](https://img.shields.io/maven-central/v/io.github.hylexus.jt/jt-808-server-spring-boot-starter-boot2.svg?label=spring-boot-2.x)](https://search.maven.org/search?q=g:%22io.github.hylexus.jt%22%20AND%20a:%22jt-808-server-spring-boot-starter-boot2%22)
21+
**spring-boot-3.x** [![spring-boot-3.x](https://img.shields.io/maven-central/v/io.github.hylexus.jt/jt-808-server-spring-boot-starter.svg?label=spring-boot-3.x)](https://search.maven.org/search?q=g:%22io.github.hylexus.jt%22%20AND%20a:%22jt-808-server-spring-boot-starter%22)
2422

2523
更多有关版本兼容性的信息,请移步: [入门--兼容性](https://hylexus.github.io/jt-framework/v2/jt-808/guide/quick-start/compatibility.html)
2624

@@ -141,7 +139,7 @@ Jt-808协议服务端。
141139
- gradle
142140

143141
```groovy
144-
implementation group: 'io.github.hylexus.jt', name: 'jt-808-server-spring-boot-starter-boot2', version: "2.1.4"
142+
implementation group: 'io.github.hylexus.jt', name: 'jt-808-server-spring-boot-starter-boot2', version: "2.1.5"
145143
```
146144

147145
- maven
@@ -151,7 +149,7 @@ implementation group: 'io.github.hylexus.jt', name: 'jt-808-server-spring-boot-s
151149
<dependency>
152150
<groupId>io.github.hylexus.jt</groupId>
153151
<artifactId>jt-808-server-spring-boot-starter-boot2</artifactId>
154-
<version>2.1.4</version>
152+
<version>2.1.5</version>
155153
</dependency>
156154
```
157155

docs/src/v2/jt-808/guide/quick-start/quick-start.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ icon: launch
3737
<dependency>
3838
<groupId>io.github.hylexus.jt</groupId>
3939
<artifactId>jt-808-server-spring-boot-starter-boot2</artifactId>
40-
<version>2.1.4</version>
40+
<version>2.1.5</version>
4141
</dependency>
4242
```
4343

4444
@tab:active gradle
4545

4646
```groovy
47-
implementation 'io.github.hylexus.jt:jt-808-server-spring-boot-starter-boot2:2.1.4'
47+
implementation 'io.github.hylexus.jt:jt-808-server-spring-boot-starter-boot2:2.1.5'
4848
```
4949

5050
:::
@@ -62,14 +62,14 @@ implementation 'io.github.hylexus.jt:jt-808-server-spring-boot-starter-boot2:2.1
6262
<dependency>
6363
<groupId>io.github.hylexus.jt</groupId>
6464
<artifactId>jt-808-server-spring-boot-starter</artifactId>
65-
<version>2.1.4</version>
65+
<version>2.1.5</version>
6666
</dependency>
6767
```
6868

6969
@tab:active gradle
7070

7171
```groovy
72-
implementation 'io.github.hylexus.jt:jt-808-server-spring-boot-starter:2.1.4'
72+
implementation 'io.github.hylexus.jt:jt-808-server-spring-boot-starter:2.1.5'
7373
```
7474

7575
:::

docs/src/v2/release-notes/latest.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,68 @@ icon: branch
44

55
# 2.1.x
66

7+
## 2.1.5(2024-07-20)
8+
9+
### ⭐ New Features
10+
11+
`BitOperator` 新增方法:
12+
13+
- `mapIf(...)`
14+
- `setIf(...)`
15+
- `setWithStatus(...)`
16+
- `setWithStatusIf(...)`
17+
- `setRangeIf(...)`
18+
- `resetIf(...)`
19+
- `resetRangeIf(...)`
20+
- `unsignedLongValue(...)`
21+
- `rangedUnsignedIntValue(...)`
22+
- `rangedUnsignedLongValue(...)`
23+
24+
### 🐞 Bug Fixes
25+
26+
`BitOperator` 操作 `offset >= 31``bit` 时溢出的问题,涉及到的方法如下:
27+
28+
- `BitOperator#set(int offset)`
29+
- `BitOperator#reset(int offset)`
30+
- `BitOperatorget(int offset)`
31+
32+
### 🔨 Dependency Upgrades
33+
34+
- `oaks-common-utils` 升级到 **1.0.7**
35+
36+
## 2.1.4(2024-06-08)
37+
38+
### ⭐ New Features
39+
40+
- 完善 `Jt808MsgBuilder`
41+
- 新增 `RebuildableByteBufJt808MsgBuilder`
42+
43+
### 🔨 Dependency Upgrades
44+
45+
- `Gradle` : **8.6** 升级到 **8.8**
46+
- `spring-boot-dependencies`
47+
- **2.7.14** 升级到 **2.7.18**
48+
- **3.1.2** 升级到 **3.3.0**
49+
- `spring-cloud-dependencies`
50+
- **2021.0.8** 升级到 **2021.0.9**
51+
- **2022.0.4** 升级到 **2023.0.2**
52+
53+
### 📔 Documentation
54+
55+
- 新增消息加解密相关文档
56+
- 新增 `RebuildableByteBufJt808MsgBuilder` 相关文档
57+
58+
## 2.1.4-rc.4(2024-06-02)
59+
60+
### ⭐ New Features
61+
62+
初步支持消息加解密,详情见: [#82](https://github.com/hylexus/jt-framework/issues/82)
63+
64+
- 新增 `Jt808MsgEncryptionHandler`
65+
- `@Jt808ResponseBody` 新增 `encryptionType(int)` 属性
66+
- `Jt808Response` 新增 `encryptionType(int)` 属性
67+
- `Jt808MsgBuilder` 新增 `encryptionType(int)` 属性
68+
769
## 2.1.4-rc.3(2024-03-24)
870

971
### 🐞 Bug Fixes

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
org.gradle.jvmargs=-Dio.netty.allocator.type=unpooled
22
projectGroup=io.github.hylexus.jt
3-
projectVersion=2.1.4
3+
projectVersion=2.1.5
44
# scm
55
projectScmUrl=https://github.com/hylexus/jt-framework
66
projectScmConnection=scm:git:git@github.com:hylexus/jt-framework.git

0 commit comments

Comments
 (0)