Skip to content

chore(monorepo): update auto-merge non-major dependencies#11

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/auto-merge-non-major-dependencies
Open

chore(monorepo): update auto-merge non-major dependencies#11
renovate[bot] wants to merge 1 commit intomainfrom
renovate/auto-merge-non-major-dependencies

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Feb 12, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@cloudflare/workers-types ^4.20260508.1^4.20260510.1 age confidence pnpm.catalog.default minor
@dotenvx/dotenvx 1.35.01.65.0 age confidence pnpm.catalog.default minor
@microsoft/api-extractor (source) ^7.49.2^7.58.7 age confidence pnpm.catalog.default minor
@nx/react (source) ^22.5.4^22.7.1 age confidence pnpm.catalog.default minor
@prisma/client (source) ^6.5.0^6.19.3 age confidence pnpm.catalog.default minor
@prisma/prisma-schema-wasm (source) ^6.6.0-41.9061db3b0058e3d3731c6fe68a1b77061bed4861^6.6.0-53.f676762280b54cd07c770017ed3711ddde35f37a age confidence pnpm.catalog.default patch
@swc/wasm ^1.10.14^1.15.33 age confidence pnpm.catalog.default minor
@tanstack/react-query-devtools (source) ^5.70.0^5.100.9 age confidence pnpm.catalog.default minor
@​types/react-native 0.72.80.73.0 age confidence pnpm.catalog.default minor
GitGuardian/ggshield v1.39.0v1.50.4 age confidence action minor
capnp-es ^0.0.11^0.0.14 age confidence pnpm.catalog.default patch
cookie >=0.7.0>=0.7.2 age confidence pnpm-workspace.overrides patch
debug >=4.4.0>=4.4.3 age confidence pnpm-workspace.overrides patch
esbuild ^0.25.12^0.28.0 age confidence pnpm.catalog.default minor
follow-redirects >=1.15.9>=1.16.0 age confidence pnpm-workspace.overrides minor
got >=14.4.5>=14.6.6 age confidence pnpm-workspace.overrides minor
jest (source) 30.0.530.4.2 age confidence pnpm.catalog.default minor
jest-environment-jsdom (source) 30.0.530.4.1 age confidence pnpm.catalog.default minor
jest-util (source) 30.0.530.4.1 age confidence pnpm.catalog.default minor
knip (source) 5.43.65.88.1 age confidence pnpm.catalog.default minor
markdown-it >=14.1.0>=14.1.1 age confidence pnpm-workspace.overrides patch
markdownlint-cli2 ^0.17.2^0.22.1 age confidence pnpm.catalog.default minor
mlly 1.7.41.8.2 age confidence pnpm.catalog.default minor
nanotar ^0.2.1^0.3.0 age confidence pnpm.catalog.default minor
node (source) 24.11.124.15.0 age confidence minor
node (source) >=22.21.1>=22.22.2 age confidence engines minor
parse-path >=7.0.0>=7.1.0 age confidence pnpm-workspace.overrides minor
path-to-regexp >=0.1.12>=0.2.5 age confidence pnpm-workspace.overrides minor
pnpm (source) 10.26.010.33.4 age confidence packageManager minor
pnpm (source) >=10.24.0>=10.33.4 age confidence engines minor
postcss (source) >=8.5.1>=8.5.14 age confidence pnpm-workspace.overrides patch
semver 7.7.17.8.0 age confidence pnpm.catalog.default minor
shell-quote >=1.8.2>=1.8.3 age confidence pnpm-workspace.overrides patch
sherif 1.3.01.11.1 age confidence pnpm.catalog.default minor
simple-git (source) >=3.27.0>=3.36.0 age confidence pnpm-workspace.overrides minor
styfle/cancel-workflow-action 0.12.10.13.1 age confidence action minor
tsdown (source) ^0.21.10^0.22.0 age confidence pnpm.catalog.default minor
unbuild ^3.3.1^3.6.1 age confidence pnpm.catalog.default minor
verdaccio (source) 6.5.26.6.0 age confidence pnpm.catalog.default minor

