Browse Source
Merge branch 'main' into feature/upgrade-internationalized-number-to-version-3.6.0
pull/4112/head
Thomas Kaul
9 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with
13 additions and
6 deletions
-
CHANGELOG.md
-
apps/api/src/app/portfolio/calculator/twr/portfolio-calculator.ts
-
libs/common/src/lib/models/portfolio-snapshot.ts
-
package-lock.json
-
package.json
|
|
@ -7,13 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Upgraded `@internationalized/number` from version `3.5.2` to `3.6.0` |
|
|
|
|
|
|
|
## 2.127.0 - 2024-12-08 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
- Extended the _X-ray_ page by a summary |
|
|
|
|
|
|
|
### Changed |
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Upgraded `@internationalized/number` from version `3.5.2` to `3.6.0` |
|
|
|
- Fixed an exception in the caching of the portfolio snapshot in the portfolio calculator |
|
|
|
|
|
|
|
## 2.126.1 - 2024-12-07 |
|
|
|
|
|
|
|
|
|
@ -101,6 +101,7 @@ export class TWRPortfolioCalculator extends PortfolioCalculator { |
|
|
|
totalInterestWithCurrencyEffect, |
|
|
|
totalInvestment, |
|
|
|
totalInvestmentWithCurrencyEffect, |
|
|
|
errors: [], |
|
|
|
historicalData: [], |
|
|
|
totalLiabilitiesWithCurrencyEffect: new Big(0), |
|
|
|
totalValuablesWithCurrencyEffect: new Big(0) |
|
|
|
|
|
@ -13,7 +13,7 @@ export class PortfolioSnapshot { |
|
|
|
@Type(() => Big) |
|
|
|
currentValueInBaseCurrency: Big; |
|
|
|
|
|
|
|
errors?: AssetProfileIdentifier[]; |
|
|
|
errors: AssetProfileIdentifier[]; |
|
|
|
|
|
|
|
hasErrors: boolean; |
|
|
|
|
|
|
|
|
|
@ -1,12 +1,12 @@ |
|
|
|
{ |
|
|
|
"name": "ghostfolio", |
|
|
|
"version": "2.126.1", |
|
|
|
"version": "2.127.0", |
|
|
|
"lockfileVersion": 3, |
|
|
|
"requires": true, |
|
|
|
"packages": { |
|
|
|
"": { |
|
|
|
"name": "ghostfolio", |
|
|
|
"version": "2.126.1", |
|
|
|
"version": "2.127.0", |
|
|
|
"hasInstallScript": true, |
|
|
|
"license": "AGPL-3.0", |
|
|
|
"dependencies": { |
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
{ |
|
|
|
"name": "ghostfolio", |
|
|
|
"version": "2.126.1", |
|
|
|
"version": "2.127.0", |
|
|
|
"homepage": "https://ghostfol.io", |
|
|
|
"license": "AGPL-3.0", |
|
|
|
"repository": "https://github.com/ghostfolio/ghostfolio", |
|
|
|