chore: update the change log

This commit is contained in:
Shawn 2022-08-17 18:14:29 +08:00
parent 582ead1d77
commit e1615e86df
1 changed files with 5 additions and 0 deletions

View File

@ -13,7 +13,12 @@ File format:
## v4.3.19
### Bug fixes
- Fix GET `/auth_clientid` and `/auth_username` counts. [#8655](https://github.com/emqx/emqx/pull/8655)
- Fix rule SQL compare to null values always returns false. [#8743](https://github.com/emqx/emqx/pull/8743)
Before this change, the following SQL failed to match on the WHERE clause (`clientid != foo` returns false):
`SELECT 'some_var' as clientid FROM "t" WHERE clientid != foo`.
The `foo` variable is a null value, so `clientid != foo` should be evaluated as true.
## v4.3.19