Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 1, 2023

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
typeorm (source) 0.3.12 -> 0.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.

v0.3.17

Compare Source

Bug Fixes

v0.3.16

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "every month" in timezone America/Manaus, 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 added [type] dependencies 🔕 do not notify indicar que deve ser ignorada por notificadores (ex: bot do telegram) labels Jun 1, 2023
@renovate renovate bot changed the title chore(deps): update dependency typeorm to v0.3.16 chore(deps): update dependency typeorm to v0.3.17 Jun 20, 2023
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from fc62c4f to 318fd24 Compare June 20, 2023 23:27
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from 318fd24 to 0c251b9 Compare January 3, 2024 15:16
@renovate renovate bot changed the title chore(deps): update dependency typeorm to v0.3.17 chore(deps): update dependency typeorm to v0.3.19 Jan 3, 2024
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from 0c251b9 to d77b43a Compare January 26, 2024 11:34
@renovate renovate bot changed the title chore(deps): update dependency typeorm to v0.3.19 chore(deps): update dependency typeorm to v0.3.20 Jan 26, 2024
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from d77b43a to 646244d Compare March 3, 2025 10:53
@renovate renovate bot changed the title chore(deps): update dependency typeorm to v0.3.20 chore(deps): update dependency typeorm to v0.3.21 Mar 3, 2025
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from 646244d to 48522e7 Compare April 3, 2025 11:39
@renovate renovate bot changed the title chore(deps): update dependency typeorm to v0.3.21 chore(deps): update dependency typeorm to v0.3.22 Apr 3, 2025
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from 48522e7 to 1270e39 Compare May 7, 2025 13:38
@renovate renovate bot changed the title chore(deps): update dependency typeorm to v0.3.22 chore(deps): update dependency typeorm to v0.3.23 May 7, 2025
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from 1270e39 to ef87ab1 Compare May 14, 2025 18:55
@renovate renovate bot changed the title chore(deps): update dependency typeorm to v0.3.23 chore(deps): update dependency typeorm to v0.3.24 May 14, 2025
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from ef87ab1 to 33f9d9d Compare June 19, 2025 18:58
@renovate renovate bot changed the title chore(deps): update dependency typeorm to v0.3.24 chore(deps): update dependency typeorm to v0.3.25 Jun 19, 2025
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from 33f9d9d to 9c7a3e0 Compare August 10, 2025 13:49
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from 9c7a3e0 to 8be3eb5 Compare August 18, 2025 17:58
@renovate renovate bot changed the title chore(deps): update dependency typeorm to v0.3.25 chore(deps): update dependency typeorm to v0.3.26 Aug 18, 2025
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from 8be3eb5 to c461c49 Compare August 31, 2025 10:36
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from c461c49 to 8c87248 Compare September 19, 2025 13:30
@renovate renovate bot changed the title chore(deps): update dependency typeorm to v0.3.26 chore(deps): update dependency typeorm to v0.3.27 Sep 19, 2025
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from 8c87248 to 6ca74b2 Compare September 25, 2025 14:58
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from 6ca74b2 to e640a8c Compare November 10, 2025 16:00
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from e640a8c to ee240cb Compare November 18, 2025 12:58
@renovate renovate bot force-pushed the renovate/typeorm-0.x branch from ee240cb to 4620ee9 Compare December 3, 2025 08:57
@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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

🔕 do not notify indicar que deve ser ignorada por notificadores (ex: bot do telegram) [type] dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant