Skip to content

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

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

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

Conversation

@renovate
Copy link
Copy Markdown

@renovate renovate Bot commented Jan 12, 2021

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
typeorm (source) 0.2.290.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: (UTC)

  • 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 is behind base branch, 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.

@codecov
Copy link
Copy Markdown

codecov Bot commented Jan 12, 2021

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (53234ab) 93.85% compared to head (0de9295) 93.85%.

❗ Current head 0de9295 differs from pull request most recent head 60085a5. Consider uploading reports for the commit 60085a5 to get more accurate results

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff            @@
##           develop     #120   +/-   ##
========================================
  Coverage    93.85%   93.85%           
========================================
  Files           28       28           
  Lines          863      863           
  Branches       125      125           
========================================
  Hits           810      810           
  Misses          52       52           
  Partials         1        1           

@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 5ebef6e to 31bb44d Compare January 21, 2021 05:40
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 31bb44d to 0de9295 Compare February 8, 2021 17:25
@renovate renovate Bot changed the title fix(deps): update dependency typeorm to v0.2.30 fix(deps): update dependency typeorm to v0.2.31 Feb 8, 2021
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 0de9295 to 723b28c Compare April 26, 2021 14:28
@renovate renovate Bot changed the title fix(deps): update dependency typeorm to v0.2.31 fix(deps): update dependency typeorm to v0.2.32 Apr 26, 2021
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 723b28c to 062a0fd Compare June 6, 2021 22:38
@renovate renovate Bot changed the title fix(deps): update dependency typeorm to v0.2.32 fix(deps): update dependency typeorm to v0.2.34 Jun 6, 2021
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 062a0fd to 54c9731 Compare October 18, 2021 22:27
@renovate renovate Bot changed the title fix(deps): update dependency typeorm to v0.2.34 fix(deps): update dependency typeorm to v0.2.38 Oct 18, 2021
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 54c9731 to 7d4d8ef Compare March 7, 2022 14:28
@renovate renovate Bot changed the title fix(deps): update dependency typeorm to v0.2.38 fix(deps): update dependency typeorm to v0.2.45 Mar 7, 2022
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 7d4d8ef to 5f8945b Compare March 26, 2022 14:32
@renovate renovate Bot changed the title fix(deps): update dependency typeorm to v0.2.45 fix(deps): update dependency typeorm to v0.3.3 Mar 26, 2022
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 5f8945b to 2da903a Compare April 25, 2022 00:26
@renovate renovate Bot changed the title fix(deps): update dependency typeorm to v0.3.3 fix(deps): update dependency typeorm to v0.3.6 Apr 25, 2022
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 2da903a to d3aec0f Compare September 25, 2022 15:42
@renovate renovate Bot changed the title fix(deps): update dependency typeorm to v0.3.6 fix(deps): update dependency typeorm to v0.3.10 Sep 25, 2022
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from d3aec0f to 2c2b5ca Compare November 20, 2022 17:22
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 2c2b5ca to 3524e34 Compare March 17, 2023 01:50
@renovate renovate Bot changed the title fix(deps): update dependency typeorm to v0.3.10 fix(deps): update dependency typeorm to v0.3.12 Mar 17, 2023
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 3524e34 to f66fe1f Compare April 17, 2023 09:51
@renovate renovate Bot changed the title fix(deps): update dependency typeorm to v0.3.12 fix(deps): update dependency typeorm to v0.3.15 Apr 17, 2023
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from f66fe1f to 24d8e01 Compare May 28, 2023 09:33
@renovate renovate Bot changed the title fix(deps): update dependency typeorm to v0.3.15 fix(deps): update dependency typeorm to v0.3.16 May 28, 2023
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 24d8e01 to 8599ec2 Compare June 20, 2023 20:20
@renovate renovate Bot changed the title fix(deps): update dependency typeorm to v0.3.16 fix(deps): update dependency typeorm to v0.3.17 Jun 20, 2023
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 8599ec2 to 79542d2 Compare January 3, 2024 12:46
@renovate renovate Bot changed the title fix(deps): update dependency typeorm to v0.3.17 fix(deps): update dependency typeorm to v0.3.18 Jan 3, 2024
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 79542d2 to 1705bf7 Compare January 3, 2024 16:12
@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 branch from 1705bf7 to 60085a5 Compare January 26, 2024 15:27
@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 branch from 60085a5 to f514004 Compare March 3, 2025 12:56
@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 f514004 to 13b61e7 Compare April 3, 2025 12:11
@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 13b61e7 to 6db8ddb Compare May 7, 2025 11:44
@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 6db8ddb to d378ef1 Compare May 14, 2025 22:33
@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 d378ef1 to 630556f Compare June 19, 2025 23:31
@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 630556f to 790b8e3 Compare August 10, 2025 12:36
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 790b8e3 to 07cd720 Compare August 18, 2025 17:53
@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 07cd720 to 81a948a Compare August 31, 2025 14:39
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 81a948a to 465c268 Compare September 19, 2025 14:53
@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 465c268 to 9741faf Compare September 25, 2025 16:54
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 9741faf to c272813 Compare November 10, 2025 14:48
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from c272813 to 5e07aef Compare November 18, 2025 22:41
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 5e07aef to 9064443 Compare December 3, 2025 12:35
@renovate renovate Bot changed the title fix(deps): update dependency typeorm to v0.3.27 fix(deps): update dependency typeorm to v0.3.28 Dec 3, 2025
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 9064443 to 493210e Compare December 31, 2025 16:33
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 493210e to e40d8e3 Compare January 19, 2026 18:07
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from e40d8e3 to 62e132f Compare March 5, 2026 17:24
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 62e132f to 6ebc02d Compare March 13, 2026 11:16
@renovate renovate Bot force-pushed the renovate/typeorm-0.x branch from 6ebc02d to b49ab73 Compare April 1, 2026 18:19
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