linea-monorepo
linea-monorepo copied to clipboard
chore(deps): bump typeorm from 0.3.20 to 0.3.26 in /postman in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the /postman directory: typeorm.
Updates typeorm from 0.3.20 to 0.3.26
Release notes
Sourced from typeorm's releases.
0.3.26
Notes:
- When using MySQL, TypeORM now connects using
stringifyObjects: true, in order to avoid a potential security vulnerability in the mysql/mysql2 client libraries. You can revert to the old behavior by settingconnectionOptions.extra.stringifyObjects = false.- When using SAP HANA, TypeORM now uses the built-in pool from the
@sap/hana-clientlibrary. The deprecatedhdb-poolis no longer necessary and can be removed. See https://typeorm.io/docs/drivers/sap/#data-source-options for the new pool options.What's Changed
- chore: Remove manual trigger on publish workflow by
@michaelbromleyin typeorm/typeorm#11536- test(ci): force mocha to exit on stuck process by
@OSA413in typeorm/typeorm#11538- fix(oracle): pass duplicated parameters correctly to the client when executing a query by
@alumniin typeorm/typeorm#11537- feat(sap): add support for REAL_VECTOR and HALF_VECTOR data types in SAP HANA Cloud by
@alumniin typeorm/typeorm#11526- fix: add stricter type-checking and improve event loop handling by
@alumniin typeorm/typeorm#11540- perf: avoid unnecessary count on getManyAndCount by
@EQuincerotin typeorm/typeorm#11524- feat(sap): use the native driver for connection pooling by
@alumniin typeorm/typeorm#11520- fix: support for better-sqlite3 v12 by
@mohd-akramin typeorm/typeorm#11557- fix: preserve
useIndexwhen cloning a QueryExpressionMap (or a QueryBuilder) by@kettuiin typeorm/typeorm#10679- chore: change test badge from
test.ymltocommit-validation.ymlby@albasyirin typeorm/typeorm#11560- fix: do not create junction table metadata when it already exists by
@ragragin typeorm/typeorm#11114- fix(mysql): support AnalyticDB returning version() column name in getVersion() by
@rhydian0xin typeorm/typeorm#11555- fix: resolve array modification bug in QueryRunner drop methods #11563 by
@taina0407in typeorm/typeorm#11564- fix(mysql): set
stringifyObjectsimplicitly by@alumniin typeorm/typeorm#11574- docs: separate driver-specific documentation by
@alumniin typeorm/typeorm#11581- docs: fix redirect to mongodb page by
@alumniin typeorm/typeorm#11584- feat(11528): add Redis 5.x support with backward compatibility wite peer dependency to allow by
@par333kin typeorm/typeorm#11585- fix: regtype is not supported in aurora serverless v2 by
@ArsenyYankovskyin typeorm/typeorm#11568- fix(platform[web worker]): improve globalThis variable retrieval for … by
@dasonchengin typeorm/typeorm#11495- docs: added
@piying/ormextension to readme by@wszgrcyin typeorm/typeorm#11596- docs: Fix
reloadoption typo by@radovanovic-stevanin typeorm/typeorm#11601- feat: add entity mode virtual-property by
@wszgrcyin typeorm/typeorm#11597- chore: Release v0.3.26 by
@michaelbromleyin typeorm/typeorm#11602New Contributors
@EQuincerotmade their first contribution in typeorm/typeorm#11524@kettuimade their first contribution in typeorm/typeorm#10679@ragragmade their first contribution in typeorm/typeorm#11114@rhydian0xmade their first contribution in typeorm/typeorm#11555@taina0407made their first contribution in typeorm/typeorm#11564@par333kmade their first contribution in typeorm/typeorm#11585@dasonchengmade their first contribution in typeorm/typeorm#11495@wszgrcymade their first contribution in typeorm/typeorm#11596@radovanovic-stevanmade their first contribution in typeorm/typeorm#11601Full Changelog: https://github.com/typeorm/typeorm/compare/0.3.25...0.3.26
0.3.25
... (truncated)
Changelog
Sourced from typeorm's changelog.
0.3.26 (2025-08-16)
Notes:
- When using MySQL, TypeORM now connects using
stringifyObjects: true, in order to avoid a potential security vulnerability in the mysql/mysql2 client libraries. You can revert to the old behavior by settingconnectionOptions.extra.stringifyObjects = false.- When using SAP HANA, TypeORM now uses the built-in pool from the
@sap/hana-clientlibrary. The deprecatedhdb-poolis no longer necessary and can be removed. See https://typeorm.io/docs/drivers/sap/#data-source-options for the new pool options.Bug Fixes
- add stricter type-checking and improve event loop handling (#11540) (01dddfe)
- do not create junction table metadata when it already exists (#11114) (3c26cf1)
- mysql: set
stringifyObjectsimplicitly (#11574) (d57fe3b)- mysql: support Alibaba AnalyticDB returning version() column name in getVersion() (#11555) (1737e97)
- oracle: pass duplicated parameters correctly to the client when executing a query (#11537) (f2d2236)
- platform[web worker]: improve globalThis variable retrieval for browser environment (#11495) (ec26eae)
- preserve
useIndexwhen cloning a QueryExpressionMap (or a QueryBuilder) (#10679) (66ee307), closes #10678 #10678- regtype is not supported in aurora serverless v2 (#11568) (6e9f20d)
- resolve array modification bug in QueryRunner drop methods (#11564) (f351757), closes #11563
- support for better-sqlite3 v12 (#11557) (1ea3a5e)
Features
- add Redis 5.x support with backward compatibility with peer dependency to allow (#11585) (17cf837), closes #11528
- sap: add support for REAL_VECTOR and HALF_VECTOR data types in SAP HANA Cloud (#11526) (abf8863)
- sap: use the native driver for connection pooling (#11520) (aebc7eb)
- support virtual columns in entity schema (#11597) (d1e3950)
Performance Improvements
0.3.25 (2025-06-19)
Bug Fixes
- add collation update detection in PostgresDriver (#11441) (24c3e38), closes #8647 #8647
- fix null pointer exception on date array column comparison (#11532) (42e7cbe)
- handle limit(0) and offset(0) correctly in SelectQueryBuilder (#11507) (413f0a6)
- improve async calls on disconnect (#11523) (ead4f98)
- multiple relations with same column name(s) generate invalid SELECT statement (#11400) (63a3b9a), closes #1668 #9788 #9814 #10121 #10148 #11109 #11132 #11180
- postgres: resolve alias or table name in upsert/insert or update conditionally (#11452) (2bfa300), closes #11082 #11440
- tree-entity: closure junction table primary key definition should match parent table (#11422) (ce23d46)
... (truncated)
Commits
4d204adchore: Release v0.3.26 (#11602)d1e3950feat: support virtual columns in entity schema (#11597)1698313docs: fixreloadoption typo (#11601)0b767e8docs: added@piying/ormextension to readme (#11596)ec26eaefix(platform[web worker]): improve globalThis variable retrieval for browser ...6e9f20dfix: regtype is not supported in aurora serverless v2 (#11568)17cf837feat(11528): add Redis 5.x support with backward compatibility wite peer depe...8097d1adocs: fix redirect to mongodb page (#11584)23fcde2docs: separate driver-specific documentation (#11581)d57fe3bfix(mysql): setstringifyObjectsimplicitly (#11574)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by michaelbromley, a new releaser for typeorm since your current version.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions You can disable automated security fix PRs for this repo from the Security Alerts page.
[!NOTE] Update
typeorminpostman/package.jsonfrom0.3.20to0.3.26.Written by Cursor Bugbot for commit 1bc5278d69f5dc1b23e812775b529442923c10bb. This will update automatically on new commits. Configure here.
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you all sign our Contributor License Agreement before we can accept your contribution.
1 out of 2 committers have signed the CLA.
:white_check_mark: VGau
:x: dependabot[bot]
You have signed the CLA already but the status is still pending? Let us recheck it.
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.
@dependabot rebase
Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!
If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.