Skip to content

fix(deps): bump lwc from 8.16.5 to 8.20.0 #424

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

Merged
merged 1 commit into from
Jun 15, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 14, 2025

Bumps lwc from 8.16.5 to 8.20.0.

Release notes

Sourced from lwc's releases.

v8.20.0

What's Changed

New Contributors

Full Changelog: salesforce/lwc@v8.19.1...v8.20.0

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')!
</tr></table>

... (truncated)

Commits

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [lwc](https://github.com/salesforce/lwc/tree/HEAD/packages/lwc) from 8.16.5 to 8.20.0.
- [Release notes](https://github.com/salesforce/lwc/releases)
- [Commits](https://github.com/salesforce/lwc/commits/v8.20.0/packages/lwc)

---
updated-dependencies:
- dependency-name: lwc
  dependency-version: 8.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Dependabot pull requests label Jun 14, 2025
@dependabot dependabot bot requested review from a team as code owners June 14, 2025 23:20
@dependabot dependabot bot added the dependencies Dependabot pull requests label Jun 14, 2025
@svc-cli-bot svc-cli-bot merged commit 5a16a58 into main Jun 15, 2025
13 checks passed
@svc-cli-bot svc-cli-bot deleted the dependabot-npm_and_yarn-lwc-8.20.0 branch June 15, 2025 05:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Dependabot pull requests
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant