Skip to content

fix(deps): bump the minor-and-patch group with 6 updates#288

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot-npm_and_yarn-minor-and-patch-2305a648b8
Open

fix(deps): bump the minor-and-patch group with 6 updates#288
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot-npm_and_yarn-minor-and-patch-2305a648b8

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 1, 2026

Bumps the minor-and-patch group with 6 updates:

Package From To
@oclif/core 4.10.5 4.11.0
@salesforce/core 8.28.3 8.29.0
@salesforce/sf-plugins-core 12.2.6 12.2.10
zod 4.3.6 4.4.1
@oclif/plugin-command-snapshot 5.3.15 5.3.16
@salesforce/cli-plugins-testkit 5.3.52 5.3.54

Updates @oclif/core from 4.10.5 to 4.11.0

Release notes

Sourced from @​oclif/core's releases.

4.11.0

Bug Fixes

Features

4.10.6

Bug Fixes

  • deps: bump postcss from 8.4.31 to 8.5.10 (9b29ad4)
Changelog

Sourced from @​oclif/core's changelog.

4.11.0 (2026-04-30)

Bug Fixes

Features

4.10.6 (2026-04-25)

Bug Fixes

  • deps: bump postcss from 8.4.31 to 8.5.10 (9b29ad4)
Commits
  • 7d7a493 chore(release): 4.11.0 [skip ci]
  • 2f7e34a Merge pull request #1580 from oclif/d/W-20534184
  • 8d8a92d fix: integrated feedback from code review @​W-20534184@
  • f461b17 Merge pull request #1587 from oclif/dependabot-npm_and_yarn-oclif-plugin-plug...
  • debab50 Merge pull request #1588 from oclif/dependabot-npm_and_yarn-eslint-config-ocl...
  • fa52dd8 chore(dev-deps): bump eslint-config-oclif from 6.0.157 to 6.0.159
  • 6f8b553 chore(dev-deps): bump @​oclif/plugin-plugins from 5.4.61 to 5.4.62
  • 1316e3a chore(release): 4.10.6 [skip ci]
  • 4d2464f Merge pull request #1586 from oclif/dependabot-npm_and_yarn-postcss-8.5.10
  • 9b29ad4 fix(deps): bump postcss from 8.4.31 to 8.5.10
  • Additional commits viewable in compare view

Updates @salesforce/core from 8.28.3 to 8.29.0

Release notes

Sourced from @​salesforce/core's releases.

8.29.0

Features

8.28.4

Bug Fixes

  • remove the response (67ab727)
  • update response in catch block sandbox (0ac5ba8)
  • update the md file and test (c453813)
Changelog

Sourced from @​salesforce/core's changelog.

8.29.0 (2026-04-29)

Features

8.28.4 (2026-04-24)

Bug Fixes

  • remove the response (67ab727)
  • update response in catch block sandbox (0ac5ba8)
  • update the md file and test (c453813)
Commits

Updates @salesforce/sf-plugins-core from 12.2.6 to 12.2.10

Release notes

Sourced from @​salesforce/sf-plugins-core's releases.

12.2.10

Bug Fixes

  • deps: bump flatted from 3.2.7 to 3.4.2 (29264cc)

12.2.9

Bug Fixes

12.2.8

Bug Fixes

  • deps: bump lodash from 4.17.21 to 4.18.1 (b52543d)

12.2.7

Bug Fixes

Changelog

Sourced from @​salesforce/sf-plugins-core's changelog.

12.2.10 (2026-04-28)

Bug Fixes

  • deps: bump flatted from 3.2.7 to 3.4.2 (29264cc)

12.2.9 (2026-04-28)

Bug Fixes

12.2.8 (2026-04-28)

Bug Fixes

  • deps: bump lodash from 4.17.21 to 4.18.1 (b52543d)

12.2.7 (2026-04-28)

Bug Fixes

Commits
  • 10aa1b6 chore(release): 12.2.10 [skip ci]
  • e287374 Merge pull request #698 from salesforcecli/dependabot-npm_and_yarn-flatted-3.4.2
  • 29264cc fix(deps): bump flatted from 3.2.7 to 3.4.2
  • d8d2e21 chore(release): 12.2.9 [skip ci]
  • 42dc885 Merge pull request #699 from salesforcecli/jf/W-22163225-2
  • f4facb5 fix: updated to new @​oclif/table @​W-22163225@
  • a0b1d6e chore(release): 12.2.8 [skip ci]
  • 0a1de38 Merge pull request #695 from salesforcecli/dependabot-npm_and_yarn-lodash-4.1...
  • b52543d fix(deps): bump lodash from 4.17.21 to 4.18.1
  • b431a1f chore(release): 12.2.7 [skip ci]
  • Additional commits viewable in compare view

Updates zod from 4.3.6 to 4.4.1

Release notes

Sourced from zod's releases.

v4.4.1

Commits:

  • 481f7be4238c83ed58183f921b2646f340a91c6a ci: gate release publishing on full test workflow
  • 95ccab423aec720b2523c3a64cdc7e3204537cc7 test(v3): restore optional undefined expectations
  • cede2c63739a5823d6aa5093d291e9a111da943d fix(v4): reject tuple holes before required defaults (#5900)
  • edd0bf0f5ada4a8dc581c259407d7bbad0a71ea7 release: 4.4.1
  • 180d83d1dbe6a59260710cc8637a3dea2281ee56 docs: remove Jazz featured sponsor

v4.4.0

4.4.0

This is a minor release with a wide set of correctness and soundness fixes. Some fixes intentionally make Zod stricter, so code that depended on previously accepted invalid or ambiguous inputs may need small updates.

Potentially breaking bug fixes

Tuple defaults now materialize output values correctly

Fixed in #5661. Tuple parsing now more accurately reflects defaults, optional tails, explicit undefined, and under-filled inputs. The headline behavior is that defaults in tuple positions now properly appear in parsed output.

const schema = z.tuple([
  z.string(),
  z.string().default("fallback"),
]);
schema.parse(["a"]);
// ["a", "fallback"]

Trailing optional elements that are absent still stay absent; they are not filled with undefined.

const schema = z.tuple([
  z.string(),
  z.string().optional(),
]);
schema.parse(["a"]);
// ["a"]

But explicit undefined values supplied by the caller are preserved.

schema.parse(["a", undefined]);
// ["a", undefined]

When optional elements appear before later defaults, the parsed tuple is now dense so array operations behave predictably.

... (truncated)

Commits
  • 180d83d docs: remove Jazz featured sponsor
  • edd0bf0 release: 4.4.1
  • cede2c6 fix(v4): reject tuple holes before required defaults (#5900)
  • 95ccab4 test(v3): restore optional undefined expectations
  • 481f7be ci: gate release publishing on full test workflow
  • d05f026 release: 4.4.0
  • f778e02 build: bump zshy for JSR wildcard exports
  • 6db607b fix(release): keep JSR manifest publishable
  • ad0b827 ci: update release workflow for trusted publishing
  • b6066b3 fix(v4): align object and tuple optionality handling (#5661)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for zod since your current version.


Updates @oclif/plugin-command-snapshot from 5.3.15 to 5.3.16

Release notes

Sourced from @​oclif/plugin-command-snapshot's releases.

5.3.16

Bug Fixes

  • deps: bump @​oclif/core from 4.10.5 to 4.10.6 (#977) (9de33e5)
Changelog

Sourced from @​oclif/plugin-command-snapshot's changelog.

5.3.16 (2026-04-25)

Bug Fixes

  • deps: bump @​oclif/core from 4.10.5 to 4.10.6 (#977) (9de33e5)
Commits
  • e6c6779 chore(release): 5.3.16 [skip ci]
  • 9de33e5 fix(deps): bump @​oclif/core from 4.10.5 to 4.10.6 (#977)
  • ce832e9 chore(dev-deps): bump @​oclif/plugin-help from 6.2.43 to 6.2.44 (#973)
  • 135a0b2 chore(dev-deps): bump prettier from 3.8.2 to 3.8.3 (#974)
  • 208d69c chore(dev-deps): bump eslint-config-oclif from 6.0.156 to 6.0.157 (#975)
  • eb0feaa chore(dev-deps): bump eslint-config-oclif from 6.0.154 to 6.0.156 (#968)
  • 442a82c chore(dev-deps): bump prettier from 3.8.1 to 3.8.2 (#969)
  • 5aca350 chore(dev-deps): bump @​oclif/plugin-help from 6.2.41 to 6.2.43 (#970)
  • 03a2c75 chore(dev-deps): bump oclif from 4.22.96 to 4.23.0 (#971)
  • 1f5205f chore(dev-deps): bump @​oclif/test from 4.1.17 to 4.1.18 (#972)
  • See full diff in compare view

Updates @salesforce/cli-plugins-testkit from 5.3.52 to 5.3.54

Release notes

Sourced from @​salesforce/cli-plugins-testkit's releases.

5.3.54

Bug Fixes

  • deps: bump @​salesforce/core from 8.28.3 to 8.28.4 (d3e6ccc)

5.3.53

Bug Fixes

  • deps: bump @​salesforce/core from 8.28.1 to 8.28.3 (4fbe2db)
Changelog

Sourced from @​salesforce/cli-plugins-testkit's changelog.

5.3.54 (2026-04-25)

Bug Fixes

  • deps: bump @​salesforce/core from 8.28.3 to 8.28.4 (d3e6ccc)

5.3.53 (2026-04-18)

Bug Fixes

  • deps: bump @​salesforce/core from 8.28.1 to 8.28.3 (4fbe2db)
Commits
  • ab0b058 chore(release): 5.3.54 [skip ci]
  • 298a4de Merge pull request #749 from salesforcecli/dependabot-npm_and_yarn-salesforce...
  • d3e6ccc fix(deps): bump @​salesforce/core from 8.28.3 to 8.28.4
  • b7debde chore(release): 5.3.53 [skip ci]
  • be2c8c7 Merge pull request #748 from salesforcecli/dependabot-npm_and_yarn-salesforce...
  • 4fbe2db fix(deps): bump @​salesforce/core from 8.28.1 to 8.28.3
  • 0a022da Merge pull request #747 from salesforcecli/dependabot-npm_and_yarn-salesforce...
  • 3a69099 chore(dev-deps): bump @​salesforce/ts-sinon from 1.4.33 to 1.4.34
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor-and-patch group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@oclif/core](https://github.com/oclif/core) | `4.10.5` | `4.11.0` |
| [@salesforce/core](https://github.com/forcedotcom/sfdx-core) | `8.28.3` | `8.29.0` |
| [@salesforce/sf-plugins-core](https://github.com/salesforcecli/sf-plugins-core) | `12.2.6` | `12.2.10` |
| [zod](https://github.com/colinhacks/zod) | `4.3.6` | `4.4.1` |
| [@oclif/plugin-command-snapshot](https://github.com/oclif/plugin-command-snapshot) | `5.3.15` | `5.3.16` |
| [@salesforce/cli-plugins-testkit](https://github.com/salesforcecli/cli-plugins-testkit) | `5.3.52` | `5.3.54` |


Updates `@oclif/core` from 4.10.5 to 4.11.0
- [Release notes](https://github.com/oclif/core/releases)
- [Changelog](https://github.com/oclif/core/blob/main/CHANGELOG.md)
- [Commits](oclif/core@4.10.5...4.11.0)

Updates `@salesforce/core` from 8.28.3 to 8.29.0
- [Release notes](https://github.com/forcedotcom/sfdx-core/releases)
- [Changelog](https://github.com/forcedotcom/sfdx-core/blob/main/CHANGELOG.md)
- [Commits](forcedotcom/sfdx-core@8.28.3...8.29.0)

Updates `@salesforce/sf-plugins-core` from 12.2.6 to 12.2.10
- [Release notes](https://github.com/salesforcecli/sf-plugins-core/releases)
- [Changelog](https://github.com/salesforcecli/sf-plugins-core/blob/main/CHANGELOG.md)
- [Commits](salesforcecli/sf-plugins-core@12.2.6...12.2.10)

Updates `zod` from 4.3.6 to 4.4.1
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.3.6...v4.4.1)

Updates `@oclif/plugin-command-snapshot` from 5.3.15 to 5.3.16
- [Release notes](https://github.com/oclif/plugin-command-snapshot/releases)
- [Changelog](https://github.com/oclif/plugin-command-snapshot/blob/main/CHANGELOG.md)
- [Commits](oclif/plugin-command-snapshot@5.3.15...5.3.16)

Updates `@salesforce/cli-plugins-testkit` from 5.3.52 to 5.3.54
- [Release notes](https://github.com/salesforcecli/cli-plugins-testkit/releases)
- [Changelog](https://github.com/salesforcecli/cli-plugins-testkit/blob/main/CHANGELOG.md)
- [Commits](salesforcecli/cli-plugins-testkit@5.3.52...5.3.54)

---
updated-dependencies:
- dependency-name: "@oclif/core"
  dependency-version: 4.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@salesforce/core"
  dependency-version: 8.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@salesforce/sf-plugins-core"
  dependency-version: 12.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: zod
  dependency-version: 4.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@oclif/plugin-command-snapshot"
  dependency-version: 5.3.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@salesforce/cli-plugins-testkit"
  dependency-version: 5.3.54
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label May 1, 2026
@dependabot dependabot Bot requested a review from a team as a code owner May 1, 2026 01:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants