Skip to content

fix: bump emqx version to 5.1.2 #199

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
path: |
emqx
# TODO use commit as cache key
key: cache-emqx-5.1.1-${{ matrix.os }}
key: cache-emqx-5.1.2-${{ matrix.os }}
- name: Build EMQX
if: steps.cache-emqx-restore.outputs.cache-hit != 'true'
run: |
Expand Down
2 changes: 1 addition & 1 deletion THIRD-PARTY-LICENSES
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
** aws-iot-device-sdk-cpp-v2; version 1.18.2 -- https://github.com/aws/aws-iot-device-sdk-cpp-v2/
** EMQX; version 5.1.1 -- https://emqx.io/
** EMQX; version 5.1.2 -- https://emqx.io/
** Erlang OTP; version 24.0 -- https://www.erlang.org/

Apache License
Expand Down
2 changes: 1 addition & 1 deletion emqx.commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
659980f69d1d4529ab79970ad9b345c898597269
7df0c6a808ee9a546fd0bfddbdc1a5b5512fdd1b
2 changes: 1 addition & 1 deletion gg/src/gg_conf.erl
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ get_override_conf(Conf) ->

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