Skip to content

chore(dev-deps): bump the minor-and-patch group across 1 directory with 6 updates#134

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot-npm_and_yarn-minor-and-patch-7c993c7ed5
Closed

chore(dev-deps): bump the minor-and-patch group across 1 directory with 6 updates#134
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot-npm_and_yarn-minor-and-patch-7c993c7ed5

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 1, 2025

Copy link
Copy Markdown
Contributor

Bumps the minor-and-patch group with 6 updates in the / directory:

Package From To
@lwc/engine-server 8.16.1 8.19.1
@sa11y/jest 7.0.0 7.1.2
eslint-config-prettier 10.1.1 10.1.5
eslint-plugin-jest 28.11.0 28.12.0
prettier-plugin-apex 2.2.5 2.2.6
typescript 5.8.2 5.8.3

Updates @lwc/engine-server from 8.16.1 to 8.19.1

Release notes

Sourced from @​lwc/engine-server's releases.

v8.19.1

What's Changed

v8.19.0

Better types for template elements

TypeScript component authors can now specify a new property, __lwc_public_property_types__, to indicate to TypeScript which properties are available on the element created by a component. This prevents erroneous property definitions, which are otherwise unavoidable due to the way that TypeScript implements decorators.

Example

// <c-inferred-props>
class InferredProps extends LightningElement {
  @api exposed = 'hello'
  internal = 'secret'
}
// <c-explicit-props>
class ExplicitProps extends InferredProps {
lwc_public_property_types?: {
exposed: string
}
}
class Container extends LightningElement {
checkInferred() {
const inferred = this.querySelector<LightningHTMLElement<InferredProps>>('c-inferred-props')!
inferred.exposed // ✅ Valid, no type error
inferred.internal // ❌ Invalid, but no type error!
}
checkExplicit() {
const explicit = this.querySelector<LightningHTMLElement<ExplicitProps>>('c-explicit-props')!
explicit.exposed // ✅ Valid, no type error
explicit.internal // ✅ Invalid, and a type error occurs!
}
}

In this example, the element interface for c-inferred-props is defined by LightningHTMLElement<InferredProps>. That interface has an erroneous property definition, internal. The internal property is part of the component interface, but is not decorated with @api, so it should not be part of the element interface.

The element interface for c-explicit-props is defined by LightningHTMLElement<ExplicitProps>. Because ExplicitProps defines __lwc_public_property_types__, the element interface does not include the internal property, which is the correct behavior.

What else changed?

... (truncated)

Commits

Updates @sa11y/jest from 7.0.0 to 7.1.2

Release notes

Sourced from @​sa11y/jest's releases.

v7.1.2

7.1.2 (2025-05-28)

Bug Fixes

  • deps: update dependency @​vitest/runner to v3.1.4 (#838) (7854ae6)

v7.1.1

7.1.1 (2025-05-28)

Bug Fixes

  • deps: update vitest monorepo to v3.1.4 (#837) (30752b4)

v7.1.0

7.1.0 (2025-05-28)

Features

v7.1.0-alpha.2

7.1.0-alpha.2 (2025-05-20)

v7.0.1

7.0.1 (2025-05-03)

Commits

Updates eslint-config-prettier from 10.1.1 to 10.1.5

Release notes

Sourced from eslint-config-prettier's releases.

v10.1.5

Patch Changes

Full Changelog: prettier/eslint-config-prettier@v10.1.4...v10.1.5

v10.1.4

Patch Changes

Full Changelog: prettier/eslint-config-prettier@v10.1.3...v10.1.4

v10.1.3

Patch Changes

New Contributors

Full Changelog: prettier/eslint-config-prettier@v10.1.2...v10.1.3

v10.1.2

Patch Changes

Changelog

Sourced from eslint-config-prettier's changelog.

10.1.5

Patch Changes

10.1.4

Patch Changes

10.1.3

Patch Changes

10.1.2

Patch Changes

Commits

Updates eslint-plugin-jest from 28.11.0 to 28.12.0

Release notes

Sourced from eslint-plugin-jest's releases.

v28.12.0

28.12.0 (2025-05-29)

Features

  • no-disabled-tests: improve error message and simplify rule (#1739) (1fb5a4a)

v28.11.2

28.11.2 (2025-05-29)

Bug Fixes

  • no-commented-out-tests: make message less ambiguous (#1740) (14c27ab)

v28.11.1

28.11.1 (2025-05-27)

Bug Fixes

  • no-large-snapshots: use a far better message for when an unexpected snapshot is found (#1736) (0f5b873)
Changelog

Sourced from eslint-plugin-jest's changelog.

28.12.0 (2025-05-29)

Features

  • no-disabled-tests: improve error message and simplify rule (#1739) (1fb5a4a)

28.11.2 (2025-05-29)

Bug Fixes

  • no-commented-out-tests: make message less ambiguous (#1740) (14c27ab)

28.11.1 (2025-05-27)

Bug Fixes

  • no-large-snapshots: use a far better message for when an unexpected snapshot is found (#1736) (0f5b873)
Commits
  • aa64936 chore(release): 28.12.0 [skip ci]
  • 1fb5a4a feat(no-disabled-tests): improve error message and simplify rule (#1739)
  • ff8c9ac chore(release): 28.11.2 [skip ci]
  • 14c27ab fix(no-commented-out-tests): make message less ambiguous (#1740)
  • 2e59959 refactor(prefer-lowercase-title): rename message id (#1738)
  • f22560c chore(release): 28.11.1 [skip ci]
  • 5c10c18 chore(deps): lock file maintenance (#1737)
  • 0f5b873 fix(no-large-snapshots): use a far better message for when an unexpected snap...
  • db8172b chore(deps): lock file maintenance (#1735)
  • 3b4bc34 chore(deps): lock file maintenance (#1733)
  • Additional commits viewable in compare view

Updates prettier-plugin-apex from 2.2.5 to 2.2.6

Updates typescript from 5.8.2 to 5.8.3

Release notes

Sourced from typescript's releases.

TypeScript 5.8.3

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • 83dc0bb Convert release publishing inputs into parameters (#61523)
  • ba663f6 Exclude completions of binding pattern variable initializers (#52723)
  • 7205eda Bump github/codeql-action from 3.28.12 to 3.28.13 in the github-actions group...
  • 89c572c Fixed a symbol display crash on expando members write locations (#55478)
  • 7b26d2e Fix incorrect name in new release pipeline (#61514)
  • c7a559e Add new release publisher yaml (#61491)
  • 29e6d66 Fix lib.includes('dom') check in containerSeemsToBeEmptyDomElement (#61481)
  • 19b7772 Bump the github-actions group with 4 updates (#61474)
  • 4dc677b Fix errors on type assertions in erasableSyntaxOnly (#61452)
  • ee3dd72 fix(60908): Unexpected "'Type' is declared but its value is never read." erro...
  • 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

…th 6 updates

Bumps the minor-and-patch group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@lwc/engine-server](https://github.com/salesforce/lwc/tree/HEAD/packages/@lwc/engine-server) | `8.16.1` | `8.19.1` |
| [@sa11y/jest](https://github.com/salesforce/sa11y/tree/HEAD/packages/jest) | `7.0.0` | `7.1.2` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `10.1.1` | `10.1.5` |
| [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) | `28.11.0` | `28.12.0` |
| prettier-plugin-apex | `2.2.5` | `2.2.6` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.2` | `5.8.3` |



Updates `@lwc/engine-server` from 8.16.1 to 8.19.1
- [Release notes](https://github.com/salesforce/lwc/releases)
- [Commits](https://github.com/salesforce/lwc/commits/v8.19.1/packages/@lwc/engine-server)

Updates `@sa11y/jest` from 7.0.0 to 7.1.2
- [Release notes](https://github.com/salesforce/sa11y/releases)
- [Changelog](https://github.com/salesforce/sa11y/blob/master/CHANGELOG.md)
- [Commits](https://github.com/salesforce/sa11y/commits/v7.1.2/packages/jest)

Updates `eslint-config-prettier` from 10.1.1 to 10.1.5
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v10.1.1...v10.1.5)

Updates `eslint-plugin-jest` from 28.11.0 to 28.12.0
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v28.11.0...v28.12.0)

Updates `prettier-plugin-apex` from 2.2.5 to 2.2.6

Updates `typescript` from 5.8.2 to 5.8.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.8.2...v5.8.3)

---
updated-dependencies:
- dependency-name: "@lwc/engine-server"
  dependency-version: 8.19.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@sa11y/jest"
  dependency-version: 7.1.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: eslint-config-prettier
  dependency-version: 10.1.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: eslint-plugin-jest
  dependency-version: 28.12.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: prettier-plugin-apex
  dependency-version: 2.2.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: typescript
  dependency-version: 5.8.3
  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 Jun 1, 2025
@dependabot dependabot Bot requested a review from a team as a code owner June 1, 2025 10:54
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jun 1, 2025
@dependabot @github

dependabot Bot commented on behalf of github Jul 1, 2025

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Jul 1, 2025
@dependabot dependabot Bot deleted the dependabot-npm_and_yarn-minor-and-patch-7c993c7ed5 branch July 1, 2025 10:56
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