Browse Source

Merge branch 'main' into feature/optimize-get-range-query-in-market-data-service

pull/4527/head
Thomas Kaul 4 months ago
committed by GitHub
parent
commit
b3ba556ff9
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      CHANGELOG.md
  2. 5
      apps/client/src/app/components/user-account-membership/user-account-membership.html
  3. 1366
      package-lock.json
  4. 34
      package.json

2
CHANGELOG.md

@ -11,7 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Deactivated asset profiles automatically on delisting in the _Yahoo Finance_ service
- Optimized the query of the data range functionality (`getRange()`) in the market data service
- Upgraded `Nx` from version `20.7.1` to `20.8.0`
- Upgraded `prisma` from version `6.5.0` to `6.6.0`
- Upgraded `storybook` from version `8.4.7` to `8.6.12`
## 2.151.0 - 2025-04-11

5
apps/client/src/app/components/user-account-membership/user-account-membership.html

@ -4,10 +4,7 @@
<div class="align-items-center d-flex flex-column">
<gf-membership-card
[expiresAt]="user?.subscription?.expiresAt | date: defaultDateFormat"
[hasPermissionToCreateApiKey]="
hasPermissionToCreateApiKey &&
user?.settings?.isExperimentalFeatures
"
[hasPermissionToCreateApiKey]="hasPermissionToCreateApiKey"
[name]="user?.subscription?.type"
(generateApiKeyClicked)="onGenerateApiKey()"
/>

1366
package-lock.json

File diff suppressed because it is too large

34
package.json

@ -155,22 +155,22 @@
"@eslint/js": "9.24.0",
"@nestjs/schematics": "10.2.3",
"@nestjs/testing": "10.4.15",
"@nx/angular": "20.7.1",
"@nx/cypress": "20.7.1",
"@nx/eslint-plugin": "20.7.1",
"@nx/jest": "20.7.1",
"@nx/js": "20.7.1",
"@nx/module-federation": "20.7.1",
"@nx/nest": "20.7.1",
"@nx/node": "20.7.1",
"@nx/storybook": "20.7.1",
"@nx/web": "20.7.1",
"@nx/workspace": "20.7.1",
"@nx/angular": "20.8.0",
"@nx/cypress": "20.8.0",
"@nx/eslint-plugin": "20.8.0",
"@nx/jest": "20.8.0",
"@nx/js": "20.8.0",
"@nx/module-federation": "20.8.0",
"@nx/nest": "20.8.0",
"@nx/node": "20.8.0",
"@nx/storybook": "20.8.0",
"@nx/web": "20.8.0",
"@nx/workspace": "20.8.0",
"@schematics/angular": "19.2.1",
"@storybook/addon-essentials": "8.4.7",
"@storybook/addon-interactions": "8.4.7",
"@storybook/angular": "8.4.7",
"@storybook/core-server": "8.4.7",
"@storybook/addon-essentials": "8.6.12",
"@storybook/addon-interactions": "8.6.12",
"@storybook/angular": "8.6.12",
"@storybook/core-server": "8.6.12",
"@trivago/prettier-plugin-sort-imports": "5.2.2",
"@types/big.js": "6.2.2",
"@types/cache-manager": "4.0.6",
@ -193,7 +193,7 @@
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-preset-angular": "14.4.2",
"nx": "20.7.1",
"nx": "20.8.0",
"prettier": "3.5.3",
"prettier-plugin-organize-attributes": "1.0.0",
"prisma": "6.6.0",
@ -201,7 +201,7 @@
"react-dom": "18.2.0",
"replace-in-file": "8.3.0",
"shx": "0.3.4",
"storybook": "8.4.7",
"storybook": "8.6.12",
"ts-jest": "29.1.0",
"ts-node": "10.9.2",
"tslib": "2.8.1",

Loading…
Cancel
Save