Skip to content

chore(deps): update dependency typeorm to v0.3.28#85

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/typeorm-0.x-lockfile
Open

chore(deps): update dependency typeorm to v0.3.28#85
renovate[bot] wants to merge 1 commit intomainfrom
renovate/typeorm-0.x-lockfile

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 3, 2024

This PR contains the following updates:

Package Change Age Confidence
typeorm (source) 0.3.170.3.28 age confidence

Release Notes

typeorm/typeorm (typeorm)

v0.3.28

Compare Source

Bug Fixes
Features

v0.3.27

Compare Source

Bug Fixes
Features
Performance Improvements
Reverts

v0.3.26

Compare Source

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 setting connectionOptions.extra.stringifyObjects = false.
  • When using SAP HANA, TypeORM now uses the built-in pool from the @sap/hana-client library. The deprecated hdb-pool
    is no longer necessary and can be removed. See https://typeorm.io/docs/drivers/sap/#data-source-options for the new pool options.
Bug Fixes
Features
Performance Improvements

v0.3.25

Compare Source

Bug Fixes
Features

v0.3.24

Compare Source

Bug Fixes
Features
Performance Improvements
  • improve save performance during entities update (15de733)

v0.3.23

Compare Source

⚠️ Note on a breaking change

This release includes a technically breaking change (from this PR) in the behaviour of the delete and update methods of the EntityManager and Repository APIs, when an empty object is supplied as the criteria:

await repository.delete({})
await repository.update({}, { foo: 'bar' })
  • Old behaviour was to delete or update all rows in the table
  • New behaviour is to throw an error: Empty criteria(s) are not allowed for the delete/update method.

Why?

This behaviour was not documented and is considered dangerous as it can allow a badly-formed object (e.g. with an undefined id) to inadvertently delete or update the whole table.

When the intention actually was to delete or update all rows, such queries can be rewritten using the QueryBuilder API:

await repository.createQueryBuilder().delete().execute()
// executes: DELETE FROM table_name
await repository.createQueryBuilder().update().set({ foo: 'bar' }).execute()
// executes: UPDATE table_name SET foo = 'bar'

An alternative method for deleting all rows is to use:

await repository.clear()
// executes: TRUNCATE TABLE table_name
Bug Fixes
Features
Performance Improvements

v0.3.22

Compare Source

Bug Fixes
Features
Reverts

v0.3.21

Compare Source

Bug Fixes
Performance Improvements

v0.3.20

Compare Source

Bug Fixes
Features
Reverts

v0.3.19

Compare Source

Bug Fixes
  • fixed Cannot read properties of undefined (reading 'sync') caused after glob package upgrade

v0.3.18

Compare Source

Bug Fixes
Features
Performance Improvements
BREAKING CHANGES
  • With node-oracledb the thin client is used as default. Added a option to use the thick client. Also added the option to specify the instant client lib
  • MongoDB: from the previous behavior of returning a result with metadata describing when a document is not found.
    See: https://github.com/mongodb/node-mongodb-native/blob/HEAD/etc/notes/CHANGES_6.0.0.md
  • new nullable embeds feature introduced a breaking change which might enforce you to update types on your entities to | null,
    if all columns in your embed entity are nullable. Since database queries now return embedded property as null if all its column values are null.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from ac9460c to 796f9fb Compare January 3, 2024 15:49
@renovate renovate bot changed the title fix(deps): update dependency typeorm to v0.3.18 fix(deps): update dependency typeorm to v0.3.19 Jan 3, 2024
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 796f9fb to 1a62692 Compare January 16, 2024 09:37
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 1a62692 to 036a544 Compare January 26, 2024 13:51
@renovate renovate bot changed the title fix(deps): update dependency typeorm to v0.3.19 fix(deps): update dependency typeorm to v0.3.20 Jan 26, 2024
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch 2 times, most recently from 6ddee00 to 23698b4 Compare February 4, 2024 10:38
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 23698b4 to 6e54e0e Compare February 25, 2024 09:53
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 6e54e0e to 333e6f6 Compare March 12, 2024 11:26
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 333e6f6 to 2ada414 Compare April 14, 2024 12:30
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 2ada414 to b0dca7e Compare April 29, 2024 03:21
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from b0dca7e to 6b84592 Compare June 4, 2024 13:17
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 6b84592 to 67f0764 Compare July 21, 2024 14:52
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 67f0764 to f18cdd2 Compare August 28, 2024 09:15
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from f18cdd2 to 55b558b Compare October 9, 2024 09:54
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 55b558b to 1325244 Compare December 2, 2024 10:28
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 1325244 to 59bde9d Compare March 3, 2025 12:33
@renovate renovate bot changed the title fix(deps): update dependency typeorm to v0.3.20 fix(deps): update dependency typeorm to v0.3.21 Mar 3, 2025
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 59bde9d to a9a0d45 Compare April 3, 2025 11:37
@renovate renovate bot changed the title fix(deps): update dependency typeorm to v0.3.21 fix(deps): update dependency typeorm to v0.3.22 Apr 3, 2025
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from a9a0d45 to 686b647 Compare April 24, 2025 09:57
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 686b647 to 6e8991a Compare May 7, 2025 10:59
@renovate renovate bot changed the title fix(deps): update dependency typeorm to v0.3.22 fix(deps): update dependency typeorm to v0.3.23 May 7, 2025
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 6e8991a to ca90b75 Compare May 14, 2025 21:59
@renovate renovate bot changed the title fix(deps): update dependency typeorm to v0.3.23 fix(deps): update dependency typeorm to v0.3.24 May 14, 2025
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from ca90b75 to e83211b Compare June 6, 2025 17:10
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from e83211b to 2fecd10 Compare June 19, 2025 18:40
@renovate renovate bot changed the title fix(deps): update dependency typeorm to v0.3.24 fix(deps): update dependency typeorm to v0.3.25 Jun 19, 2025
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 2fecd10 to 89fb08d Compare July 2, 2025 17:15
@renovate renovate bot changed the title fix(deps): update dependency typeorm to v0.3.25 fix(deps): update dependency typeorm to v0.3.26 Aug 18, 2025
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 89fb08d to b3e6895 Compare August 18, 2025 18:14
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from b3e6895 to 967314b Compare August 31, 2025 13:28
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 967314b to 344c324 Compare September 19, 2025 09:59
@renovate renovate bot changed the title fix(deps): update dependency typeorm to v0.3.26 fix(deps): update dependency typeorm to v0.3.27 Sep 19, 2025
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 344c324 to d620387 Compare September 25, 2025 13:46
@renovate renovate bot changed the title fix(deps): update dependency typeorm to v0.3.27 chore(deps): update dependency typeorm to v0.3.27 Sep 25, 2025
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from d620387 to bb5dbf3 Compare October 21, 2025 10:41
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from bb5dbf3 to d381252 Compare November 10, 2025 19:34
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from d381252 to bea24a7 Compare November 18, 2025 16:15
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from bea24a7 to d62da4b Compare December 3, 2025 11:04
@renovate renovate bot changed the title chore(deps): update dependency typeorm to v0.3.27 chore(deps): update dependency typeorm to v0.3.28 Dec 3, 2025
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from d62da4b to 8457201 Compare December 31, 2025 17:34
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 8457201 to dac7adf Compare January 19, 2026 20:12
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from dac7adf to 21cae63 Compare February 12, 2026 10:00
@renovate renovate bot force-pushed the renovate/typeorm-0.x-lockfile branch from 21cae63 to 68b288a Compare March 5, 2026 14:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants