Skip to content

fix(deps): update all major dependencies (major) #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 8, 2024

This PR contains the following updates:

Package Change Age Confidence Type Update
@mikro-orm/cli (source) 5.9.4 -> 6.4.16 age confidence devDependencies major
@mikro-orm/core (source) 5.9.4 -> 6.4.16 age confidence dependencies major
@mikro-orm/migrations (source) 5.9.4 -> 6.4.16 age confidence dependencies major
@mikro-orm/nestjs 5.2.2 -> 6.1.1 age confidence dependencies major
@mikro-orm/postgresql (source) 5.9.4 -> 6.4.16 age confidence dependencies major
@nestjs/common (source) 10.2.10 -> 11.1.3 age confidence dependencies major
@nestjs/core (source) 10.2.10 -> 11.1.3 age confidence dependencies major
@nestjs/cqrs 10.2.6 -> 11.0.3 age confidence dependencies major
@nestjs/microservices (source) 10.2.10 -> 11.1.3 age confidence dependencies major
@nestjs/testing (source) 10.2.10 -> 11.1.3 age confidence devDependencies major
@types/jest (source) 29.5.11 -> 30.0.0 age confidence devDependencies major
@types/node (source) 20.10.4 -> 22.16.0 age confidence devDependencies major
@typescript-eslint/eslint-plugin (source) 6.13.2 -> 8.35.1 age confidence devDependencies major
@typescript-eslint/parser (source) 6.13.2 -> 8.35.1 age confidence devDependencies major
codecov/codecov-action v3 -> v5 age confidence action major
dotenv 16.3.1 -> 17.0.1 age confidence dependencies major
eslint (source) 8.55.0 -> 9.30.1 age confidence devDependencies major
eslint-plugin-jest 27.6.0 -> 29.0.1 age confidence devDependencies major
husky 8.0.3 -> 9.1.7 age confidence devDependencies major
jest (source) 29.7.0 -> 30.0.4 age confidence devDependencies major
lint-staged 15.2.0 -> 16.1.2 age confidence devDependencies major
paambaati/codeclimate-action v5.0.0 -> v9.0.0 age confidence action major
pnpm/action-setup v2.4.0 -> v4.1.0 age confidence action major
rimraf 5.0.5 -> 6.0.1 age confidence devDependencies major
tsc-watch 6.0.4 -> 7.1.1 age confidence devDependencies major

Release Notes

mikro-orm/mikro-orm (@​mikro-orm/cli)

v6.4.16

Compare Source

Bug Fixes
  • core: fix extra updates after em.refresh is called on properties with custom types (6a6167e), closes #​6674
  • core: fix implicit serialization when multiple populate hints are present (dbf8f3c), closes #​6658
  • core: support custom types in type option of version properties (bd31fb6)
  • core: unlink old 1:1 relation on the owning side when changing inverse side (2f292cc), closes #​6655
  • core: use explicit dataloader for M:N properties (6372e4c), closes #​6665
Features
  • mssql: allow inserting when triggers are present in mssql tables (#​6662) (efafb9b)
  • query-builder: validate wrong group operator position on scalar properties (0f5ce3d), closes #​6684

v6.4.15

Compare Source

Bug Fixes
Features

v6.4.14

Compare Source

Bug Fixes
  • core: add support for zero count result cache (#​6600) (3a8fdff)
  • core: copy EntitySchema before processing the metadata (cbf4a7f), closes #​6540
  • core: disallow passing array items to scalar array properties in em.create and em.assign (1455027), closes #​6609
  • core: don't remove generated primary keys from entity snapshot (980e53e), closes #​6593
  • core: enforce correct runtime type when object gets inferred (6e46afa), closes #​6633
  • core: fix orderBy value type (06f1a72)
  • core: respect null as a valid cache result (#​6585) (e3bb8e4), closes #​6584
  • core: respect schema option when loading missing fields on upsert (3bd72ea), closes #​6622
  • mssql: handle mapping for order by expressions with nulls first/last (#​6618) (2cae74b)
  • query-builder: don't alias formula properties in join conditions (34d1df4), closes #​6620
Features

v6.4.13

Compare Source

Bug Fixes
  • core: allow passing null and undefined to ref() and respect it in return type (2708c7a)
  • core: fix entity path discovery for bun 1.2.7 (#​6564) (a749a4a)
  • core: fix type of a Record properties when mapping to EntityDTO (e4ef475)
  • core: ignore collection operators in auto-joined filter conditions (c72c8c5), closes #​6567
  • core: make populate parameter of em.populate() readonly (#​6580) (87d8c95), closes #​6579
  • core: respect owner schema when persisting M:N with wildcard entities (a53765f), closes #​6575
  • core: skip extra populate query for nullable 1:1 inverse sides (3a72ce5), closes #​6568
  • mssql: ensure formula properties are not selected twice when partial loading on a joined relation (763db15), closes #​6547
  • postgres: fix schema diffing for default and nullable of check constraint enums (#​6572) (db9b0bf), closes #​6571
  • query-builder: ignore nested relation filters when applying filters to auto-joined relations (b9ac04c), closes #​6566

v6.4.12

Compare Source

Bug Fixes
  • core: clean up 1:m collections when changing the m:1 value (a720927)
  • core: don't reset not selected values from existing entities (2ebc7a8), closes #​6558
  • core: fix populating m:n collection with custom types (444c130), closes #​6477
  • core: fix populating nested relations when parent entity is self referenced (285a632), closes #​6531
  • core: propagate composite FK values when inserting new entities (9506cae), closes #​6430
  • mssql: ensure date type is mapped to string instead of Date object (098d71b), closes #​6553
  • postgres: fix schema diffing on m:1 relations targeting a native enum PK (a76805e), closes #​6557
  • postgres: fix schema diffing on m:1 relations targeting a native enum PK (e059375), closes #​6557
Features

v6.4.11

Compare Source

Bug Fixes
  • core: fix metadata validation for polymorphic embedded properties (61bd2c3), closes #​6522
  • core: fix wildcard schema resolution on pivot tables (c43afa6), closes #​6516
  • core: respect EM schema when populating nested relations with wildcard schema (765eb69), closes #​6511
  • mongo: do not create migrations collection by default (#​6517) (154dafc)
  • mssql: fix upsert with an explicit merge array (4b57d3a), closes #​6534
  • postgres: cockroachdb may not require unmarshallArray (#​6501) (0661942)
  • sqlite: do not ensure directory exists when dbName is :memory: or URL (b0f97ed), closes #​6533

v6.4.10

Compare Source

Bug Fixes
Performance Improvements
  • core: fix consecutive metadata discovery taking too long because of STI (f79b64b), closes #​6509

v6.4.9

Compare Source

Bug Fixes

v6.4.8

Compare Source

Bug Fixes
  • core: do not cache internal Collection reference to EntityManager (1c07cab), closes #​6453
  • core: ensure bigint types don't produce extra updates with joined strategy (70063e0), closes #​6478
  • core: fix serialization of collections with composite entities via getIdentifiers (4effa18), closes #​6479
  • core: respect check constraints from child STI entities (8cfd6e3), closes #​6450
  • core: respect Collection property orderBy when dataloader is enabled (#​6467) (6322ce8)
  • query-builder: apply filters to auto-joined relations (#​6480) (6b1d7ee), closes #​6458
  • query-builder: do not inline PK nested in a $not query (5931d28), closes #​6452
  • query-builder: revert recent changes to composite key sharing (2bd973d), closes #​6359
Features
  • entity-generator: pass through orderBy option to the output (#​6466) (1142f40)

v6.4.7

Compare Source

Bug Fixes
  • core: enforce selection of discriminator column when partial loading is used (80c1b5b), closes #​6436
  • core: ensure @Check expression callback works without explicit type (5aa77db), closes #​6429
  • core: ensure partial loading allows to fetch missing values (ecba90f), closes #​6395
  • core: fix extra updates with joined strategy caused by custom types (2e1ab9a), closes #​6432
  • core: fix querying by a composite property with shared columns (#​6445) (396ee70), closes #​6359
  • core: fix support for custom types on PKs in em.upsert (57a4549), closes #​6434
  • core: fix type error when getting a composite PK value (2d4d2be), closes #​6430
  • core: fix type resolution in em.assign with nullable properties (4f13552), closes #​6426
  • mssql: fix support for upsert on compound unique constraints (#​6447) (43d1ff5), closes #​6390
  • schema: respect schema from config in clearDatabase() (0ab99a1), closes #​6405
  • sql: quote raw().as() field aliases (d9716d7)
  • sql: respect EM schema when clearing not populated 1:m collection of wildcard entities (12223e3), closes #​6387
Features
Performance Improvements
  • reflection: only consider entity files instead of evaluating the whole project (#​6439) (6f22fa6)

v6.4.6

Compare Source

Bug Fixes
Features
  • seeder: make .each() function receive index: number argument (#​6393) (8613388)
  • seeder: pass params to .definition() function as argument (#​6396) (b45db20)
  • seeder: pass params to .definition() function as argument (#​6396) (77468ee)

v6.4.5

Compare Source

Bug Fixes
  • core: allow querying by embedded instance with em.findAndCount (#​6370) (9e60817), closes #​6353
  • core: ensure populating Ref properties do not result in TypeError (7d34645)
  • core: fix creating new entities with composite props that share a column (68c79b2), closes #​6360
  • core: fix processing of queries for composite props that share a column (c01522d), closes #​6359
Features
  • migrations: allow returning promise from generateMigrationFile (af75d06), closes #​6364

v6.4.4

Compare Source

Bug Fixes
  • core: do not persist embeddables via em.create() (c6ed010)
  • core: fix multi insert when some values of a not-null column with default are missing (cd8f6e1)
  • core: ignore partial loading hint on JSON column when pruning relations (fbdea0a)
  • core: reduce chance of collisions of internal embedded properties (#​6354) (98ab6a2), closes #​6351
  • query-builder: process custom types in join conditions (3a6153f), closes #​6357
  • schema: fixed handling of check constraints on MariaDB before 10.5.10 (#​6352) (7d41e22), closes #​6350
Features

v6.4.3

Compare Source

Bug Fixes
  • entity-generator: output explicit referencedColumnNames when sharing a column in a composite foreign key (85db3c1), closes #​6323
  • entity-generator: skip bidirectional relation if target metadata doesn't exist (#​6328) (c7984fe)
  • query-builder: ignore lock mode in paginate subquery and keep it only on top level (3b7fdba)
  • schema: infer columnTypes when sharing a column in a composite foreign key (6781194), closes #​6323
  • schema: output deferrable FKs in sqlite create table statement (6bbec01)
  • schema: support unsigned for decimal and double types (d3ce313), closes #​6318
Features
  • migrations: allow configuring snapshot via env vars (59f0593), closes #​6327
  • mongo: include MikroORM version in MongoDB handshake (#​6326) (f501a91)

v6.4.2

Compare Source

Bug Fixes
  • core: correctly handle populate of mapToPk relations (#​6309) (61fb8f5), closes #​6265
  • core: fix cursor pagination with POJO cursor and relations (de1ae67), closes #​6308
  • core: prevent reinsertion of an entity referenced by a formula when it is removed from a collection (#​6265) (8f45243)
  • entity-generator: support multi-line comments (#​6290) (4fdb169), closes #​6286
  • query-builder: combine serialization hint from managed entities and QueryBuilder result (#​6307) (7d1a0dc)
  • query-builder: improve detection of to-many joins in qb.getCount() (4e5b18b), closes #​6291
  • reflection: fix source file detection after update to ts-morph v24 (d9716a6), closes #​6297
Features

v6.4.1

Compare Source

Bug Fixes
  • core: fix extra updates after em.refresh is called on properties with custom types (6a6167e), closes #​6674
  • core: fix implicit serialization when multiple populate hints are present (dbf8f3c), closes #​6658
  • core: support custom types in type option of version properties (bd31fb6)
  • core: unlink old 1:1 relation on the owning side when changing inverse side (2f292cc), closes #​6655
  • core: use explicit dataloader for M:N properties (6372e4c), closes #​6665
Features
  • mssql: allow inserting when triggers are present in mssql tables (#​6662) (efafb9b)
  • query-builder: validate wrong group operator position on scalar properties (0f5ce3d), closes #​6684

v6.4.0

Compare Source

Bug Fixes
  • core: add missing getterName option (aa18e57), closes #​6127
  • core: allow upserting POJO with embeddded instances (159fd4a), closes #​6198
  • core: check that inverse side exists when mapping collection items via dataloader (#​6149) (f580598), closes #​6148
  • core: ensure decimal type that maps to number won't produce extra updates (cc67ca4)
  • core: fix double processing of custom types in em.nativeUpdate (1b39846), closes #​6206
  • core: fix explicit serialization typing via wrap().serialize and BaseEntity.serialize (d93b325)
  • core: ignore collection properties when entity constructors are enforced (78a5937)
  • core: improve comparison of decimal values (66e60cb), closes #​6194
  • core: improve error handling for comparing invalid dates (#​6120) (1aa940b)
  • core: pass correct values to constructor for props using custom types (58c8ce4)
  • core: rename tsNode option to preferTs (#​6214) (194f511)
  • core: revert workaround for Date properties in clone() helper (c1af3db), closes #​6118
  • core: use db value for identity map key of PKs with custom type (aa1dd3c), closes #​6150
  • entity-generator: output inverse sides for pure pivot tables when outputted (#​6196) (e4b048b), closes #​6192
  • mssql: map property names to field names when processing composite keys (cf687e8), closes #​6204
  • postgres: make upsert where conditions fully qualified (b4b3cab), closes #​6203
  • postgres: return all results for multi statement raw queries (adcef5f), closes #​6009
  • postgres: support raw fragments in qb.distinctOn() (f8580c8)
  • query-builder: fix detection of raw fragments in update queries with not matching field names (22b918f), closes #​6177
  • query-builder: fix serialization of nested relations (3850c1e), closes #​6194
Features

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 is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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/major-all-major-dependencies branch 3 times, most recently from 09845b0 to ba77782 Compare January 13, 2024 02:00
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from d9aa939 to 097ecc0 Compare January 19, 2024 00:11
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 097ecc0 to 4e6486b Compare January 25, 2024 04:15
@renovate renovate bot changed the title chore(deps): update all major dependencies to v6 (major) chore(deps): update all major dependencies (major) Jan 25, 2024
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 7 times, most recently from da695b4 to 8119938 Compare January 31, 2024 18:40
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 4 times, most recently from 99c3693 to 6a507ad Compare February 8, 2024 13:43
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 6 times, most recently from 6f0181f to 6e9899d Compare February 17, 2024 00:43
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 3 times, most recently from 52b91d1 to 6fc8495 Compare February 26, 2024 19:13
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 6fc8495 to 4165c56 Compare February 28, 2024 10:35
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 10 times, most recently from bae8bbc to 2783099 Compare May 10, 2025 19:44
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 4 times, most recently from f83ecf9 to ed57919 Compare May 19, 2025 01:58
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 4 times, most recently from 1e45612 to 8a4a082 Compare May 26, 2025 09:41
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 3 times, most recently from a2e5152 to 392c0c9 Compare June 6, 2025 21:05
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 3 times, most recently from da76140 to 67f1882 Compare June 15, 2025 07:57
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 4 times, most recently from c916fed to faff25e Compare July 1, 2025 22:33
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from faff25e to 8099adf Compare July 3, 2025 03:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants