@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## 2.171.0-beta.2 - 2025-06-14
## 2.171.0-beta.3 - 2025-06-15
### Added
@ -47,7 +47,9 @@ async function bootstrap() {
app.setGlobalPrefix('api', {
exclude: [
'sitemap.xml',
...SUPPORTED_LANGUAGE_CODES.map((lang) => `/${lang}/*wildcard`)
...SUPPORTED_LANGUAGE_CODES.map((languageCode) => {
return `/${languageCode}/*wildcard`;
})
]
});
app.useGlobalPipes(
@ -1,12 +1,12 @@
{
"name": "ghostfolio",
"version": "2.171.0-beta.2",
"version": "2.171.0-beta.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"hasInstallScript": true,
"license": "AGPL-3.0",
"dependencies": {
@ -1,6 +1,6 @@
"homepage": "https://ghostfol.io",
"repository": "https://github.com/ghostfolio/ghostfolio",