Skip to content

Commit 1dc542c

Browse files
authored
fix: bump emqx version to 5.1.3 (#202)
1 parent 64bce8b commit 1dc542c

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Diff for: .github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
path: |
8787
emqx
8888
# TODO use commit as cache key
89-
key: cache-emqx-5.1.2-${{ matrix.os }}
89+
key: cache-emqx-5.1.3-${{ matrix.os }}
9090
- name: Build EMQX
9191
if: steps.cache-emqx-restore.outputs.cache-hit != 'true'
9292
run: |
@@ -106,7 +106,7 @@ jobs:
106106
python3 -u -m bin --port-driver-only
107107
python3 -u -m bin --quick
108108
- name: Upload artifact
109-
uses: actions/upload-artifact@v1.0.0
109+
uses: actions/upload-artifact@v3
110110
with:
111111
name: Build artifact ${{matrix.os}}
112112
path: build/emqx.zip

Diff for: THIRD-PARTY-LICENSES

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
** aws-iot-device-sdk-cpp-v2; version 1.18.2 -- https://github.com/aws/aws-iot-device-sdk-cpp-v2/
2-
** EMQX; version 5.1.2 -- https://emqx.io/
2+
** EMQX; version 5.1.3 -- https://emqx.io/
33
** Erlang OTP; version 24.0 -- https://www.erlang.org/
44

55
Apache License

Diff for: emqx.commit

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7df0c6a808ee9a546fd0bfddbdc1a5b5512fdd1b
1+
10a845544323421c41a4a453961cf4dbb4765daa

Diff for: gg/rebar.config

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
%% SPDX-License-Identifier: Apache-2.0
33

44
{deps, [
5-
{emqx, {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.1.2"}, "apps/emqx"}},
6-
{emqx_ctl, {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.1.2"}, "apps/emqx_ctl"}},
7-
{emqx_utils, {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.1.2"}, "apps/emqx_utils"}},
8-
{emqx_durable_storage, {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.1.2"}, "apps/emqx_durable_storage"}}
5+
{emqx, {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.1.3"}, "apps/emqx"}},
6+
{emqx_ctl, {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.1.3"}, "apps/emqx_ctl"}},
7+
{emqx_utils, {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.1.3"}, "apps/emqx_utils"}},
8+
{emqx_durable_storage, {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.1.3"}, "apps/emqx_durable_storage"}}
99
]}.
1010

1111
{relx, [

Diff for: gg/src/gg_conf.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ get_override_conf(Conf) ->
245245

246246
%% We don't set cacertfile in ssl options. In order for this to take
247247
%% in emqx_conf_cli:load_config, we must remove it from the configuration map.
248-
%% Setting cacertfile to null, undefined, or empty string does not work (as of EMQX 5.1.2)
248+
%% Setting cacertfile to null, undefined, or empty string does not work (as of EMQX 5.1.1)
249249
no_cacertfile_workaround(#{<<"listeners">> := Val} = Conf) ->
250250
Conf#{<<"listeners">> => no_cacertfile_workaround(Val)};
251251
no_cacertfile_workaround(#{<<"ssl">> := Val} = Conf) ->

0 commit comments

Comments
 (0)