Skip to content

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

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-all-major-dependencies
Open

fix(deps): update all major dependencies (major)#21
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-all-major-dependencies

Conversation

@renovate

@renovate renovate Bot commented Jan 8, 2024

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@mikro-orm/cli (source) 5.9.47.1.12 age confidence devDependencies major
@mikro-orm/core (source) 5.9.47.1.12 age confidence dependencies major
@mikro-orm/migrations (source) 5.9.47.1.12 age confidence dependencies major
@mikro-orm/nestjs 5.2.27.0.2 age confidence dependencies major
@mikro-orm/postgresql (source) 5.9.47.1.12 age confidence dependencies major
@nestjs/common (source) 10.2.1011.2.1 age confidence dependencies major
@nestjs/core (source) 10.2.1011.2.1 age confidence dependencies major
@nestjs/cqrs 10.2.611.0.3 age confidence dependencies major
@nestjs/microservices (source) 10.2.1011.2.1 age confidence dependencies major
@nestjs/testing (source) 10.2.1011.2.1 age confidence devDependencies major
@types/jest (source) 29.5.1130.0.0 age confidence devDependencies major
@types/node (source) 20.10.424.13.3 age confidence devDependencies major
@typescript-eslint/eslint-plugin (source) 6.13.28.67.0 age confidence devDependencies major
@typescript-eslint/parser (source) 6.13.28.67.0 age confidence devDependencies major
actions/checkout v4v7 age confidence action major
actions/setup-node v4v7 age confidence action major
codecov/codecov-action v3v7 age confidence action major
dotenv 16.3.117.4.2 age confidence dependencies major
eslint (source) 8.55.010.8.1 age confidence devDependencies major
eslint-plugin-jest 27.6.029.16.1 age confidence devDependencies major
husky 8.0.39.1.7 age confidence devDependencies major
jest (source) 29.7.030.4.2 age confidence devDependencies major
jest-junit 16.0.017.0.0 age confidence devDependencies major
lint-staged 15.2.017.3.0 age confidence devDependencies major
paambaati/codeclimate-action v5.0.0v9.0.0 age confidence action major
pnpm (source) 611 age confidence uses-with major
pnpm/action-setup v2.4.0v6.0.10 age confidence action major
rimraf 5.0.56.1.3 age confidence devDependencies major
tsc-watch 6.0.47.2.1 age confidence devDependencies major
typescript (source) 5.3.37.0.2 age confidence devDependencies major

Release Notes

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

v7.1.12

Compare Source

Bug Fixes

v7.1.11

Compare Source

Bug Fixes

v7.1.10

Compare Source

Bug Fixes

v7.1.9

Compare Source

Bug Fixes
  • core: fix batch updates when the whole primary key is one relation (#​8065) (aeefa5e)
  • core: keep null value of embedded arrays in snapshots and hydration (#​8046) (93d62bf), closes #​8045
  • core: keep the fixed order column as the sole pivot PK for polymorphic M:N (#​8083) (3ac8b73)
  • core: map returning values back to entities after batch update (#​8056) (5895309)
  • core: support mixed STI child types in batch updates (#​8057) (f6e5fd4)
  • core: support version and optimistic locking on nested composite keys (#​8064) (d533e76)
  • entity-generator: correctly escape generated string literals and keys (#​8048) (adf2b84)
  • entity-generator: sanitize file names taken from database metadata (#​8052) (4efac39)
  • libsql: stop recycling local connections every 10 seconds (#​8050) (bd2a1cf)
  • migrations: sanitize custom migration names into valid class identifiers (#​8053) (20a3ae2)
  • mssql: execute create trigger in its own query batch (#​8072) (5d0420e)
  • mssql: manage table and column comments via extended properties (#​8076) (d579f04)
  • oracledb: bind every returned column of a multi column property (#​8059) (dc17ec2)
  • oracle: keep the config user in sync with the pool after dropDatabase() (#​8043) (6e1113d)
  • oracle: set the session schema when the connection user differs from dbName (#​8042) (3a942d2), closes #​8040
  • postgresql: don't crash the process when the server drops a connection (#​8069) (66d3b1a)
  • sql: apply column comment changes in a single schema update pass (#​8077) (c48a435)
  • sql: apply query cancellation strategies inside transactions (#​8067) (11525e3)
  • sql: compile an empty $or to an always-false predicate (#​8054) (0578108)
  • sql: emit valid SQL for negated and empty condition groups (#​8060) (905286b)
  • sql: include composite FK values in the pivot row hash (#​8082) (f2d5a89), closes #​8078 #​8078
  • sql: keep multi line comments intact when grouping schema DDL (#​8079) (b74e332)
  • sql: keep multi line trigger bodies stable across schema updates (#​8074) (165ff59)
  • sql: keep pivot rows distinct when the fixed order column is not unique (#​8078) (63a2c83), closes #​8075
  • sql: keep polymorphic pivot rows distinct when the fixed order column is not unique (#​8085) (20734f7), closes #​8078
  • sql: keep the original error when the rollback of a failed transaction also fails (#​8068) (7663639)
  • sql: load M:N collections of owners with a nested composite PK (#​8080) (d4a5a33)
  • sql: load the owner side of a polymorphic M:N pivot shared by owners of different PK arity (#​8084) (6fbdcc4), closes #​8081
  • sql: load the owner side of a polymorphic M:N with a composite PK owner (#​8081) (a38cca5), closes #​8080
  • sql: normalize implicit aggregate aliases and multi word casts (#​8058) (e90c141), closes #​8055
  • sql: normalize trigger bodies when generating DDL (#​8063) (32da92f), closes #​8061
  • sql: pass a flat PK array when persisting M:N of a composite PK owner (#​8073) (f88d567)

v7.1.8

Compare Source

Bug Fixes

v7.1.7

Compare Source

Bug Fixes
  • core: ignore special object keys in assign() (#​7998) (6c65ffb)
  • core: support same-named nested embeddables with different props in polymorphic embeddables (#​7986) (c926fd8), closes #​7983
  • mariadb: keep JSON columns as strings on mysql2 3.23+ (#​7994) (0154130), closes #​7981
  • mssql: map FK, CHECK, PK/unique, deadlock and lock-timeout errors to driver exceptions (#​7959) (adc52fc)
  • mssql: retry create database when the model database is locked (#​7985) (f528107)
  • postgres: make check introspection columnName deterministic (#​7992) (ab14f97), closes #​7991
  • sql: validate order by direction against known values (#​7996) (3aba926)

v7.1.6

Compare Source

Bug Fixes

v7.1.5

Compare Source

Bug Fixes

v7.1.4

Compare Source

Bug Fixes
Features

v7.1.3

Compare Source

Bug Fixes
Features

[v7.1.2](https://redirect.github.com/mikro-orm/

Note

PR body was truncated to here.


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.

👻 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 5 times, most recently from 58cc554 to 158763d Compare April 8, 2024 20:31
@renovate
renovate Bot force-pushed the renovate/major-all-major-dependencies branch 3 times, most recently from 04d6f92 to 91784ae Compare April 15, 2024 17:30
@renovate
renovate Bot force-pushed the renovate/major-all-major-dependencies branch 6 times, most recently from d7facc6 to df11f83 Compare April 26, 2024 11:45
@renovate
renovate Bot force-pushed the renovate/major-all-major-dependencies branch 5 times, most recently from deffec8 to 426386a Compare May 3, 2024 19:49
@renovate
renovate Bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from 7992d32 to 2878667 Compare May 7, 2024 14:28
@renovate
renovate Bot force-pushed the renovate/major-all-major-dependencies branch 5 times, most recently from 869f391 to c951c89 Compare May 19, 2024 23:31
@renovate
renovate Bot force-pushed the renovate/major-all-major-dependencies branch 3 times, most recently from 72bf104 to 96c78d0 Compare May 27, 2024 23:13
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