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

fix(deps): update dependency lit-element to v3 #552

Merged
merged 1 commit into from
Jul 30, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 22, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
lit-element (source) ^2.2.1 -> ^3.0.0 age adoption passing confidence

Release Notes

lit/lit

v3.2.2

Compare Source

Patch Changes
  • #​3132 2fe2053f - Added "types" entry to package exports. This tells newer versions of TypeScript where to look for typings for each module.

v3.2.1

Compare Source

Patch Changes
  • #​2978 634d4560 - Changed the caching behavior of the css`` template literal tag so that same-text styles do not share a CSSStyleSheet. Note that this may be a breaking change in some very unusual scenarios on Chromium and Firefox > 101 only.

v3.2.0

Compare Source

Minor Changes
  • #​2401 2c9d0008 - Added a devlog events system that may be used for debugging and visualizing Lit's internals.
Patch Changes

v3.1.2

Compare Source

Patch Changes
  • #​2370 7453e365 - Replace square bracket links with the linkcode JSDoc tag.
    Editors will create a jump to definition hyperlink for the linkcode tag if the identifier is in scope.

  • #​2410 b9a6962b - Correct the link path of CONTRIBUTING.md in README.md files

v3.1.1

Compare Source

Patch Changes

v3.1.0

Compare Source

Minor Changes
  • #​2327 49ecf623 - Add queryAssignedElements decorator for a declarative API that calls HTMLSlotElement.assignedElements() on a specified slot. selector option allows filtering returned elements with a CSS selector.
Patch Changes

v3.0.2

Compare Source

Patch Changes
  • #​2236 5fc3818a - Prevent polyfillSupport.noPatchSupported from implicitly being any.
    Deduplicate types for DevMode-suffixed polyfill support functions.

v3.0.1

Compare Source

Patch Changes
  • #​2152 ba5e1391 - Replace dynamic name lookups for polyfill support functions with static names.

v3.0.0

Compare Source

Major Changes
  • Most users should no longer import directly from lit-element, and instead prefer importing LitElement from the lit packages. The default entry point for lit-element remains backward-compatible and includes all decorators. However, it's recommended to use import {LitElement} from 'lit'; and import decorators from lit/decorators as necessary. See the Upgrade Guide for more details.

  • UpdatingElement has been moved from the lit-element package to the @lit/reactive-element package and renamed to ReactiveElement. See the ReactiveElement API documentation for more details. In addition, the source for css-tag, and all decorators have been moved to @lit/reactive-element. However, all symbols are re-exported from both lit and lit-element packages.

  • The @internalProperty decorator has been renamed to @state.

  • Errors that occur during the update cycle were previously squelched to allow subsequent updates to proceed normally. Now errors are re-fired asynchronously so they can be detected. Errors can be observed via an unhandledrejection event handler on window.

  • The lib folder has been removed.

  • Rendering of renderRoot/shadowRoot) via createRenderRoot and support for static styles has moved from LitElement to ReactiveElement.

  • The createRenderRoot method is now called just before the first update rather than in the constructor. Element code can not assume the renderRoot exists before the element hasUpdated. This change was made for compatibility with SSR.

  • ReactiveElement's initialize method has been removed. This work is now done in the element constructor.

  • The static render has been removed.

  • For consistency, renamed _getUpdateComplete to getUpdateComplete.

  • When a property declaration is reflect: true and its toAttribute function returns undefined the attribute is now removed where previously it was left unchanged (#​872).

  • The dirty check in attributeChangedCallback has been removed. While technically breaking, in practice it should very rarely be (#​699).

  • LitElement's adoptStyles method has been removed. Styling is now adopted in createRenderRoot. This method may be overridden to customize this behavior.

  • LitElement's static getStyles method has been renamed to static finalizeStyles and now takes a list of styles the user provided and returns the styles which should be used in the element. If this method is overridden to integrate into a style management system, typically the super implementation should be called.

  • Removed build support for TypeScript 3.4.

  • Decorators are no longer exported from the lit-element module. Instead, import any decorators you use from lit/decorators/*.

  • lit-html has been updated to 2.x.

  • Support for running in older browsers has been removed from the default configuration. Import the polyfill-support module to support Shady DOM. Note also that Lit parts inside <style> elements are no longer supported. See Polyfills for more details.

  • For simplicity, requestUpdate no longer returns a Promise. Instead await the updateComplete Promise.

  • Removed requestUpdateInternal. The requestUpdate method is now identical to this method and should be used instead.

  • #​2103 15a8356d - Updates the exports field of package.json files to replace the subpath
    folder
    mapping

    syntax with an explicit list of all exported files.

    The /-suffixed syntax for subpath folder mapping originally used in these
    files is deprecated. Rather than update to the new syntax, this change replaces
    these mappings with individual entries for all exported files so that (a) users
    must import using extensions and (b) bundlers or other tools that don't resolve
    subpath folder mapping exactly as Node.js does won't break these packages'
    expectations around how they're imported.

Minor Changes
  • A public renderOptions class field now exists on LitElement and can be set/overridden to modify the options passed to lit-html.
  • Adds static shadowRootOptions for customizing shadowRoot options. Rather than implementing createRenderRoot, this property can be set. For example, to create a closed shadowRoot using delegates focus: static shadowRootOptions = {mode: 'closed', delegatesFocus: true}.
  • Adds development mode, which can be enabled by setting the development Node exports condition. See Development and production builds for more details.
Patch Changes
  • #​1964 f43b811 - Don't publish src/ to npm.
  • For efficiency, the css function now maintains a cache and will use a cached value if available when the same style text is requested.
  • Fixed reflecting a property when it is set in a setter of another property that is called because its attribute changed (#​965).
  • Fixed exceptions when parsing attributes from JSON (#​722).
  • Fixed issue with combining static get properties on an undefined superclass with @property on a subclasss ([#​890]https://github.com/Polymer/lit-element/issues/890));

v2.5.1

Compare Source

v2.5.0

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

@codecov-commenter
Copy link

codecov-commenter commented Sep 22, 2021

Codecov Report

Merging #552 (e0e81cc) into master (e174b87) will increase coverage by 1.25%.
The diff coverage is 100.00%.

@@            Coverage Diff             @@
##           master     #552      +/-   ##
==========================================
+ Coverage   93.71%   94.97%   +1.25%     
==========================================
  Files          32       32              
  Lines         716      716              
  Branches      174      174              
==========================================
+ Hits          671      680       +9     
- Misses         13       18       +5     
+ Partials       32       18      -14     
Impacted Files Coverage Δ
packages/casl-mongoose/src/accessible_fields.ts 100.00% <ø> (+4.76%) ⬆️
packages/casl-mongoose/src/accessible_records.ts 84.00% <100.00%> (+4.00%) ⬆️
packages/casl-mongoose/src/mongo.ts 100.00% <100.00%> (ø)
packages/casl-ability/src/RuleIndex.ts 94.87% <0.00%> (ø)
...ckages/casl-prisma/src/prisma/PrismaQueryParser.ts 93.84% <0.00%> (ø)
packages/casl-ability/src/extra.ts 93.24% <0.00%> (+1.35%) ⬆️
packages/casl-vue/src/component/can.ts 100.00% <0.00%> (+3.70%) ⬆️
packages/casl-react/src/Can.ts 92.30% <0.00%> (+3.84%) ⬆️
packages/casl-ability/src/ForbiddenError.ts 88.46% <0.00%> (+3.84%) ⬆️
... and 3 more

Help us with your feedback. Take ten seconds to tell us how you rate us.

@renovate renovate bot force-pushed the renovate/lit-element-3.x branch 3 times, most recently from 9e64221 to e1b5b26 Compare October 14, 2021 18:45
@renovate renovate bot force-pushed the renovate/lit-element-3.x branch 3 times, most recently from 19700ce to 326d856 Compare November 4, 2021 16:25
@renovate renovate bot force-pushed the renovate/lit-element-3.x branch from 326d856 to 291583e Compare March 7, 2022 17:17
@renovate renovate bot force-pushed the renovate/lit-element-3.x branch from 291583e to b5b6de5 Compare April 30, 2022 10:45
@renovate renovate bot force-pushed the renovate/lit-element-3.x branch 3 times, most recently from b0496a9 to 738c2b1 Compare May 29, 2022 16:36
@renovate renovate bot force-pushed the renovate/lit-element-3.x branch 4 times, most recently from afcf2b0 to 4e86d5a Compare June 16, 2022 20:51
@renovate renovate bot force-pushed the renovate/lit-element-3.x branch 7 times, most recently from d817429 to d9d8029 Compare July 29, 2022 22:23
@renovate renovate bot force-pushed the renovate/lit-element-3.x branch from d9d8029 to e0e81cc Compare July 30, 2022 01:14
@renovate renovate bot merged commit c44c954 into master Jul 30, 2022
@renovate renovate bot deleted the renovate/lit-element-3.x branch July 30, 2022 01:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant