diff --git a/docs/en_US/release_notes_9_16.rst b/docs/en_US/release_notes_9_16.rst index 339d609ec7f..d49ee7c52df 100644 --- a/docs/en_US/release_notes_9_16.rst +++ b/docs/en_US/release_notes_9_16.rst @@ -52,6 +52,7 @@ Bug fixes | `Issue #9677 `_ - Fix the Unlogged table toggle in table properties not generating any ALTER TABLE ... SET LOGGED/UNLOGGED statement. | `Issue #9762 `_ - Fix the "Cannot read properties of undefined (reading 'map')" crash in the desktop runtime when a menu refresh is triggered before the application menus have been received. | `Issue #9766 `_ - Fixed an issue where a server's custom foreground colour was not applied to the object counts (children count) and column type labels shown in the object explorer. + | `Issue #9806 `_ - Fixed an issue where generated font and image filenames contained a double dot (e.g. ``Roboto-Bold..ttf``) due to the webpack asset filename template. | `Issue #9828 `_ - Fix tool calls failing against OpenAI-compatible providers that emit empty/null name, arguments, or id fields in streaming continuation deltas. | `Issue #9829 `_ - Fixed installation on Python 3.9 (e.g. RHEL/Rocky/AlmaLinux 8 and 9) failing with "No module named 'pkg_resources'" by pinning setuptools below the version that dropped pkg_resources for Python 3.9. | `Issue #9854 `_ - Fix the JSON editor stripping trailing fractional zeros (e.g. 10.00) and rewriting large integers in jsonb values, which corrupted unmodified numbers when saving. diff --git a/web/webpack.config.js b/web/webpack.config.js index d05adcd8beb..6e5c6877980 100644 --- a/web/webpack.config.js +++ b/web/webpack.config.js @@ -290,14 +290,14 @@ module.exports = [{ }, }, generator: { - filename: 'img/[name].[ext]', + filename: 'img/[name][ext]', }, exclude: /vendor/, },{ test: /\.(eot|ttf|woff|woff2)$/, type: 'asset/resource', generator: { - filename: 'fonts/[name].[ext]', + filename: 'fonts/[name][ext]', }, include: [ /node_modules/,