Browse Source

Merge branch 'main' into docs/japanese-localization-7147

pull/7678/head
Thomas Kaul 1 week ago
committed by GitHub
parent
commit
0a5f8286c1
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      CHANGELOG.md
  2. 11
      libs/ui/src/lib/account-selector/account-selector.component.html
  3. 22
      package-lock.json
  4. 2
      package.json

2
CHANGELOG.md

@ -9,7 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Extended the account selector options to include the platform and currency
- Improved the language localization for Japanese (`ja`)
- Upgraded `yahoo-finance2` from version `4.0.0` to `4.0.2`
## 3.56.0 - 2026-08-20

11
libs/ui/src/lib/account-selector/account-selector.component.html

@ -30,14 +30,23 @@
@for (account of sortedAccounts(); track account.id) {
<mat-option [value]="account.id">
<div class="d-flex">
<div class="align-items-center d-flex">
<gf-entity-logo
class="mr-1"
[hasPlaceholder]="true"
[tooltip]="account.platform?.name ?? ''"
[url]="account.platform?.url ?? ''"
/>
<div class="line-height-1">
<span>{{ account.name }}</span>
<br />
<small class="text-muted">
@if (account.platform?.name) {
{{ account.platform?.name }} ·
}
{{ account.currency }}</small
>
</div>
</div>
</mat-option>
}

22
package-lock.json

@ -98,7 +98,7 @@
"twitter-api-v2": "1.29.0",
"undici": "8.5.0",
"uuid": "14.0.1",
"yahoo-finance2": "4.0.0",
"yahoo-finance2": "4.0.2",
"zod": "4.4.3",
"zone.js": "0.16.1"
},
@ -34064,9 +34064,9 @@
}
},
"node_modules/tough-cookie": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-6.0.1.tgz",
"integrity": "sha512-LktZQb3IeoUWB9lqR5EWTHgW/VTITCXg4D21M+lvybRVdylLrRMnqaIONLVb5mav8vM19m44HIcGq4qASeu2Qw==",
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-6.0.2.tgz",
"integrity": "sha512-exgYmnmL/sJpR3upZfXG5PoatXQii55xAiXGXzY+sROLZ/Y+SLcp9PgJNI9Vz37HpQ74WvDcLT8eqm+kV3FzrA==",
"license": "BSD-3-Clause",
"dependencies": {
"tldts": "^7.0.5"
@ -36824,18 +36824,18 @@
}
},
"node_modules/yahoo-finance2": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/yahoo-finance2/-/yahoo-finance2-4.0.0.tgz",
"integrity": "sha512-3AUMLycIxGSKEf99nEedmsccBLAXyVajCfKlY+Vxsxx6ntsDlFYN1UdL6APGMFiRs8IBivn62eJT4Zj3WQdrlw==",
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/yahoo-finance2/-/yahoo-finance2-4.0.2.tgz",
"integrity": "sha512-wjNd6/l7dS7NrBPePbX8r2P/MkXK6bL86wW6Mqd34GuY3Kab2s80DkrYEchcOoS569Q0loQUztz3NeNxjd827A==",
"license": "MIT",
"dependencies": {
"@deno/shim-deno": "~0.18.0",
"@modelcontextprotocol/sdk": "npm:@modelcontextprotocol/sdk@^1.26.0",
"@modelcontextprotocol/sdk": "npm:@modelcontextprotocol/sdk@^1.30.0",
"fetch-mock-cache": "npm:fetch-mock-cache@^3.1.0",
"json-schema": "^0.4.0",
"tough-cookie": "npm:tough-cookie@^6.0.0",
"tough-cookie-file-store": "npm:tough-cookie-file-store@^3.0.0",
"zod": "npm:zod@^4.0.0"
"tough-cookie": "npm:tough-cookie@^6.0.2",
"tough-cookie-file-store": "npm:tough-cookie-file-store@^3.3.0",
"zod": "npm:zod@^4.4.3"
},
"bin": {
"yahoo-finance": "esm/bin/yahoo-finance.js",

2
package.json

@ -142,7 +142,7 @@
"twitter-api-v2": "1.29.0",
"undici": "8.5.0",
"uuid": "14.0.1",
"yahoo-finance2": "4.0.0",
"yahoo-finance2": "4.0.2",
"zod": "4.4.3",
"zone.js": "0.16.1"
},

Loading…
Cancel
Save