Zaiming (Stone) Shi
|
f69702b82e
|
docs: delete typo-named changelog file
|
2023-09-29 14:03:30 +02:00 |
firest
|
ffd9a35d69
|
chore: Add missing changelog
|
2023-09-26 23:33:47 +08:00 |
Thales Macedo Garitezi
|
aae59f1efd
|
Merge pull request #11682 from thalesmg/fix-file-logger-type-r53-20230925
fix(file_logger): change file logger type depending on rotation size
|
2023-09-26 10:22:36 -03:00 |
Thales Macedo Garitezi
|
fdcd73e20c
|
fix(file_logger): change file logger type depending on rotation size
Fixes https://emqx.atlassian.net/browse/EMQX-11036
From `logger_disk_log_h:open_disk_log`:
```erlang
open_disk_log(Name,File,Type,MaxNoBytes,MaxNoFiles) ->
case filelib:ensure_dir(File) of
ok ->
Size =
if Type==halt -> MaxNoBytes;
Type==wrap -> {MaxNoBytes,MaxNoFiles} %% <-------
end,
Opts = [{name, Name},
{file, File},
{size, Size},
{type, Type},
{linkto, self()},
{repair, false},
{format, external},
{notify, true},
{quiet, true},
{mode, read_write}],
case disk_log:open(Opts) of
```
Affects all file loggers (audit included):
```
% emqx_config_logger:update_log_handler/1 -> ok
iex(emqx@127.0.0.1)14> Config override: log.file.emqx_audit is updated, but failed to add handler: {handler_not_added,
{badarg,
[{size,
{infinity,
10}},
{type,
wrap},
{linkto,
<0.1952.0>},
{repair,
false},
{format,
external},
{notify,
true},
{quiet,
true},
{mode,
read_write}]}}
```
|
2023-09-26 09:04:44 -03:00 |
Zaiming (Stone) Shi
|
a9df99746a
|
docs: add changelog for PR 11661
|
2023-09-25 16:55:22 +02:00 |
Ivan Dyachkov
|
0a61d08a0f
|
Merge pull request #11651 from id/0921-sync-r52-to-master
sync r52 to master
|
2023-09-21 12:31:24 +02:00 |
William Yang
|
3a5227198e
|
Merge pull request #11642 from qzhuyan/dev/william/quicer-0.0.200
quicer 0.0.200
|
2023-09-21 12:20:14 +02:00 |
Ivan Dyachkov
|
105bebc250
|
chore: merge release-52 into master
|
2023-09-21 10:22:47 +02:00 |
zhongwencool
|
9521e11d39
|
Merge pull request #11584 from zhongwencool/telemetry-error-on-windows
fix: telemetry report error on windows
|
2023-09-21 09:08:55 +08:00 |
William Yang
|
da626f6d29
|
feat(quic): bump to quicer 0.0.200 and emqtt 1.9.0
|
2023-09-20 16:43:15 +02:00 |
Zaiming (Stone) Shi
|
65818740f3
|
Merge pull request #11622 from zmstone/0917-upgrade-gen_rpc-to-3.1.0
chore(gen_rpc): upgrade from 2.8.1 to 3.1.0
|
2023-09-19 10:22:53 +02:00 |
Zaiming (Stone) Shi
|
abbee4bc47
|
fix(esockd): upgrade esockd from 5.9.6 to 5.9.7
|
2023-09-17 19:44:04 +02:00 |
Zaiming (Stone) Shi
|
1960dbd970
|
docs: add changelogs for pr 11622
|
2023-09-17 19:13:22 +02:00 |
Zaiming (Stone) Shi
|
a9682c2989
|
Merge pull request #11605 from zmstone/0913-lower-severity-level-for-CMD-override-warnings
0913 lower severity level for cmd override warnings
|
2023-09-16 11:32:07 +02:00 |
Zaiming (Stone) Shi
|
062854eff7
|
docs: add changelog
|
2023-09-15 16:07:23 +02:00 |
Zaiming (Stone) Shi
|
2bf583087b
|
docs: add changelog for pr 11605
|
2023-09-13 20:55:42 +02:00 |
SergeTupchiy
|
cf334d5542
|
Merge pull request #11567 from SergeTupchiy/EMQX-10835-increase-graceful-stop-timeout
fix(nodetool): increase graceful stop timeout
|
2023-09-13 13:22:39 +03:00 |
Serge Tupchii
|
a336300ab5
|
chore: add changelog
|
2023-09-13 10:54:50 +03:00 |
Serge Tupchii
|
9b3f88aeeb
|
feat(nodetool): print shutdown status messages while EMQX is stopping
|
2023-09-12 19:55:16 +03:00 |
Serge Tupchii
|
9de9631d6b
|
fix(nodetool): increase graceful stop timeout, handle and report `{badrpc, timeout}` error
|
2023-09-12 19:55:16 +03:00 |
Thales Macedo Garitezi
|
223d47a6ac
|
Merge branch 'master' into sync-m-r52-20230911
|
2023-09-11 16:04:28 -03:00 |
zhongwencool
|
887a74a6cb
|
fix: telemetry report error on windows
|
2023-09-11 16:48:30 +08:00 |
Zaiming (Stone) Shi
|
abda3b130a
|
chore: delete releaed change logs
|
2023-09-08 16:39:17 +02:00 |
Thales Macedo Garitezi
|
e089fda260
|
Merge pull request #11568 from thalesmg/republish-props-m-20230905
feat(republish): allow templating mqtt properties
|
2023-09-07 16:43:00 -03:00 |
Thales Macedo Garitezi
|
78c5a779d7
|
feat(republish): allow templating mqtt properties
Fixes https://emqx.atlassian.net/browse/EMQX-10912
|
2023-09-06 09:54:02 -03:00 |
Zaiming (Stone) Shi
|
e794143ae1
|
Merge remote-tracking branch 'origin/release-52' into 0906-sync-release-52-to-master
|
2023-09-06 09:08:22 +02:00 |
ieQu1
|
01a128878f
|
chore(mria): Bump mria to 0.6.1
|
2023-09-05 11:08:32 +02:00 |
Kjell Winblad
|
52546ac50f
|
Merge pull request #11522 from kjellwinblad/kjell/fix/EMQX-10778
fix: bad error message when rule engine schema name is too long
|
2023-09-04 11:05:55 +02:00 |
Ilya Averyanov
|
240afecd69
|
Merge pull request #11487 from savonarola/0821-optimize-bcrypt
feat: reduce bcrypt rounds to a usable value
|
2023-09-04 10:12:40 +03:00 |
Ilya Averyanov
|
90156befb5
|
feat: improve bcrypt usability
* limit salt rounds to usable values
* update bcrypt library to enable concurrent bcrypt hash calculation
|
2023-09-01 17:36:11 +03:00 |
Thales Macedo Garitezi
|
4dfbc859f9
|
fix(plugins): update plugin order on whole cluster
Fixes https://emqx.atlassian.net/browse/EMQX-10879
|
2023-08-30 16:39:52 -03:00 |
Thales Macedo Garitezi
|
1cab687153
|
Merge pull request #11540 from thalesmg/fix-cert-path-utf8-r52-20230829
fix(bridge): validate bridge name before attempting to convert certificates
|
2023-08-30 09:45:55 -03:00 |
lafirest
|
8b3a9072f9
|
Merge pull request #11532 from lafirest/fix/frame_parse
fix(frame): improve some error reasons when parsing invalid packet
|
2023-08-30 19:10:45 +08:00 |
firest
|
804443ba40
|
chore: fix typos
|
2023-08-30 11:22:09 +08:00 |
Thales Macedo Garitezi
|
0f297ffef4
|
fix(bridge): validate bridge name before attempting to convert certificates
Fixes https://emqx.atlassian.net/browse/EMQX-10865
|
2023-08-29 16:32:01 -03:00 |
firest
|
6722722522
|
fix(frame): improve some error reasons when parsing invalid packet
|
2023-08-29 10:53:20 +08:00 |
zhongwencool
|
2967b709ae
|
chore: add changelog for PR(11531)
|
2023-08-29 08:20:48 +08:00 |
Paulo Zulato
|
cc3ba18734
|
fix: increment dropped message counter when bridge is unhealthy
Fixes https://emqx.atlassian.net/browse/EMQX-10767
|
2023-08-28 19:47:11 -03:00 |
Serge Tupchii
|
0072749143
|
fix(emqx_trace): don't download empty trace log file
Closes: EMQX-10274
|
2023-08-28 19:25:55 +03:00 |
zhongwencool
|
fe37842b11
|
chore: update 11523 changelog
|
2023-08-28 11:27:32 +08:00 |
Kjell Winblad
|
00b2712f29
|
docs: changelog entry for improved too long schema name fix
|
2023-08-25 11:09:44 +02:00 |
zhongwencool
|
fc1738188e
|
fix: packets_connack_sent is not incremented if the ack_flag field in the CONNACK packet is non-zero
|
2023-08-25 15:18:34 +08:00 |
Kjell Winblad
|
aad9b1c27d
|
Merge pull request #11493 from kjellwinblad/kjell/fix/11488
fix: HTTP API /api/v5/publish schema
|
2023-08-24 17:46:29 +02:00 |
zhongwencool
|
2322b27542
|
Merge pull request #11497 from zhongwencool/prometheus-metrics
Prometheus metrics
|
2023-08-24 12:06:32 +08:00 |
zhongwencool
|
8d2be27ade
|
chore: add changlog for 11466
|
2023-08-24 06:46:50 +08:00 |
Serge Tupchii
|
bac0f7107c
|
chore: bump OTP to 25.3.2-2 and EMQX builder to 5.1-4
|
2023-08-23 19:35:36 +03:00 |
zhongwencool
|
d287b736ec
|
chore: add changelog for 11497
|
2023-08-23 17:02:30 +08:00 |
zhongwencool
|
ae10415fc3
|
feat: disabled the Erlang VM Prometheus exporter by default to improve performance and security
|
2023-08-23 09:03:22 +08:00 |
Kjell Winblad
|
19acd82436
|
docs: fix change log entry according to @thalesmg's suggestion
Co-authored-by: Thales Macedo Garitezi <thalesmg@gmail.com>
|
2023-08-22 16:41:11 +02:00 |
Kjell Winblad
|
88f7c2b4d8
|
docs: changelog entry for HTTP publish bad request schema
|
2023-08-22 15:48:27 +02:00 |