Skip to content

chore: Update non-major dependencies - #215

Closed
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/non-major-dependencies
Closed

chore: Update non-major dependencies#215
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/non-major-dependencies

Conversation

@renovate

@renovate renovate Bot commented Jun 19, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@chitrank2050/git-hygiene (source) ^0.4.11^0.4.12 age adoption passing confidence
@clack/prompts (source) ^1.2.0^1.6.0 age adoption passing confidence
@hono/node-server >=1.19.13>=1.19.14 age adoption passing confidence
@nestjs/cli ^11.0.17^11.0.23 age adoption passing confidence
@nestjs/common (source) ^11.1.18^11.1.27 age adoption passing confidence
@nestjs/config ^4.0.3^4.0.4 age adoption passing confidence
@nestjs/core (source) ^11.1.18^11.1.27 age adoption passing confidence
@nestjs/platform-express (source) ^11.1.18^11.1.27 age adoption passing confidence
@nestjs/schematics ^11.0.10^11.1.0 age adoption passing confidence
@nestjs/swagger ^11.2.6^11.4.5 age adoption passing confidence
@nestjs/testing (source) ^11.1.18^11.1.27 age adoption passing confidence
@prisma/adapter-pg (source) ^7.6.0^7.8.0 age adoption passing confidence
@prisma/client (source) ^7.6.0^7.8.0 age adoption passing confidence
@scalar/nestjs-api-reference (source) ^1.1.10^1.2.7 age adoption passing confidence
@swc/core (source) ^1.15.24^1.15.43 age adoption passing confidence
@trivago/prettier-plugin-sort-imports ^6.0.0^6.0.2 age adoption passing confidence
@types/express (source) ^5.0.0^5.0.6 age adoption passing confidence
@types/node (source) ^25.5.2^25.9.4 age adoption passing confidence
@vitest/coverage-v8 (source) ^4.1.4^4.1.9 age adoption passing confidence
@vitest/ui (source) ^4.1.4^4.1.9 age adoption passing confidence
dotenv ^17.4.1^17.4.2 age adoption passing confidence
eslint (source) ^10.0.0^10.6.0 age adoption passing confidence
eslint-config-prettier ^10.0.1^10.1.8 age adoption passing confidence
globals ^17.5.0^17.7.0 age adoption passing confidence
helmet (source) ^8.1.0^8.2.0 age adoption passing confidence
ioredis ^5.10.1^5.11.1 age adoption passing confidence
knip (source) ^6.6.2^6.23.0 age adoption passing confidence
lefthook ^2.1.6^2.1.9 age adoption passing confidence
markdownlint-cli ^0.48.0^0.49.0 age adoption passing confidence
node (source) >=24.0.0>=24.18.0 age adoption passing confidence
pg (source) ^8.16.0^8.22.0 age adoption passing confidence
prettier (source) ^3.4.2^3.9.4 age adoption passing confidence
prisma (source) ^7.7.0^7.8.0 age adoption passing confidence
rxjs (source) ^7.8.1^7.8.2 age adoption passing confidence
stripe ^22.1.1^22.3.0 age adoption passing confidence
supertest ^7.0.0^7.2.2 age adoption passing confidence
ts-loader ^9.5.7^9.6.2 age adoption passing confidence
tsx (source) ^4.21.0^4.22.4 age adoption passing confidence
typescript-eslint (source) ^8.58.0^8.62.1 age adoption passing confidence
vitest (source) ^4.1.4^4.1.9 age adoption passing confidence

Release Notes

bombshell-dev/clack (@​clack/prompts)

v1.6.0

Compare Source

Minor Changes
  • #​568 f87933f Thanks @​florian-lefebvre! - Updates default formatter of note() to note dim lines anymore

    If you want the old behavior, provide a format() function:

    import { note } from '@​clack/prompts';
    +import { styleText } from 'node:util';
    
    note(
      'You can edit the file src/index.jsx',
      'Next steps.'
    +  { format: (text) => styleText('dim', text) }
    );
  • #​567 cc6aab5 Thanks @​dreyfus92! - Add keyboard instruction footers to select, multiselect, and groupMultiselect in the active state, matching autocomplete. No option — always shown.

Patch Changes

v1.5.1

Compare Source

Patch Changes

v1.5.0

Compare Source

Minor Changes
  • #​543 83428ac Thanks @​florian-lefebvre! - Adds support for Standard Schema validation

    Prompts accept an optional validate() function to validate user input. While a function provides more flexibility and customization over your validation, it can be a bit verbose. To help solve this, there are libraries that provide schema-based validation to make shorthand and type-strict validation substantially easier.

    Libraries following the Standard Schema specification are now natively supported. For example, using Arktype:

    import { text } from '@​clack/prompts';
    import { type } from 'arktype';
    
    const name = await text({
    	message: 'Enter your email',
    +	validate: type('string.email').describe('Invalid email'),
    });
Patch Changes
honojs/node-server (@​hono/node-server)

v1.19.14

Compare Source

What's Changed

  • fix: add custom inspect to lightweight Request/Response to prevent TypeError on console.log by @​usualoma in #​340

Full Changelog: honojs/node-server@v1.19.13...v1.19.14

