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

Update all non-major dependencies #181

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 5, 2025

This PR contains the following updates:

Package Update Change Age Adoption Passing Confidence
awscli patch 2.24.17 -> 2.24.20 age adoption passing confidence
deno patch 2.2.2 -> 2.2.3 age adoption passing confidence
flutter (source) patch 3.29.0 -> 3.29.1 age adoption passing confidence
pnpm (source) minor 10.5.2 -> 10.6.2 age adoption passing confidence
terraform patch 1.11.0 -> 1.11.1 age adoption passing confidence
terragrunt patch 0.75.0 -> 0.75.3 age adoption passing confidence
trivy minor 0.59.1 -> 0.60.0 age adoption passing confidence

Release Notes

aws/aws-cli (awscli)

v2.24.20

Compare Source

v2.24.19

Compare Source

v2.24.18

Compare Source

denoland/deno (deno)

v2.2.3

Compare Source

  • feat(unstable): lint plugins support field selectors (#​28324)
  • fix(add): better help text for --dev arg (#​28304)
  • fix(check/npm): move not found errors inside npm packages to tsc diagnostics
    (#​28337)
  • fix(ext/node): SQLite reset guards to prevent database locks (#​28298)
  • fix(ext/node): node compatibility issue missing fd in createServer callback
    socket object (#​27789)
  • fix(fmt/md): handle callout followed by non-text (#​28333)
  • fix(lint): run with --no-prompt (#​28305)
  • fix(lsp): include prefix and suffix for rename edits (#​28327)
  • fix(lsp): limit languages in semantic tokens provider (#​28310)
  • fix(node): require esm should prefer module.exports export (#​28376)
  • fix(otel): don't throw when calling setActiveSpan at root (#​28323)
  • fix(unstable): Missing PrivateIdentifier type for PropertyDefinition key
    (#​28358)
  • fix(unstable): lint plugin ObjectPattern inconsistencies (#​28359)
  • fix(unstable): lint plugin child combinator not working with groups (#​28360)
  • fix(unstable): lint plugin fix :has(), :is/where/matches and :not()
    selectors (#​28348)
  • fix(unstable): lint plugin regex attribute selector not working (#​28340)
  • fix(unstable): lint plugin swapped exported and source for
    ExportAllDeclaration (#​28357)
  • fix(unstable/lint): remove duplicated Fix vs FixData interface (#​28344)
  • fix: add "module.exports" export to ESM CJS wrapper module (#​28373)
  • fix: deno_ast 0.46 (#​28331)
  • fix: respect lockfile for multiple available jsr versions (#​28375)
  • perf(http): instantiate generic functions in deno_http, increase opt-level
    for some more hyper deps (#​28317)
  • perf(lsp): don't set resolver npm reqs if unchanged (#​28302)
  • perf(lsp): register semantic tokens provider upon opening enabled doc (#​28384)
flutter/flutter (flutter)

v3.29.1

Compare Source

  • flutter/163830 - Fix Tab linear and elastic animation blink.
  • flutter/164119 - Configuration changes to run test on macOS 14 for Flutter's CI.
  • flutter/164155 - Roll .ci.yaml changes into the LUCI configuration only when the master branch is updated.
  • flutter/164191 - Improve safaridriver launch process in Flutter's CI testing for web.
  • flutter/164193 - Provide guided error message when app crashes due to JIT restriction on iPhones.
  • flutter/164050 - Fixes test reorderable_list_test.dart failing for certain ordering seeds, such as 2025022.
  • flutter/163316 - Configuration changes to run test on macOS 14 for Flutter's CI.
  • flutter/163581 - Fix crash when using BackdropFilters in certain GLES drivers.
  • flutter/163616 - Disable Vulkan on known bad Xclipse GPU drivers for Android.
  • flutter/163666 - Always post new task during gesture dispatch to fix jittery scrolling on iOS devices.
  • flutter/163667 - Ensure that OpenGL "flipped" textures do not leak via texture readback.
  • flutter/163741 - Flutter tool respects tracked engine.version.
  • flutter/163754 - Fix text glitch when returning to foreground for Android.
  • flutter/163058 - Fixes jittery glyphs.
  • flutter/163201 - Fixes buttons with icons that ignore foregroundColor.
  • flutter/163265 - Disable Vulkan on known bad exynos SoCs for Android.
  • flutter/163261 - Fixes for Impeller DrawVertices issues involving snapshots with empty sizes.
  • flutter/163672 - Check for tracked engine.version before overriding.
pnpm/pnpm (pnpm)

v10.6.2

Compare Source

Patch Changes
  • pnpm self-update should always update the version in the packageManager field of package.json.
  • Fix running pnpm CLI from pnpm CLI on Windows when the CLI is bundled to an executable #​8971.
  • pnpm patch-commit will now use the same filesystem as the store directory to compare and create patch files.
  • Don't show info output when --loglevel=error is used.
  • peerDependencyRules should be set in pnpm-workspace.yaml to take effect.

v10.6.1

Compare Source

Patch Changes
  • The pnpm CLI process should not stay hanging, when --silent reporting is used.
  • When --loglevel is set to error, don't show installation summary, execution time, and big tarball download progress.
  • Don't ignore pnpm.patchedDependencies from package.json #​9226.
  • When executing the approve-builds command, if package.json contains onlyBuiltDependencies or ignoredBuiltDependencies, the selected dependency package will continue to be written into package.json.
  • When a package version cannot be found in the package metadata, print the registry from which the package was fetched.

v10.6.0

Compare Source

Minor Changes
  • pnpm-workspace.yaml can now hold all the settings that .npmrc accepts. The settings should use camelCase #​9211.

    pnpm-workspace.yaml example:

    verifyDepsBeforeRun: install
    optimisticRepeatInstall: true
    publicHoistPattern:
      - "*types*"
      - "!@​types/react"
  • Projects using a file: dependency on a local tarball file (i.e. .tgz, .tar.gz, .tar) will see a performance improvement during installation. Previously, using a file: dependency on a tarball caused the lockfile resolution step to always run. The lockfile will now be considered up-to-date if the tarball is unchanged.

Patch Changes
  • pnpm self-update should not leave a directory with a broken pnpm installation if the installation fails.
  • fast-glob replace with tinyglobby to reduce the size of the pnpm CLI dependencies #​9169.
  • pnpm deploy should not remove fields from the deployed package's package.json file #​9215.
  • pnpm self-update should not read the pnpm settings from the package.json file in the current working directory.
  • Fix pnpm deploy creating a package.json without the imports and license field #​9193.
  • pnpm update -i should list only packages that have newer versions #​9206.
  • Fix a bug causing entries in the catalogs section of the pnpm-lock.yaml file to be removed when dedupe-peer-dependents=false on a filtered install. #​9112
hashicorp/terraform (terraform)

v1.11.1

Compare Source

1.11.1 (March 5, 2025)

BUG FIXES:

  • Temporarily revert updated Windows symlink handling until we can account for known existing configurations using non-symlink junctions. (#​36575)

  • terraform test: Fix crash when a run block attempts to cleanup after a non-applyable plan. (#​36582)

  • Updated dependency golang.org/x/oauth2 from v0.23.0 => v0.27.0 to integrate latest changes (fix for CVE-2025-22868) (#​36584)

  • lang/funcs/transpose: Avoid crash due to map with null values (#​36611)

  • Combining ephemeral and sensitive marks could fail when serializing planned changes (#​36619)

gruntwork-io/terragrunt (terragrunt)

v0.75.3

Compare Source

✨ New Features

This release introduces support for all the remaining assume_role arguments used by OpenTofu/Terraform backends.

Thank you to @​erpel for contributing this!

What's Changed

New Contributors

Full Changelog: gruntwork-io/terragrunt@v0.75.2...v0.75.3

v0.75.2

Compare Source

What's Changed

Example HCL configuration:

stack "dev" {
  source = "stacks/dev"
  path   = "dev"

### new values block
  values = {
    project = "dev-project"
    env     = "dev"
  }
}

RFC: https://github.com/gruntwork-io/terragrunt/issues/3313

Full Changelog: gruntwork-io/terragrunt@v0.75.1...v0.75.2

v0.75.1

Compare Source

What's Changed

New Contributors

Full Changelog: gruntwork-io/terragrunt@v0.75.0...v0.75.1

aquasecurity/trivy (trivy)

v0.60.0

Compare Source

Features
Bug Fixes
  • db: fix case when 2 trivy-db were copied at the same time (#​8452) (bb3cca6)
  • don't use scope for trivy registry login command (#​8393) (8715e5d)
  • go: merge nested flags into string for ldflags for Go binaries (#​8368) (b675b06)
  • image: disable AVD-DS-0007 for history scanning (#​8366) (a3cd693)
  • k8s: add missed option PkgRelationships (#​8442) (f987e41)
  • misconf: do not log scanners when misconfig scanning is disabled (#​8345) (5695eb2)
  • misconf: ecs include enhanced for container insights (#​8326) (39789ff)
  • misconf: fix incorrect k8s locations due to JSON to YAML conversion (#​8073) (a994453)
  • os: add mapping OS aliases (#​8466) (6b4cebe)
  • python: add poetry v2 support (#​8323) (10cd98c)
  • report: remove html escaping for shortDescription and fullDescription fields for sarif reports (#​8344) (3eb0b03)
  • sbom: add SBOM file's filePath as Application FilePath if we can't detect its path (#​8346) (ecc01bb)
  • sbom: improve logic for binding direct dependency to parent component (#​8489) (85cca8c)
  • sbom: preserve OS packages from multiple SBOMs (#​8325) (bd5baaf)
  • server: secrets inspectation for the config analyzer in client server mode (#​8418) (a1c4bd7)
  • spdx: init pkgFilePaths map for all formats (#​8380) (72ea4b0)
  • terraform: apply parser options to submodule parsing (#​8377) (398620b)
  • update all documentation links (#​8045) (49456ba)

Configuration

📅 Schedule: 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 added the renovate label Mar 5, 2025
@renovate renovate bot changed the title Update dependency deno to v2.2.3 Update all non-major dependencies Mar 5, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from e1c0349 to fd2707c Compare March 7, 2025 23:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fd2707c to 5953564 Compare March 10, 2025 06:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants