Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

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

Merged
merged 1 commit into from
Mar 12, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 11, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@aws-sdk/client-s3 (source) ^3.525.0 -> ^3.529.1 age adoption passing confidence devDependencies minor
@aws-sdk/client-s3 (source) ^3.525.0 -> ^3.529.1 age adoption passing confidence dependencies minor
@commitlint/cli (source) ^19.0.3 -> ^19.1.0 age adoption passing confidence devDependencies minor
@commitlint/config-conventional (source) ^19.0.3 -> ^19.1.0 age adoption passing confidence devDependencies minor
@prisma/client (source) 5.10.2 -> 5.11.0 age adoption passing confidence dependencies minor
@swc/core (source) ^1.4.2 -> ^1.4.6 age adoption passing confidence devDependencies patch
@types/node (source) ^20.11.24 -> ^20.11.26 age adoption passing confidence devDependencies patch
@types/react (source) 18.2.61 -> 18.2.65 age adoption passing confidence devDependencies patch
@types/react-dom (source) 18.2.19 -> 18.2.21 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin (source) ^7.1.1 -> ^7.2.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser (source) ^7.1.1 -> ^7.2.0 age adoption passing confidence devDependencies minor
aws (source) 5.39.0 -> 5.40.0 age adoption passing confidence required_provider minor
eslint-config-next (source) 14.1.1 -> 14.1.3 age adoption passing confidence devDependencies patch
lefthook ^1.6.4 -> ^1.6.5 age adoption passing confidence devDependencies patch
lucide-react (source) ^0.350.0 -> ^0.356.0 age adoption passing confidence dependencies minor
next (source) 14.1.1 -> 14.1.3 age adoption passing confidence dependencies patch
next-auth (source) ^4.24.6 -> ^4.24.7 age adoption passing confidence dependencies patch
prettier-plugin-tailwindcss ^0.5.11 -> ^0.5.12 age adoption passing confidence devDependencies patch
prisma (source) ^5.10.2 -> ^5.11.0 age adoption passing confidence devDependencies minor
typescript (source) ^5.3.3 -> ^5.4.2 age adoption passing confidence devDependencies minor

Release Notes

aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)

v3.529.1

Compare Source

Note: Version bump only for package @​aws-sdk/client-s3

v3.529.0

Compare Source

Note: Version bump only for package @​aws-sdk/client-s3

conventional-changelog/commitlint (@​commitlint/cli)

v19.1.0

Compare Source

Note: Version bump only for package @​commitlint/cli

19.0.3 (2024-02-28)

Note: Version bump only for package @​commitlint/cli

19.0.2 (2024-02-28)

Note: Version bump only for package @​commitlint/cli

19.0.1 (2024-02-27)

Bug Fixes
  • drop resolve-from, resolve-global and import-fresh, resolve global packages correctly (#​3939) (8793c63), closes #​3938
conventional-changelog/commitlint (@​commitlint/config-conventional)

v19.1.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

19.0.3 (2024-02-28)

Note: Version bump only for package @​commitlint/config-conventional

prisma/prisma (@​prisma/client)

v5.11.0

Compare Source

Today, we are excited to share the 5.11.0 stable release 🎉

🌟 Help us spread the word about Prisma by starring the repo ☝️ or posting on X about the release.

Highlights
Edge function support for Cloudflare and Vercel (Preview)

We’re thrilled to announce that support for edge function deployments with Prisma ORM is now in Preview 🥳 As of this release, you can deploy your apps that are using Prisma ORM to:

  • Vercel Edge Functions and Vercel Edge Middleware
  • Cloudflare Workers and Cloudflare Pages

In order to deploy to an edge function, you’ll need to use a compatible database driver (along with its Prisma driver adapter):

  • Neon Serverless Driver (for PostgreSQL databases hosted via Neon)
  • PlanetScale Serverless Driver (for MySQL databases hosted via PlanetScale)
  • pg driver (for traditional PostgreSQL databases)
  • @libsql/client driver (for SQLite databases hosted via Turso)

Check out our documentation to learn how you can deploy an edge function using any combination of supported edge function provider and database.

Performance improvements in nested create operations

With Prisma ORM, you can create multiple new records in nested queries, for example:

const user = await prisma.user.update({
  where: { id: 9 },
  data: {
    name: 'Elliott',
    posts: {
      create: {
        data: [{ title: 'My first post' }, { title: 'My second post' }],
      },
    },
  },
})

In previous versions, Prisma ORM would translate this into multiple SQL INSERT queries, each requiring its own roundtrip to the database. As of this release, these nested create queries are optimized and the INSERT queries are sent to the database in bulk in a single roundtrip. These optimizations apply to one-to-many as well as many-to-many relations.

With this change, using the nested create option to create multiple records effectively becomes equivalent to using a nested createMany operation (except that createMany only works with one-to-many relations, whereas create works both with one-to-many and many-to-many).

Note: Only the deepest nested operation is optimized. If a user specified create (1) -> create (2) -> create (3) in their query, only create (3) will be optimized.

Fixes and improvements
Prisma Client
Prisma Migrate
Prisma Engines
swc-project/swc (@​swc/core)

v1.4.6

Compare Source

Bug Fixes
Performance

v1.4.5

Compare Source

Bug Fixes
Features

v1.4.4

Compare Source

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v7.2.0

Compare Source

🚀 Features
  • support TS 5.4

  • eslint-plugin: [prefer-string-starts-ends-with] add allowSingleElementEquality option

🩹 Fixes
  • eslint-plugin: expose *-type-checked-only configs for extension

  • eslint-plugin: [member-ordering] report alphabetical sorting for all groups instead of just the first failing group

  • eslint-plugin: [no-var-requires, no-require-imports] support template literal

  • eslint-plugin: [no-useless-template-literals] detect TemplateLiteral

  • eslint-plugin: [no-unnecessary-condition] handle union array and tuple type

  • eslint-plugin: [prefer-find] support ternary branches in prefer-find

❤️ Thank You
  • Arka Pratim Chaudhuri
  • auvred
  • Chris Plummer
  • Fotis Papadogeorgopoulos
  • Josh Goldberg ✨
  • Kirk Waiblinger
  • Wayne Zhang
  • YeonJuan

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v7.2.0

Compare Source

🚀 Features
  • support TS 5.4
❤️ Thank You
  • Arka Pratim Chaudhuri
  • auvred
  • Chris Plummer
  • Fotis Papadogeorgopoulos
  • Josh Goldberg ✨
  • Kirk Waiblinger
  • Wayne Zhang
  • YeonJuan

You can read about our versioning strategy and releases on our website.

hashicorp/terraform-provider-aws (aws)

v5.40.0

Compare Source

FEATURES:

ENHANCEMENTS:

  • data-source/aws_rds_engine_version: Add has_major_target and has_minor_target optional arguments and valid_major_targets and valid_minor_targets attributes (#​36246)
  • resource/aws_batch_job_queue: added parameter compute_environment_order which conflicts with compute_environments but aligns with AWS API. compute_environments has been deprecated. (#​34750)
  • resource/aws_cloudfront_distribution: Remove the upper limit on origin.custom_origin_config.origin_read_timeout (#​36088)
  • resource/aws_db_instance: Add io2 as a valid value for storage_type (#​36252)
  • resource/aws_elasticache_serverless_cache: Add plan-time validation of cache_usage_limits.ecpu_per_second.maximum (#​35927)
  • resource/aws_iot_policy: Add tagging support (#​36102)
  • resource/aws_iot_role_alias: Add tagging support (#​36255)
  • resource/aws_opensearch_domain: Add use_off_peak_window argument to the auto_tune_options configuration block (#​36067)
  • resource/aws_rds_cluster: Add io2 as a valid value for storage_type (#​36252)
  • resource/aws_s3_bucket_object: Adds attribute arn. (#​35710)
  • resource/aws_s3_object: Adds attribute arn. (#​35710)
  • resource/aws_s3_object_copy: Adds attribute arn. (#​35710)
  • resource/aws_wafv2_rule_group: Add evaluation_window_sec argument to the rate_based_statement configuration block (#​36045)
  • resource/aws_wafv2_web_acl: Add evaluation_window_sec argument to the rate_based_statement configuration block (#​36045)

BUG FIXES:

  • data-source/aws_rds_engine_version: Fix bugs that could limit engine version to a default version even when not appropriate (#​36246)
  • resource/aws_db_instance: Correctly sets parameter_group_name when replicate_source_db is in different region. (#​36080)
  • resource/aws_elastic_beanstalk_environment: Fix InvalidParameterValue: Environment named ... is in an invalid state for this operation. Must be Ready errors when tags are updated along with other attributes (#​36074)
  • resource/aws_elasticache_serverless_cache: Change cache_usage_limits.data_storage.maximum and cache_usage_limits.ecpu_per_second.maximum to ForceNew (#​35927)
  • resource/aws_medialive_channel: Fix handling of optional encoder_settings.audio_descriptions arguments (#​36097)
  • resource/aws_rds_global_cluster: Fix bugs and delays that could occur when performing major or minor version upgrades (#​36246)
  • resource/aws_s3_bucket: Tags with empty values no longer remove all tags. (#​35710)
  • resource/aws_s3_bucket_object: Tags with empty values no longer remove all tags. (#​35710)
  • resource/aws_s3_object: Tags with empty values no longer remove all tags. (#​35710)
  • resource/aws_s3_object_copy: Tags with empty values no longer remove all tags. (#​35710)
  • resource/aws_vpclattice_listener_rule: Remove action.forward.target_groups maximum item limit (#​36095)

v5.39.1

Compare Source

BUG FIXES:

  • data-source/aws_instance: Fix panic: Invalid address to set related to root_block_device.0.tags_all (#​36054)
vercel/next.js (eslint-config-next)

v14.1.3

Compare Source

v14.1.2

Compare Source

evilmartians/lefthook (lefthook)

v1.6.5

Compare Source

lucide-icons/lucide (lucide-react)

v0.356.0: New icons 0.356.0

Compare Source

New icons 🎨

v0.355.0: New icons 0.355.0

Compare Source

Modified Icons 🔨

v0.354.0: New icons 0.354.0

Compare Source

Modified Icons 🔨

v0.353.0: New icons 0.353.0

Compare Source

New icons 🎨

v0.352.0: New icons 0.352.0

Compare Source

Modified Icons 🔨

v0.351.0: New icons 0.351.0

Compare Source

New icons 🎨

Modified Icons 🔨

vercel/next.js (next)

v14.1.3

Compare Source

v14.1.2

Compare Source

nextauthjs/next-auth (next-auth)

v4.24.7

Compare Source

Others

tailwindlabs/prettier-plugin-tailwindcss (prettier-plugin-tailwindcss)

v0.5.12

Compare Source

Added
  • Add support for prettier-plugin-sort-imports (#​241)
  • Add support for Tailwind CSS v4.0 (#​249)
Microsoft/TypeScript (typescript)

v5.4.2: TypeScript 5.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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 has been generated by Mend Renovate. View repository job log here.

Copy link

vercel bot commented Mar 11, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
official-webpage ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 12, 2024 7:45pm

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0ec2140 to 6d9a87c Compare March 12, 2024 19:43
@jspark2000 jspark2000 merged commit 4071156 into main Mar 12, 2024
12 checks passed
@jspark2000 jspark2000 deleted the renovate/all-minor-patch branch March 12, 2024 19:54
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Update dedependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant