Branch: refs/heads/master
Home:
https://github.com/Checkmk/checkmk
Commit: 95724cfd437eba7e68ffa1a32411310e2bb28aa7
https://github.com/Checkmk/checkmk/commit/95724cfd437eba7e68ffa1a32411310e2…
Author: Benedikt Seidl <benedikt.seidl(a)checkmk.com>
Date: 2024-04-30 (Tue, 30 Apr 2024)
Changed paths:
M packages/cmk-frontend/package-lock.json
M packages/cmk-frontend/package.json
Log Message:
-----------
update dependencies
had to pin @types/d3-hierarchy, otherwise you would see a lot of
typescript errors, starting with:
node_modules/@types/d3-hierarchy/index.d.ts:67:5 - error TS2687: All declarations of
'x' must have identical modifiers.
67 x?: number | undefined;
node_modules/@types/d3-hierarchy/index.d.ts:79:5 - error TS2687: All declarations of
'y' must have identical modifiers.
79 y?: number | undefined;
Change-Id: Ic6abd568b65a6f347380f388f455955f0414a642
Commit: dc668fcccb7a8970553e6d29a5cfa988194d450e
https://github.com/Checkmk/checkmk/commit/dc668fcccb7a8970553e6d29a5cfa9881…
Author: Benedikt Seidl <benedikt.seidl(a)checkmk.com>
Date: 2024-04-30 (Tue, 30 Apr 2024)
Changed paths:
M packages/cmk-frontend/package-lock.json
M packages/cmk-frontend/package.json
M packages/cmk-frontend/webpack.config.js
Log Message:
-----------
replace copy-webpack-plugin with filemanager-webpack-plugin
copy-webpack-plugin was quite slow
Change-Id: I9b800d16a076aee49857e92571dc3fcfa0816b88
Commit: 1421786d019f39b4e721084398dc80ffafb1933a
https://github.com/Checkmk/checkmk/commit/1421786d019f39b4e721084398dc80ffa…
Author: Joerg Herbel <joerg.herbel(a)checkmk.com>
Date: 2024-04-30 (Tue, 30 Apr 2024)
Changed paths:
M cmk/gui/i18n.py
M tests/unit/cmk/gui/test_i18n.py
Log Message:
-----------
Avoid translating the emptry string
The empty string is reserved for header data in PO files:
https://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
"An empty untranslated-string is reserved to contain the header entry
with the meta information".
Hence, the localization of the empty string is the header data, which we
certainly do not want to display.
Prior to 2.3, this was not an issue, because we only used `_` or `_l`
for localization. Hence, instead of eg. `_("")`, one could directly use
`""`. However, as of 2.3, the new APIs use dedicated classes such as
`Title` to mark localizable strings. Using `""` instead of
`Title("")`
is a type error. Therefore, we now explicitly avoid translating the
empty string.
CMK-17236
Change-Id: I8f96ad19baeb500e0aa85e7750ff9b123104b1ae
Compare:
https://github.com/Checkmk/checkmk/compare/e71b2de9781e...1421786d019f
To unsubscribe from these emails, change your notification settings at
https://github.com/Checkmk/checkmk/settings/notifications