Skip to content

fix(deps): bump the minor-and-patch group across 1 directory with 4 updates#279

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot-npm_and_yarn-minor-and-patch-605e144f05
Open

fix(deps): bump the minor-and-patch group across 1 directory with 4 updates#279
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot-npm_and_yarn-minor-and-patch-605e144f05

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2026

Bumps the minor-and-patch group with 4 updates in the / directory: @salesforce/core, @salesforce/sf-plugins-core, zod and oclif.

Updates @salesforce/core from 8.23.4 to 8.24.0

Release notes

Sourced from @​salesforce/core's releases.

8.24.0

Features

8.23.7

Bug Fixes

  • bump jsonwebtoken for security fix (f049410)

8.23.6

Bug Fixes

8.23.5

Bug Fixes

  • auth: log scopes associated to the access token (7ec3bea)

8.23.5-qaext.0

Bug Fixes

  • correctly classify even with space (59f492e)

Features

  • move schema for project/scratch-def into this repo (55a6e54)
  • script to update features (38c0bc3)
  • script to update settings with their documentation (cd498fd)

8.23.5-dev.0

Bug Fixes

Changelog

Sourced from @​salesforce/core's changelog.

8.24.0 (2025-12-05)

Features

8.23.7 (2025-12-04)

Bug Fixes

  • bump jsonwebtoken for security fix (f049410)

8.23.6 (2025-12-03)

Bug Fixes

8.23.5 (2025-12-02)

Bug Fixes

  • auth: log scopes associated to the access token (7ec3bea)
Commits
  • 5564069 chore(release): 8.24.0 [skip ci]
  • 82a26a0 feat: add sfdx-project/scratch-def schemas W-20268457 (#1249)
  • bc2c065 chore(release): 8.23.7 [skip ci]
  • 2247664 Merge pull request #1253 from forcedotcom/sh/bump-jsonwebtoken
  • f049410 fix: bump jsonwebtoken for security fix
  • 8966c91 chore(release): 8.23.6 [skip ci]
  • e245a66 fix: refreshAuth does a GET request W-19992404 (#1248)
  • 589302e chore(release): 8.23.5 [skip ci]
  • 61aab42 Merge pull request #1251 from forcedotcom/cd/log-token-scopes
  • 9c3c95e chore: bump jsforce
  • Additional commits viewable in compare view

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

Release notes

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

12.2.6

Bug Fixes

  • deps: bump @​inquirer/confirm from 3.1.22 to 3.2.0 (b9e2fcf)
Changelog

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

12.2.6 (2025-11-26)

Bug Fixes

  • deps: bump @​inquirer/confirm from 3.1.22 to 3.2.0 (b9e2fcf)
Commits
  • 5a4f73b chore(release): 12.2.6 [skip ci]
  • 215067f Merge pull request #629 from salesforcecli/dependabot-npm_and_yarn-inquirer-c...
  • 419ab32 Upload required file(s) for compliance
  • d53151f Upload required file(s) for compliance
  • See full diff in compare view

Updates zod from 4.1.12 to 4.3.4

Release notes

Sourced from zod's releases.

v4.3.4

Commits:

  • 1a8bea3b474eada6f219c163d0d3ad09fadabe72 Add integration tests
  • e01cd02b2f23d7e9078d3813830b146f8a2258b4 Support patternProperties for looserecord (#5592)
  • 089e5fbb0f58ce96d2c4fb34cd91724c78df4af5 Improve looseRecord docs
  • decef9c418d9a598c3f1bada06891ba5d922c5cd Fix lint
  • 9443aab00d44d5d5f4a7eada65fc0fc851781042 Drop iso time in fromJSONSchema
  • 66bda7491a1b9eab83bdeec0c12f4efc7290bd48 Remove .refine() from ZodMiniType
  • b4ab94ca608cd5b581bfc12b20dd8d95b35b3009 4.3.4

v4.3.3

Commits:

  • f3b2151959d215d405f54dff3c7ab3bf1fd887ca v4.3.3

v4.3.2

Commits:

  • bf96635d243118de6e4f260077aa137453790bf6 Loosen strictObjectinside intersection (#5587)
  • f71dc0182ab0f0f9a6be6295b07faca269e10179 Remove Juno (#5590)
  • 0f41e5a12a43e6913c9dcb501b2b5136ea86500d 4.3.2

v4.3.1

Commits:

  • 0fe88407a4149c907929b757dc6618d8afe998fc allow non-overwriting extends with refinements. 4.3.1

v4.3.0

This is Zod's biggest release since 4.0. It addresses several of Zod's longest-standing feature requests.

z.fromJSONSchema()

Convert JSON Schema to Zod (#5534, #5586)

You can now convert JSON Schema definitions directly into Zod schemas. This function supports JSON Schema "draft-2020-12", "draft-7", "draft-4", and OpenAPI 3.0.

import * as z from "zod";
const schema = z.fromJSONSchema({
type: "object",
properties: {
name: { type: "string", minLength: 1 },
age: { type: "integer", minimum: 0 },
},
required: ["name"],
});
schema.parse({ name: "Alice", age: 30 }); // ✅
</tr></table>

... (truncated)

Commits

Updates oclif from 4.22.41 to 4.22.61

Release notes

Sourced from oclif's releases.

4.22.61

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.956.0 to 3.958.0 (4e920ed)

4.22.60

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.956.0 to 3.958.0 (b663f72)

4.22.59

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.948.0 to 3.956.0 (c6fa942)

4.22.58

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.948.0 to 3.956.0 (6f00e91)

4.22.57

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.946.0 to 3.948.0 (63f7536)

4.22.56

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.946.0 to 3.948.0 (f8592c6)

4.22.55

Bug Fixes

  • initialize oclif object when building tarballs (58f1921), closes #1904

4.22.54

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.940.0 to 3.946.0 (cdd14a4)

4.22.53

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.940.0 to 3.946.0 (b38f8ab)

4.22.52

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.937.0 to 3.940.0 (0a8b89f)

... (truncated)

Changelog

Sourced from oclif's changelog.

4.22.61 (2025-12-28)

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.956.0 to 3.958.0 (4e920ed)

4.22.60 (2025-12-28)

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.956.0 to 3.958.0 (b663f72)

4.22.59 (2025-12-21)

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.948.0 to 3.956.0 (c6fa942)

4.22.58 (2025-12-21)

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.948.0 to 3.956.0 (6f00e91)

4.22.57 (2025-12-15)

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.946.0 to 3.948.0 (63f7536)

4.22.56 (2025-12-14)

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.946.0 to 3.948.0 (f8592c6)

4.22.55 (2025-12-12)

Bug Fixes

  • initialize oclif object when building tarballs (58f1921), closes #1904

4.22.54 (2025-12-07)

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.940.0 to 3.946.0 (cdd14a4)

4.22.53 (2025-12-07)

... (truncated)

Commits
  • 38214bf chore(release): 4.22.61 [skip ci]
  • 8a3721d Merge pull request #1940 from oclif/dependabot-npm_and_yarn-aws-sdk-client-s3...
  • 4e920ed fix(deps): bump @​aws-sdk/client-s3 from 3.956.0 to 3.958.0
  • 91e359b chore(release): 4.22.60 [skip ci]
  • 86c1237 Merge pull request #1941 from oclif/dependabot-npm_and_yarn-aws-sdk-client-cl...
  • f456b5d Merge pull request #1942 from oclif/dependabot-npm_and_yarn-eslint-config-ocl...
  • 64b4c20 chore(dev-deps): bump eslint-config-oclif from 6.0.126 to 6.0.127
  • b663f72 fix(deps): bump @​aws-sdk/client-cloudfront from 3.956.0 to 3.958.0
  • 32c310e chore(release): 4.22.59 [skip ci]
  • 34b8ca7 Merge pull request #1937 from oclif/dependabot-npm_and_yarn-aws-sdk-client-cl...
  • Additional commits viewable 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 1, 2026
@dependabot dependabot bot requested a review from a team as a code owner January 1, 2026 00:02
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 1, 2026
…pdates

Bumps the minor-and-patch group with 4 updates in the / directory: [@salesforce/core](https://github.com/forcedotcom/sfdx-core), [@salesforce/sf-plugins-core](https://github.com/salesforcecli/sf-plugins-core), [zod](https://github.com/colinhacks/zod) and [oclif](https://github.com/oclif/oclif).


Updates `@salesforce/core` from 8.23.4 to 8.24.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.23.4...8.24.0)

Updates `@salesforce/sf-plugins-core` from 12.2.5 to 12.2.6
- [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.5...12.2.6)

Updates `zod` from 4.1.12 to 4.3.4
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.1.12...v4.3.4)

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

---
updated-dependencies:
- dependency-name: "@salesforce/core"
  dependency-version: 8.24.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.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: zod
  dependency-version: 4.3.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: oclif
  dependency-version: 4.22.61
  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 force-pushed the dependabot-npm_and_yarn-minor-and-patch-605e144f05 branch from dfe133f to 764cb9e Compare February 1, 2026 00:52
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