Browse Source

Merge branch 'main' into bugfix/unused-custom-asset-profiles-created-by-activities-import

pull/7673/head
Thomas Kaul 1 week ago
committed by GitHub
parent
commit
b9c33aacb0
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      .github/workflows/build-code.yml
  2. 4
      CHANGELOG.md
  3. 4
      libs/ui/src/lib/portfolio-filter-form/portfolio-filter-form.component.html
  4. 10
      package-lock.json
  5. 4
      package.json

2
.github/workflows/build-code.yml

@ -13,7 +13,7 @@ jobs:
strategy: strategy:
matrix: matrix:
node_version: node_version:
- 22.22.1 - 22.23.2
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4

4
CHANGELOG.md

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
### Changed
- Upgraded the `Node.js` engine from version `>=22.18.0` to `>=22.22.3` (`package.json`)
### Fixed ### Fixed
- Fixed an issue in the activities import where an unused custom asset profile was created if the related activities were not imported - Fixed an issue in the activities import where an unused custom asset profile was created if the related activities were not imported

4
libs/ui/src/lib/portfolio-filter-form/portfolio-filter-form.component.html

@ -22,9 +22,7 @@
@for (holding of holdings(); track holding.assetProfile.name) { @for (holding of holdings(); track holding.assetProfile.name) {
<mat-option [value]="holding"> <mat-option [value]="holding">
<div class="line-height-1 text-truncate"> <div class="line-height-1 text-truncate">
<span <span>{{ holding.assetProfile.name }}</span>
><b>{{ holding.assetProfile.name }}</b></span
>
<br /> <br />
<small class="text-muted" <small class="text-muted"
>{{ holding.assetProfile.symbol }} · >{{ holding.assetProfile.symbol }} ·

10
package-lock.json

@ -141,7 +141,7 @@
"@types/jest": "30.0.0", "@types/jest": "30.0.0",
"@types/jsonpath": "0.2.4", "@types/jsonpath": "0.2.4",
"@types/lodash": "4.17.24", "@types/lodash": "4.17.24",
"@types/node": "22.15.17", "@types/node": "22.20.1",
"@types/papaparse": "5.5.2", "@types/papaparse": "5.5.2",
"@types/passport-google-oauth20": "2.0.17", "@types/passport-google-oauth20": "2.0.17",
"@types/passport-openidconnect": "0.1.3", "@types/passport-openidconnect": "0.1.3",
@ -171,7 +171,7 @@
"webpack-cli": "7.1.0" "webpack-cli": "7.1.0"
}, },
"engines": { "engines": {
"node": ">=22.18.0" "node": ">=22.22.3"
} }
}, },
"node_modules/@adobe/css-tools": { "node_modules/@adobe/css-tools": {
@ -15023,9 +15023,9 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/@types/node": { "node_modules/@types/node": {
"version": "22.15.17", "version": "22.20.1",
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.17.tgz", "resolved": "https://registry.npmjs.org/@types/node/-/node-22.20.1.tgz",
"integrity": "sha512-wIX2aSZL5FE+MR0JlvF87BNVrtFWf6AE6rxSE9X7OwnVvoyCQjpzSRJ+M87se/4QCkCiebQAqrJ0y6fwIyi7nw==", "integrity": "sha512-EANqOCF9QFyra+4pfxUcX9STKJpCLjMbObVzljIJomAWSnuSIEAvyzEU53GaajbXJEgdh0iEcPL+DGvpUd4k1Q==",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"undici-types": "~6.21.0" "undici-types": "~6.21.0"

4
package.json

@ -185,7 +185,7 @@
"@types/jest": "30.0.0", "@types/jest": "30.0.0",
"@types/jsonpath": "0.2.4", "@types/jsonpath": "0.2.4",
"@types/lodash": "4.17.24", "@types/lodash": "4.17.24",
"@types/node": "22.15.17", "@types/node": "22.20.1",
"@types/papaparse": "5.5.2", "@types/papaparse": "5.5.2",
"@types/passport-google-oauth20": "2.0.17", "@types/passport-google-oauth20": "2.0.17",
"@types/passport-openidconnect": "0.1.3", "@types/passport-openidconnect": "0.1.3",
@ -215,6 +215,6 @@
"webpack-cli": "7.1.0" "webpack-cli": "7.1.0"
}, },
"engines": { "engines": {
"node": ">=22.18.0" "node": ">=22.22.3"
} }
} }

Loading…
Cancel
Save