Release Notes

cloudflare/workerd (@​cloudflare/workers-types)

v4.20260510.1

Compare Source

v4.20260509.1

Compare Source

dotenvx/dotenvx (@​dotenvx/dotenvx)

v1.65.0

Compare Source

Added
  • Add support for replaceing duplicate keys with different values (#​806)

v1.64.0

Compare Source

Added
  • Add optional dotenvx armor command.
    • armor up armor private key
    • armor down dearmor private key
    • armor push push armored key (from .env.keys)
    • armor pull pull armored key (into .env.keys)

Move private keys off device and under access control with Dotenvx Ops ⛨. Learn more

v1.63.0

Compare Source

Added
  • Add support for encrypted values passed to --env flag (#​804)
  • Add support for --format=colon in order to support cloudflare's wrangler --var flag format (#​804)

v1.62.0

Compare Source

Added
  • Add support for config({ envs }). unlocks simpler cloudflare worker integration (#​803)
$ dotenvx encrypt -f .env.txt
// src/index.js
import envSrc from '../.env.txt'
import dotenvx from '@​dotenvx/dotenvx'

const config = dotenvx.config({ envs: [{ type: 'env', value: envSrc, privateKeyName: 'DOTENV_PRIVATE_KEY' }] })
const envx = config.parsed

export default {
  async fetch(request, env, ctx) {
    return new Response(`Hello ${envx.HELLO}`)
  }
}
"scripts": {
  "deploy": "wrangler deploy",
  "dev": "wrangler dev --var $(dotenvx keypair -f .env.txt --format=colon)",
  "start": "wrangler dev --var $(dotenvx keypair -f .env.txt --format=colon)",
  "test": "vitest"
},

v1.61.6

Compare Source

Changed
  • Guard against command substitution following encrypted: (#​802)

v1.61.5

Compare Source

Changed
  • Support --hostname flag to dotenvx-ops.login (#​801)

v1.61.4

Compare Source

Changed
  • Respect SIGINT handler completion (#​798)

v1.61.3

Compare Source

Changed
  • Tighten up ext precommit --install message (#​797)

v1.61.2

Compare Source

Changed
  • For Ops ⛨ users surface stderr (#​796)

v1.61.1

Compare Source

  • Faster coldstarts! (#​781)
  • Patch dotenvx precommit|prebuild shorthand (#​793)

v1.61.0

Compare Source

Added
  • Add login and logout method that proxy to dotenvx-ops login/logout (#​780)
  • Note: dotenvx continues to make zero outgoing HTTP requests and includes no telemetry. Outgoing requests occur only if you explicitly install the dotenvx-ops SDK or CLI.

v1.60.2

Compare Source

Changed
  • Communicate local key and armored key (for Ops stored keys) (#​778)

v1.60.1

Compare Source

Added
  • Added missing + key ⛨ for Ops stored keys (#​777)

v1.60.0

Compare Source

Added
  • Add spinner with loading messages
    • injecting (run)
    • encrypting (encrypt, set)
    • decrypting (decrypt, get)
    • rotating (rotate)
    • retrieving (keypair)

v1.59.1

Compare Source

Added
  • add HELLO key to the kit sample to match most of our examples in the README

v1.59.0

Compare Source

Changed
  • encrypt and set now create a .env file if one does not exist (#​771)
  • pass --no-create to prevent file creation

v1.58.0

Compare Source

Changed
  • Changed runtime injection message to format ⟐ injecting env (N) from FILE · dotenvx@VERSION (#​770)

v1.57.5

Compare Source

Changes
  • Improve already installed message (#​768)

v1.57.4

Compare Source

Changes

v1.57.3

Compare Source

Changes
  • Simplify installed success message (#​766)

v1.57.2

Compare Source

Changes
  • Ran npm audit to update package-lock.json (#​763)

v1.57.1

Compare Source

Changes
  • improved error logs and compacted most to a single line (#​755)

  • introduced leading log glyphs as a visual status language:

    • success action (encrypted)
    • success action (set plain value, decrypted)
    • success action (rotated)
    • informational no-op (no changes)
    • success action for generated/updated support files
    • warning
    • error

v1.57.0

Compare Source

Changed
  • color and formatting changes to outputs (#​754)

v1.56.0

Compare Source

Changed
  • ops off flag — now respected by get, keypair, rotate, and encrypt (#​750)
  • --pp alias — added as shorthand for --pretty-print; toward sunsetting -pp (#​750)
Removed
  • Remove support for .env.vault files (#​750)

v1.55.1

Compare Source

Added
  • Respect dotenvx-ops status (on|off) (#​749)

v1.55.0

Compare Source

Added
Removed
  • Remove ProKeypair logic

v1.54.1

Compare Source

Changed
  • Fix npm publish

v1.53.0

Compare Source

Removed
  • Remove radar. It has been a year since replaced by ops. (#​743)

v1.52.0

Compare Source

Added
  • Pass log level options to main.set (#​731)

v1.51.4

Compare Source

Changed
  • Change description of dotenvx-ops to better reflect its tooling as operational primitives on top of dotenvx for production use cases. (#​721)

v1.51.3

Compare Source

Added
  • Add hint on .env.keys for dotenvx ops backup. Dotenvx Ops Backup lets you back up your private keys securely with just a single command. It's a convenient alterantive to manually copy/pasting them in and out of 1Password. (#​718)

v1.51.2

Compare Source

Changed

This will allow us to start dogfooding our own solution for third-party API key rotation. Third-party API key rotation would drastically improve security industry wide. Please get in touch if this is interesting to you.

v1.51.1

Compare Source

Added
  • Add opsOff type information

v1.51.0

Compare Source

Added
  • Add config({opsOff: true}) options and --ops-off flag for turning off Dotenvx Ops features. (#​680)

v1.50.1

Compare Source

Removed
  • Remove listed command to radar (now ops) (#​678)

v1.50.0

Compare Source

Added
  • Add optional dotenvx ops command (#​677)
  • Ops is a coming rename of Radar. Radar will become a feature inside ops.
  • With dotenvx ops use dotenvx across your team, infrastructure, agents, and more.
 _______________________________________________________________________
|                                                                       |
|  Dotenvx Ops: Commercial Tooling for Dotenvx                          |
|                                                                       |
|  ░▒▓██████▓▒░░▒▓███████▓▒░ ░▒▓███████▓▒░                              |
| ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░                                     |
| ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░                                     |
| ░▒▓█▓▒░░▒▓█▓▒░▒▓███████▓▒░ ░▒▓██████▓▒░                               |
| ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░             ░▒▓█▓▒░                              |
| ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░             ░▒▓█▓▒░                              |
|  ░▒▓██████▓▒░░▒▓█▓▒░      ░▒▓███████▓▒░                               |
|                                                                       |
|  Use dotenvx across your team, infrastructure, agents, and more.      |
|                                                                       |
|  Learn more at https://dotenvx.com/ops                                |
|_______________________________________________________________________|

v1.49.1

Compare Source

Changed
  • 🐞 patch bug with variable expansion of single quoted values (#​675)

v1.49.0

Compare Source

Added
  • For precommit and prebuild, ignore .env.x file like we do with .env.vault file. (#​666)

v1.48.4

Compare Source

Removed
  • Remove unnecessary use of eval in proKeypair helper (#​654)

v1.48.3

Compare Source

Changed
  • Include privateKeyName and privateKey on internal processedEnv object (#​649)

v1.48.2

Compare Source

Changed
  • Check radar status before sending (#​646)

v1.48.1

Compare Source

Changed
  • Send beforEnv and afterEnv to Radar if user has installed (#​645)

v1.48.0

Compare Source

Added
  • Include beforeEnv and afterEnv for user debugging (#​644)

v1.47.7

Compare Source

Changed
  • src should be in internal processEnv object (#​643)

v1.47.6

Compare Source

Changed
  • Make Radar call non-blocking (#​642)

v1.47.5

Compare Source

Changed
  • Add resilient handling of any Radar failures (#​639)

v1.47.4

Compare Source

Changed

v1.47.3

Compare Source

Added
  • Send to radar#observe if Radar installed by user (#​631)
Removed
  • Remove cli in package.json (#​632)

v1.47.2

Compare Source

Added
  • Export cli in package.json (#​629)

v1.47.1

Compare Source

Added
  • Add convenience log that radar active 📡 when dotenvx-radar is installed (#​625)

v1.47.0

Compare Source

Added
  • Add optional dotenvx radar command (#​624)
  • Radar is an early access commercial extension for dotenvx that will auto backup your .env files.
 _______________________________________________________________________
|                                                                       |
|  Dotenvx Radar: Env Observability                                     |
|                                                                       |
|  ░▒▓███████▓▒░ ░▒▓██████▓▒░░▒▓███████▓▒░ ░▒▓██████▓▒░░▒▓███████▓▒░    |
|  ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░   |
|  ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░   |
|  ░▒▓███████▓▒░░▒▓████████▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓████████▓▒░▒▓███████▓▒░    |
|  ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░   |
|  ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░   |
|  ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓███████▓▒░░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░   |
|                                                                       |
|  Observe, version, and back up your environment variables at runtime. |
|                                                                       |
|  Purchase lifetime access at https://dotenvx.com/radar                |
|                                                                       |
| --------------------------------------------------------------------- |
| - thank you for using dotenvx! - @​motdotla                            |
|_______________________________________________________________________|

v1.46.0

Compare Source

Added
  • Add error when hoisting issue experienced around commander.js (#​623)
Removed
  • Remove git-dotenvx and git dotenvx shorthand (#​621)

v1.45.2

Compare Source

Changed
  • Minor README updates

v1.45.1

Compare Source

Changed
  • Include setLogName and setLogVersion in config (#​613)

v1.45.0

Compare Source

Added
  • Add logger.setName and logger.setVersion for customization of logger (#​612)

v1.44.2

Compare Source

Changed
  • Clarify license is BSD-3.

v1.44.1

Compare Source

Changed

v1.44.0

Compare Source

Added

v1.43.0

Compare Source

Removed
  • Remove errorv, errornocolor, blank from logger options (#​584)
Changed
  • Replace instances of console.error with logger.error (#​584)

v1.42.2

Compare Source

Changed
  • Fix --force flag work with ?force=true (2776715)

v1.42.1

Compare Source

Added
  • Add --force flag to install.sh (0b8d21c)

v1.42.0

Compare Source

Added
  • Add ability to override the os and arch via install.sh and dotenvx.sh (3ded752)

v1.41.0

Compare Source

Added
  • Add [directory] argument to precommit and prebuild (#​572)

v1.40.1

Compare Source

Changed

v1.40.0

Compare Source

Added
  • Smarter ext precommit and ext prebuild – catch duplicate KEYs in the same .env file where one is mistakenly left unencrypted (#​567)

v1.39.1

Compare Source

Added
  • Add version to homebrew formula (#​564)

v1.39.0

Compare Source

Added
  • Add --convention flow option to dotenvx run (#​551)
Changed

v1.38.5

Compare Source

Added
  • 🐞 Add config.d.ts file to fix type error when loading dotenvx/dotenvx/config with dynamic import (#​547)

v1.38.4

Compare Source

Changed
  • 🐞 Fix blank line disappearing after encrypting empty value (#​542)

v1.38.3

Compare Source

Changed
  • 🐞 Fix self-referencing expansion when key exists already in process.env (#​536)

v1.38.2

Compare Source

Added
  • Add typescript types for main.get.

v1.38.1

Compare Source

Changed
  • Support encrypt when mutliline contains windows CRLF (\r\n) (#​534)

Note: dotenvx will convert these \r\n newlines to \n. Our recommendation is to stop using CRLF - its origin is from typewriter days. Instead, set your editor or gitattributes to use LF.

v1.38.0

Compare Source

Changed
  • Command substitution failures no longer halt further processing of keys in a .env file (#​533)
  • A more helpful error is raised if a command substitution failure occurs (#​533)

v1.37.0

Compare Source

Added
  • add dotenvx rotate command 🎉 (#​530)

also: our whitepaper is released as a draft.

v1.36.0

Compare Source

Changed
  • --strict flag respects (doesn't throw) anything in --ignore flag (#​527)
microsoft/rushstack (@​microsoft/api-extractor)

v7.58.7

Compare Source

Mon, 20 Apr 2026 23:31:13 GMT

Version update only

v7.58.6

Compare Source

Mon, 20 Apr 2026 15:15:24 GMT

Patches
  • Fix an issue where empty lines were included in DTS rollups in place of API items that were trimmed.

v7.58.5

Compare Source

Sat, 18 Apr 2026 03:47:10 GMT

Version update only

v7.58.4

Compare Source

Sat, 18 Apr 2026 00:15:16 GMT

Patches
  • Bump semver.

v7.58.3

Compare Source

Fri, 17 Apr 2026 15:14:57 GMT

Patches
  • Remove dependecy on lodash.

v7.58.2

Compare Source

Thu, 09 Apr 2026 00:15:07 GMT

Version update only

v7.58.1

Compare Source

Sat, 04 Apr 2026 00:14:00 GMT

Patches

v7.58.0

Compare Source

Wed, 01 Apr 2026 15:13:38 GMT

Minor changes
  • Upgrade the bundled compiler engine to TypeScript 5.9.3

v7.57.8

Compare Source

Tue, 31 Mar 2026 15:14:14 GMT

Version update only

v7.57.7

Compare Source

Mon, 09 Mar 2026 15:14:07 GMT

Patches
  • Bump minimatch version from 10.2.1 to 10.2.3 to address CVE-2026-27903.

v7.57.6

Compare Source

Wed, 25 Feb 2026 21:39:42 GMT

Patches

v7.57.5

Compare Source

Wed, 25 Feb 2026 00:34:29 GMT

Version update only

v7.57.4

Compare Source

Tue, 24 Feb 2026 01:13:27 GMT

Version update only

v7.57.3

Compare Source

Mon, 23 Feb 2026 00:42:21 GMT

Patches
  • Add missing "./extends/*.json" to the package.json "exports" field so that "@​microsoft/api-extractor/extends/tsdoc-base.json" is importable.

v7.57.2

Compare Source

Fri, 20 Feb 2026 16:14:49 GMT

Patches
  • Bump minimatch from 10.1.2 to 10.2.1

v7.57.1

Compare Source

Fri, 20 Feb 2026 00:15:03 GMT

Patches
  • Add "node" condition before "import" in the "exports" map so that Node.js uses the CJS output (which handles extensionless imports), while bundlers still use ESM via "import". Fixes #​5644.

v7.57.0

Compare Source

Thu, 19 Feb 2026 00:04:52 GMT

Minor changes
  • Normalize package layout. CommonJS is now under lib-commonjs, DTS is now under lib-dts, and ESM is now under lib-esm. Imports to lib still work as before, handled by the "exports" field in package.json.

v7.56.3

Compare Source

Sat, 07 Feb 2026 01:13:26 GMT

Patches
  • Upgrade lodash dependency from ~4.17.15 to ~4.17.23.

v7.56.2

Compare Source

Wed, 04 Feb 2026 20:42:47 GMT

Patches
  • Update minimatch dependency from 10.0.3 to 10.1.2

v7.56.1

Compare Source

Wed, 04 Feb 2026 16:13:27 GMT

Version update only

v7.56.0

Compare Source

Fri, 30 Jan 2026 01:16:12 GMT

Minor changes
  • Fix an issue where destructured parameters produced an incorrect parameter name

v7.55.5

Compare Source

Thu, 08 Jan 2026 01:12:30 GMT

Patches
  • Fix missing 'export' keyword for namespace re-exports that produced invalid TypeScript output

v7.55.2

Compare Source

Sat, 06 Dec 2025 01:12:28 GMT

Version update only

v7.55.1

Compare Source

Fri, 21 Nov 2025 16:13:56 GMT

Version update only

v7.55.0

Compare Source

Wed, 12 Nov 2025 01:12:56 GMT

Minor changes
  • Bump the @microsoft/tsdoc dependency to ~0.16.0.
  • Bump the @microsoft/tsdoc-config dependency to ~0.18.0.

v7.54.0

[Compare Source](https://redirect.github.com/microsoft/rushstack/compare/@microsoft/api-extractor

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone America/New_York)

  • Branch creation
    • "after 2am and before 3am"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

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 requested a review from sullivanpj as a code owner February 12, 2025 09:04
@renovate renovate Bot added the dependencies Upgrade or downgrade of project dependencies. label Feb 12, 2025
@renovate renovate Bot requested a review from a team as a code owner February 12, 2025 09:04
@renovate renovate Bot enabled auto-merge February 12, 2025 09:04
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Feb 12, 2025

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.

@renovate renovate Bot force-pushed the renovate/auto-merge-non-major-dependencies branch 19 times, most recently from 68221d7 to 769bd1f Compare February 19, 2025 17:01
@renovate renovate Bot force-pushed the renovate/auto-merge-non-major-dependencies branch 6 times, most recently from 3be4251 to 96371f2 Compare February 23, 2025 00:24
@renovate renovate Bot force-pushed the renovate/auto-merge-non-major-dependencies branch 8 times, most recently from b664b6b to 5b4af5f Compare March 7, 2025 10:19
Comment thread .github/workflows/gitguardian.yml Fixed
Comment thread .github/workflows/gitguardian.yml Fixed
Comment thread .github/workflows/gitguardian.yml Fixed
Comment thread .github/workflows/gitguardian.yml Fixed
Comment thread .github/workflows/gitguardian.yml Fixed
Comment thread .github/workflows/gitguardian.yml Fixed
Comment thread .github/workflows/gitguardian.yml Fixed
Comment thread .github/workflows/gitguardian.yml Fixed
Comment thread .github/workflows/gitguardian.yml Fixed
@socket-security
Copy link
Copy Markdown

socket-security Bot commented Sep 8, 2025

No dependency changes detected. Learn more about Socket for GitHub.

👍 No dependency changes detected in pull request

Comment thread .github/workflows/gitguardian.yml Fixed
Comment thread .github/workflows/gitguardian.yml Fixed
Comment thread .github/workflows/gitguardian.yml Fixed
Comment thread .github/workflows/gitguardian.yml Fixed
Comment thread .github/workflows/gitguardian.yml Fixed
Comment thread .github/workflows/codeql.yml Fixed
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Jan 15, 2026

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
Installing config dependencies...
Installed config dependencies: pnpm-plugin-storm-software@0.1.5
Scope: all 30 workspace projects
Fetching Node.js 24.11.1 ...
Packages are hard linked from the content-addressable store to the virtual store.
  Content-addressable store is at: /runner/cache/others/pnpm/store/v10
  Virtual store is at:             node_modules/.pnpm
Progress: resolved 1, reused 0, downloaded 1, added 0
packages/hooks                           |  WARN  deprecated @types/react-native@0.73.0
Progress: resolved 38, reused 0, downloaded 1, added 0
packages/fs                              |  WARN  deprecated glob@11.1.0
Progress: resolved 91, reused 0, downloaded 1, added 0
Progress: resolved 112, reused 0, downloaded 1, added 0
Progress: resolved 115, reused 0, downloaded 1, added 0
Progress: resolved 146, reused 0, downloaded 1, added 0
Progress: resolved 197, reused 0, downloaded 1, added 0
Progress: resolved 239, reused 0, downloaded 1, added 0
Progress: resolved 314, reused 0, downloaded 1, added 0
Progress: resolved 375, reused 0, downloaded 1, added 0
Progress: resolved 473, reused 0, downloaded 1, added 0
Progress: resolved 609, reused 0, downloaded 1, added 0
Progress: resolved 652, reused 0, downloaded 1, added 0
Progress: resolved 732, reused 0, downloaded 1, added 0
Progress: resolved 781, reused 0, downloaded 1, added 0
Progress: resolved 877, reused 0, downloaded 1, added 0
Progress: resolved 926, reused 0, downloaded 1, added 0
Progress: resolved 984, reused 0, downloaded 1, added 0
Progress: resolved 1082, reused 0, downloaded 1, added 0
Progress: resolved 1172, reused 0, downloaded 1, added 0
Progress: resolved 1250, reused 0, downloaded 1, added 0
Progress: resolved 1302, reused 0, downloaded 1, added 0
Progress: resolved 1378, reused 0, downloaded 1, added 0
Progress: resolved 1570, reused 0, downloaded 1, added 0
Progress: resolved 1808, reused 0, downloaded 1, added 0
Progress: resolved 2009, reused 0, downloaded 1, added 0
Progress: resolved 2321, reused 0, downloaded 1, added 0
Progress: resolved 2342, reused 0, downloaded 1, added 0
Progress: resolved 2383, reused 0, downloaded 1, added 0
Progress: resolved 2407, reused 0, downloaded 1, added 0
Progress: resolved 2425, reused 0, downloaded 1, added 0
Progress: resolved 2433, reused 0, downloaded 1, added 0
packages/trpc-next                       |  WARN  deprecated next@15.2.4
Progress: resolved 2436, reused 0, downloaded 1, added 0
Progress: resolved 2438, reused 0, downloaded 1, added 0
Progress: resolved 2444, reused 0, downloaded 1, added 0
Progress: resolved 2447, reused 0, downloaded 1, added 0
Progress: resolved 2458, reused 0, downloaded 1, added 0
Progress: resolved 2463, reused 0, downloaded 1, added 0
Progress: resolved 2503, reused 0, downloaded 1, added 0
Progress: resolved 2513, reused 0, downloaded 1, added 0
Progress: resolved 2514, reused 0, downloaded 1, added 0
 ERR_PNPM_UNUSED_PATCH  The following patches were not used: capnp-es@0.0.11

Either remove them from "patchedDependencies" or update them to match packages in your dependencies.

Comment thread .github/workflows/gitguardian.yml Fixed
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.1
uses: styfle/cancel-workflow-action@0.13.1

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'CodeQL Scan' step
Uses Step
uses 'styfle/cancel-workflow-action' with ref '0.13.1', not a pinned commit hash
Comment thread .github/workflows/gitguardian.yml Fixed
Comment thread .github/workflows/gitguardian.yml Fixed

- name: GitGuardian scan
uses: GitGuardian/ggshield/actions/secret@v1.39.0
uses: GitGuardian/ggshield/actions/secret@v1.50.4

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitGuardian Scan' step
Uses Step
uses 'GitGuardian/ggshield/actions/secret' with ref 'v1.50.4', not a pinned commit hash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Upgrade or downgrade of project dependencies.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant