diff --git a/CHANGELOG.md b/CHANGELOG.md index 31287b3a319c7d17a1a5039c1de1349f468712f4..5e3f732793fa8b0d8bc9b99b2565f246b6364dda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # 变更记录 ## 发行版本 +### v1.1.0 - 2021-08-29 +- :sparkles: 重构,内置 http,http 和 websocket 公用端口。 +- :sparkles: 添加 mica-core 中的 HexUtil。 +- :sparkles: 添加 PayloadEncode 工具。 +- :sparkles: ServerTioConfig#share 方法添加 groupStat。 +- :sparkles: 考虑使用 udp 多播做集群。 +- :sparkles: MqttServer、MqttServerTemplate 添加 close、getChannelContext 等方法。 +- :sparkles: 重构 MqttServerConfiguration 简化代码。 +- :memo: 添加 JetBrains 连接。 +- :bug: 修复默认的消息转发器逻辑。 + ### v1.0.6 - 2021-08-21 - :sparkles: 添加订阅 topicFilter 校验。 - :sparkles: 优化压测工具,更新压测说明,添加 tcp 连接数更改文档地址。 diff --git a/mica-mqtt-core/src/test/java/net/dreamlu/iot/mqtt/core/http/MqttWebsocketTest.java b/mica-mqtt-core/src/test/java/net/dreamlu/iot/mqtt/core/http/MqttWebsocketTest.java deleted file mode 100644 index 6bcaf2efff51b06a9629da362b722ed868853ba3..0000000000000000000000000000000000000000 --- a/mica-mqtt-core/src/test/java/net/dreamlu/iot/mqtt/core/http/MqttWebsocketTest.java +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) 2019-2029, Dreamlu 卢春梦 (596392912@qq.com & dreamlu.net). - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package net.dreamlu.iot.mqtt.core.http; - -import java.io.IOException; - -/** - * mqtt websocket 子协议测试 - */ -public class MqttWebsocketTest { - - public static void main(String[] args) throws IOException { -// final int port = 8083; -// IWsMsgHandler mqttWsMsgHandler = new MqttWsMsgHandler(); -// WsServerStarter wsServerStarter = new WsServerStarter(port, mqttWsMsgHandler); -// wsServerStarter.start(); - } - -}