Browse Source

Merge branch 'main' into feature/add-currency-into-create-asset-profile

pull/3819/head
Madhab Chandra Sahoo 11 months ago
committed by GitHub
parent
commit
bfb9f0c487
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      CHANGELOG.md
  2. 23
      package-lock.json
  3. 2
      package.json

5
CHANGELOG.md

@ -5,10 +5,11 @@ 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/), 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## 2.111.0 - 2024-09-25 ## Unreleased
### Added ### Changed
- Upgraded `webpack-bundle-analyzer` from version `4.10.1` to `4.10.2`
- Integrate add currency into create asset profile dialog - Integrate add currency into create asset profile dialog
## 2.110.0 - 2024-09-24 ## 2.110.0 - 2024-09-24

23
package-lock.json

@ -1,12 +1,12 @@
{ {
"name": "ghostfolio", "name": "ghostfolio",
"version": "2.108.0", "version": "2.110.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "ghostfolio", "name": "ghostfolio",
"version": "2.108.0", "version": "2.110.0",
"hasInstallScript": true, "hasInstallScript": true,
"license": "AGPL-3.0", "license": "AGPL-3.0",
"dependencies": { "dependencies": {
@ -158,7 +158,7 @@
"ts-node": "10.9.2", "ts-node": "10.9.2",
"tslib": "2.6.0", "tslib": "2.6.0",
"typescript": "5.5.3", "typescript": "5.5.3",
"webpack-bundle-analyzer": "4.10.1" "webpack-bundle-analyzer": "4.10.2"
}, },
"engines": { "engines": {
"node": ">=20" "node": ">=20"
@ -33666,10 +33666,11 @@
} }
}, },
"node_modules/webpack-bundle-analyzer": { "node_modules/webpack-bundle-analyzer": {
"version": "4.10.1", "version": "4.10.2",
"resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.1.tgz", "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.2.tgz",
"integrity": "sha512-s3P7pgexgT/HTUSYgxJyn28A+99mmLq4HsJepMPzu0R8ImJc52QNqaFYW1Z2z2uIb1/J3eYgaAWVpaC+v/1aAQ==", "integrity": "sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==",
"dev": true, "dev": true,
"license": "MIT",
"dependencies": { "dependencies": {
"@discoveryjs/json-ext": "0.5.7", "@discoveryjs/json-ext": "0.5.7",
"acorn": "^8.0.4", "acorn": "^8.0.4",
@ -33679,7 +33680,6 @@
"escape-string-regexp": "^4.0.0", "escape-string-regexp": "^4.0.0",
"gzip-size": "^6.0.0", "gzip-size": "^6.0.0",
"html-escaper": "^2.0.2", "html-escaper": "^2.0.2",
"is-plain-object": "^5.0.0",
"opener": "^1.5.2", "opener": "^1.5.2",
"picocolors": "^1.0.0", "picocolors": "^1.0.0",
"sirv": "^2.0.3", "sirv": "^2.0.3",
@ -33713,15 +33713,6 @@
"url": "https://github.com/sponsors/sindresorhus" "url": "https://github.com/sponsors/sindresorhus"
} }
}, },
"node_modules/webpack-bundle-analyzer/node_modules/is-plain-object": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
"integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/webpack-bundle-analyzer/node_modules/ws": { "node_modules/webpack-bundle-analyzer/node_modules/ws": {
"version": "7.5.10", "version": "7.5.10",
"resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz",

2
package.json

@ -202,7 +202,7 @@
"ts-node": "10.9.2", "ts-node": "10.9.2",
"tslib": "2.6.0", "tslib": "2.6.0",
"typescript": "5.5.3", "typescript": "5.5.3",
"webpack-bundle-analyzer": "4.10.1" "webpack-bundle-analyzer": "4.10.2"
}, },
"engines": { "engines": {
"node": ">=20" "node": ">=20"

Loading…
Cancel
Save