Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix(deps): update dependency typeorm to v0.3.28#1237

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

fix(deps): update dependency typeorm to v0.3.28#1237
renovate[bot] wants to merge 1 commit intodevelopfrom
renovate/typeorm-0.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 28, 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 - "every weekend" (UTC), 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.

@render
Copy link

render bot commented Jan 28, 2024

@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 branch from 139ae6b to ac8abda Compare March 3, 2025 12:56
@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 branch from ac8abda to 321c7fb Compare April 3, 2025 11:12
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from 321c7fb to ad50a01 Compare May 7, 2025 17:36
@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 branch from ad50a01 to d6ab128 Compare May 14, 2025 19:38
@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 branch from d6ab128 to 4492e4c Compare June 19, 2025 19:35
@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 branch from 4492e4c to 5a612dc Compare August 10, 2025 13:05
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from 5a612dc to 5a002bb Compare August 18, 2025 19:05
@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 branch from 5a002bb to eb10122 Compare August 31, 2025 13:05
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from eb10122 to f4f72e7 Compare September 19, 2025 12:49
@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 branch from f4f72e7 to c1b424b Compare September 25, 2025 21:38
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from c1b424b to 11a4795 Compare November 10, 2025 18:09
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.

1 participant