nestjs/nest-cli (@​nestjs/cli)

v11.0.23

Compare Source

  • Revert "fix(compiler): validate delete out dir paths before rm" (0dd0e3e)
  • Revert "fix(compiler): validate asset output paths" (728f80c)

v11.0.22

Compare Source

  • fix(cli): resolve Windows path separator bug in plugin loader (9e502bd)
  • fix(compiler): validate asset output paths (c4342b2)
  • fix: Update CRUD option to accept a value for generating entry points (4c0e2ca)
  • feat: Add type and CRUD options in generate command (b19856a)
nestjs/nest (@​nestjs/common)

v11.1.27

Compare Source

What's Changed

Full Changelog: nestjs/nest@v11.1.26...v11.1.27

v11.1.26

Compare Source

What's Changed

Full Changelog: nestjs/nest@v11.1.25...v11.1.26

v11.1.25

Compare Source

What's Changed
New Contributors

Full Changelog: nestjs/nest@v11.1.24...v11.1.25

v11.1.24

Compare Source

v11.1.24 (2026-05-25)
Bug fixes
Enhancements
Dependencies
Committers: 2

v11.1.23

Compare Source

v11.1.23 (2026-05-21)
Bug fixes
  • core
    • #​16998 fix snapshot: true eagerly instantiates Terminus transient indicators since 11.1.20
Committers: 1

v11.1.22

Compare Source

v11.1.22 (2026-05-21)
Bug fixes
Enhancements
Committers: 2
nestjs/swagger (@​nestjs/swagger)

v11.4.5

Compare Source

What's Changed

Full Changelog: nestjs/swagger@11.4.4...11.4.5

v11.4.4

Compare Source

11.4.4 (2026-05-21)

Bug fixes
Enhancements
Committers: 4
scalar/scalar (@​scalar/nestjs-api-reference)

v1.2.7

v1.2.6

v1.2.5

v1.2.4

v1.2.3

v1.2.2

v1.2.1

v1.2.0

Minor Changes
  • #​9422: Add a nonce option for Content Security Policy support.

    When you pass a nonce, the rendered HTML stamps it onto the inline <script> and the CDN <script> tag (and Scalar's own <style> tags, plus a matching <meta property="csp-nonce">). This lets the API Reference run under a strict script-src with no unsafe-inline and no unsafe-eval.

    ApiReference({
      url: '/openapi.json',
      // Match this value in your `script-src` CSP directive.
      nonce: 'r4nd0m',
    })

    Note: style-src still needs 'unsafe-inline'. The reference renders inline style="…" attributes, which a CSP nonce can never authorize (nonces only apply to <script>, <style> and <link> elements), so a nonce-only style-src is not possible. The win is a fully strict script-src.

v1.1.20

v1.1.19

v1.1.18

v1.1.17

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

v1.15.43

Compare Source

Bug Fixes
Documentation
Features
Miscellaneous Tasks
  • (es/react-compiler) Update forked react compiler to 0.2.0 (#​11946) (6fbe188)
Refactor

v1.15.41

Compare Source

Bug Fixes
Documentation
Performance
Revert

v1.15.40

Compare Source

Bug Fixes
  • (es/minifier) Preserve args for destructured callbacks (#​11830) (21873b0)

  • (es/minifier) Avoid generating mangled property names that collide with existing properties (#​11839) (9b4fab5)

  • (es/minifier) Respect ecma for iife temp vars (#​11873) (e481934)

  • (es/minifier) Preserve default parameter object props (#​11884) (71ff84f)

  • (es/parser) Reject object-rest assignment to array/object literal (#​11875) (7b57d1f)

  • (es/parser) Reject object rest assignment to literals (#​11881) (4ec2eaf)

  • (es/react) Exclude self-recursive hooks from refresh dependency array (#​11838) (9101c71)

  • (ts/fast-dts) Strip definite assertions in dts (#​11858) (2ab1b8a)

  • (ts/fast-strip) Reject unsafe assertion erasure in binary expressions (#​11828) (aa5b539)

  • (typescript) Strip parameter binding defaults in dts (#​11857) (800bc17)

Documentation
Features
Miscellaneous Tasks
Performance
Testing
  • (es/minifier) Move issue_11835 fixture out of terser folder (#​11840) (3dd3431)
Ci

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Asia/Kolkata)

  • Branch creation
    • "on the first day of the month"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

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 requested a review from chitrank2050 as a code owner June 19, 2026 19:54
@renovate renovate Bot added dependencies Pull requests that update a dependency file renovate labels Jun 19, 2026
@renovate
renovate Bot enabled auto-merge (squash) June 19, 2026 19:54
@renovate renovate Bot added the renovate label Jun 19, 2026
@chitrank-actions chitrank-actions Bot added the area/deps Dependency upgrades and lockfile updates label Jun 19, 2026
@renovate
renovate Bot force-pushed the renovate/non-major-dependencies branch from e560b84 to ab837e1 Compare June 30, 2026 18:40
auto-merge was automatically disabled July 2, 2026 16:28

Pull request was closed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/deps Dependency upgrades and lockfile updates dependencies Pull requests that update a dependency file renovate

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant