Skip to content
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

chore(deps): update all non-major dependencies #10

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 31, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@swc/cli ^0.3.12 -> ^0.4.0 age adoption passing confidence
@swc/core (source) ^1.5.24 -> ^1.7.26 age adoption passing confidence
@types/node (source) ^20.12.13 -> ^20.16.5 age adoption passing confidence
@types/pg (source) ^8.11.6 -> ^8.11.10 age adoption passing confidence
drizzle-kit (source) ^0.22.7 -> ^0.24.2 age adoption passing confidence
drizzle-orm (source) 0.31.2 -> 0.33.0 age adoption passing confidence
hyper-express ^6.16.2 -> ^6.17.2 age adoption passing confidence
pg (source) ^8.11.5 -> ^8.13.0 age adoption passing confidence
pino (source) ^9.1.0 -> ^9.4.0 age adoption passing confidence
pino-pretty ^11.1.0 -> ^11.2.2 age adoption passing confidence
rimraf ^5.0.7 -> ^5.0.10 age adoption passing confidence

Release Notes

swc-project/swc (@​swc/core)

v1.7.26

Compare Source

v1.7.25

Compare Source

Bug Fixes
Features
  • (es/common) Introduce pure Span and BytePos to handle #__PURE__ (#​9539) (f63a481)
Miscellaneous Tasks
  • (bindings/node) Fix type definition (64ec111)

v1.7.24

Compare Source

Bug Fixes
  • (es/compat) Handle label block in constructor (#​9528) (c43dbad)

  • (es/decorator) Add support for private access expressions in legacy decorators (#​9535) (62ed065)

  • (es/minifier) typeof class should be function (#​9522) (c7fdd6b)

  • (es/minifier) Prevent removing side effects from accessing getter (#​9530) (8513816)

  • (es/typescript) Handle enum in single statement (#​9532) (84b0043)

v1.7.23

Compare Source

Bug Fixes
Performance

v1.7.22

Compare Source

Bug Fixes
  • (es/minifier) Iterate object properties in reverse direction while inlining property access (#​9507) (f584ef7)

v1.7.21

Compare Source

Bug Fixes

v1.7.19

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
  • (es/codegen) Bump minimum required swc_allocator version to 0.1.8 (#​9492) (5258763)
Refactor

v1.7.18

Compare Source

v1.7.14

Compare Source

Bug Fixes
Features
Refactor

v1.7.12

Compare Source

Bug Fixes
Miscellaneous Tasks

v1.7.11

Compare Source

Bug Fixes
Features
  • (es/typescript) Add native_class_properties to skip reordering of class properties inits (#​9421) (d2929d1)

  • (estree/compat) Remove dependency on rayon (#​9393) (34d1b27)

  • (html/minifier) Support using custom css minifier (#​9425) (970cc81)

Miscellaneous Tasks

v1.7.10

Compare Source

Bug Fixes
  • (es/typescript) Strip optional mark and definite mark (#​9411) (8c161a0)

  • (es/typescript) Strip exported default overload function declaration (#​9412) (b395f48)

  • (es/typescript) Strip this param in getter/setter (#​9414) (442fb7b)

  • (es/typescript) Update ts-strip type definition (#​9415) (165c8fa)

v1.7.9

Compare Source

Bug Fixes

v1.7.6

Compare Source

Bug Fixes
  • (es/codegen) Print the missing abstract in class expression (#​9372) (c2e3021)

  • (es/decorators) Use correct class name reference (#​9375) (badd6a9)

  • (es/typescript) Strip declare export in strip-only mode (#​9374) (c53cce4)

v1.7.5

Compare Source

Bug Fixes
Miscellaneous Tasks

v1.7.4

Compare Source

Bug Fixes
Documentation
Miscellaneous Tasks

v1.7.3

Compare Source

Bug Fixes

v1.7.2

Compare Source

Bug Fixes
Documentation
  • (bindings/wasm) Document supported TypeScript version (#​9334) (66f31c0)

v1.7.1

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
Performance
Refactor
Build

v1.7.0

Compare Source

Bug Fixes
Documentation
  • (allocator) Mention oxc_allocator (be99ce0)

  • (contributing) Fix deno installation url (#​9249) (ff5bbda)

  • (es/minifier) Add contributing section (e22f3ba)

Features
Miscellaneous Tasks
Performance
Refactor
Testing
Pers

v1.6.13

Compare Source

Bug Fixes
Features
Testing

v1.6.12

Compare Source

Bug Fixes
Features
Performance
Refactor

v1.6.7

Compare Source

Bug Fixes
Documentation
  • Use @swc/counter for 3rd-party download count (026ff7e)
Features
Performance
Refactor
  • (es/typescript) Extract type annotation proposal out (#​9127) (dfee5f8)
Testing
Build

v1.6.6

Compare Source

Bug Fixes
Performance
drizzle-team/drizzle-orm (drizzle-kit)

v0.24.2

Compare Source

New Features

🎉 Support for pglite driver

You can now use pglite with all drizzle-kit commands, including Drizzle Studio!

import { defineConfig } from "drizzle-kit";

export default defineConfig({
  dialect: "postgresql",
  driver: "pglite",
  schema: "./schema.ts",
  dbCredentials: {
    url: "local-pg.db",
  },
  verbose: true,
  strict: true,
});

Bug fixes

  • mysql-kit: fix GENERATED ALWAYS AS ... NOT NULL - #​2824

v0.24.1

Compare Source

Bug fixes

Big thanks to @​L-Mario564 for his PR. It conflicted in most cases with a PR that was merged, but we incorporated some of his logic. Merging it would have caused more problems and taken more time to resolve, so we just took a few things from his PR, like removing "::" mappings in introspect and some array type default handlers

What was fixed
  1. The Drizzle Kit CLI was not working properly for the introspect command.
  2. Added the ability to use column names with special characters for all dialects.
  3. Included PostgreSQL sequences in the introspection process.
  4. Reworked array type introspection and added all test cases.
  5. Fixed all (we hope) default issues in PostgreSQL, where ::<type> was included in the introspected output.
  6. preserve casing option was broken
Tickets that were closed

Configuration

📅 Schedule: Branch creation - "before 6am" in timezone Asia/Jakarta, 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.

👻 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/all-minor-patch branch 3 times, most recently from be0fb65 to 5b94780 Compare June 2, 2024 11:12
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Jun 2, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5b94780 to 410768d Compare June 2, 2024 11:46
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Jun 2, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 59d18d1 to c9a6954 Compare June 8, 2024 12:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 6409fd0 to 28ffcb4 Compare June 16, 2024 10:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6fabeca to e58c10c Compare June 18, 2024 10:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 6baecfd to e31f7c7 Compare August 14, 2024 09:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 789e651 to 1416463 Compare August 22, 2024 15:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from fbb6426 to fc72d28 Compare August 30, 2024 10:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 8c907a1 to 06b5f1b Compare September 8, 2024 09:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 0df224e to bcbb44f Compare September 17, 2024 16:41
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