Skip to content

chore(deps): update external dependencies (major) #137

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

Open
wants to merge 1 commit into
base: next
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 4, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@open-wc/testing (source) 3.2.2 -> 4.0.0 age adoption passing confidence
glob 8.1.0 -> 11.0.2 age adoption passing confidence
lit (source) 2.8.0 -> 3.3.0 age adoption passing confidence

Release Notes

open-wc/open-wc (@​open-wc/testing)

v4.0.0

Compare Source

Major Changes

If you're using a fixture like so with scoped elements:

await fixture(html`...`, { scopedElements: ... });

You're gonna have to load the @​webcomponents/scoped-custom-element-registry polyfill yourself first.

isaacs/node-glob (glob)

v11.0.2

Compare Source

v11.0.1

Compare Source

v11.0.0

Compare Source

v10.4.5

Compare Source

v10.4.4

Compare Source

v10.4.3

Compare Source

v10.4.2

Compare Source

v10.4.1

Compare Source

v10.4.0

Compare Source

v10.3.16

Compare Source

v10.3.15

Compare Source

v10.3.14

Compare Source

v10.3.13

Compare Source

v10.3.12

Compare Source

v10.3.11

Compare Source

v10.3.10

Compare Source

v10.3.9

Compare Source

v10.3.8

Compare Source

v10.3.7

Compare Source

v10.3.6

Compare Source

v10.3.5

Compare Source

v10.3.4

Compare Source

v10.3.3

Compare Source

v10.3.2

Compare Source

v10.3.1

Compare Source

v10.3.0

Compare Source

v10.2.7

Compare Source

v10.2.6

Compare Source

v10.2.5

Compare Source

v10.2.4

Compare Source

v10.2.3

Compare Source

v10.2.2

Compare Source

v10.2.1

Compare Source

v10.2.0

Compare Source

v10.1.0

Compare Source

v10.0.0

Compare Source

  • No default exports, only named exports

v9.3.5

Compare Source

v9.3.4

Compare Source

v9.3.3

Compare Source

  • Upgraded minimatch to v8, adding support for any degree of
    nested extglob patterns.

v9.3.2

Compare Source

v9.3.1

Compare Source

v9.3.0

Compare Source

v9.2.1

Compare Source

v9.2.0

Compare Source

v9.1.2

Compare Source

v9.1.1

Compare Source

v9.1.0

Compare Source

v9.0.2

Compare Source

v9.0.1

Compare Source

v9.0.0

Compare Source

lit/lit (lit)

v3.3.0

Compare Source

Minor Changes
  • #​4901 c9160405 Thanks @​maxpatiiuk! - Dev mode warnings are now emitted on the next microtask after package import, allowing for a wider opportunity to suppress the warnings by consumers.

  • #​4934 4824c4ce - Adds property option for useDefault. When set, the initial default value is not considered a change and does not reflect when reflect is set. In addition, when the attribute is removed, the default value is restored.

Patch Changes

v3.2.1

Compare Source

Patch Changes
  • #​4782 99703a03 - Revert the Terser plugin for Rollup to rollup-plugin-terser from @rollup/plugin-terser
    due to a bug that prevented our minified name prefixing from working.

v3.2.0

Compare Source

Minor Changes
Patch Changes

v3.1.4

Compare Source

Patch Changes
  • #​4646 abf30b3e - The value provided by the ref() directive will always be undefined when the element is disconnected.

v3.1.3

Compare Source

Patch Changes
  • #​4570 bd881370 - Fix the lit-html marker length to be consistently 9 characters.

v3.1.2

Compare Source

Patch Changes

v3.1.1

Compare Source

Patch Changes

v3.1.0

Compare Source

Minor Changes
  • #​4309 949a5467 - Adds two new types: UncompiledTemplateResult and MaybeCompiledTemplateResult. Currently UncompiledTemplateResult is the same as TemplateResult, and MaybeCompiledTemplateResult is the union of the compiled and uncompiled types.
Patch Changes
  • #​4387 bf551b5b - Ensure renderRoot exists before first update (#​4268)

  • #​4282 c7922a0c Thanks @​MaxArt2501! - Fix a bug where accessing a @query decorated field with the cache flag set before the first update would result in null being cached permanently. null will no longer be cached before the first update and in DEV_MODE now raises a warning.

  • #​4388 839ca0f8 - Fixes bug where adding or removing controllers during a reactive controller lifecycle would affect the execution of other controllers (#​4266). Controllers can now be added/removed during lifecycle without affecting others.

  • Updated dependencies [949a5467]:

v3.0.2

Compare Source

Patch Changes
  • #​4345 02b8d620 - Add a dev mode warning if a static value such as literal or unsafeStatic is detected within the non-static html tag function. These should only be used with the static html tag function imported from lit-html/static.js or lit/static-html.js.

v3.0.1

Compare Source

Patch Changes
  • #​4240 edf998c9 Thanks @​remziatay! - Improved the type inferece of the choose() directive to properly restrict the case type inferred from provided value. Note: If this change creates a type error in your code, there must have been an unreachable case that can be removed, or the type of your value might be missing a valid case in the union.

  • #​4310 8f674ab3 Thanks @​megheaiulian! - The when() directive now calls the case functions with the provided condition value as an argument. This allows the narrowing of types for the condition value based on its truthiness when used as a parameter for the case function.

  • #​4284 89a5b088 - Allow null to be in the type of @query() decorated fields

v3.0.0

Compare Source

Major Changes
  • #​3756 f06f7972 - Drop IE11 support

  • #​4146 0f6878dc - Generated accessor for reactive properties now wrap user accessors and automatically call this.requestUpdate() in the setter. As in previous versions, users can still specify noAccessor: true, in which case they should call this.requestUpdate() themselves in the setter if they want to trigger a reactive update.

  • #​3765 92cedaa2 - Remove experimental hydrate modules. These are available from @lit-labs/ssr-client.

  • #​3850 7e8491d4 - Delete deprecated queryAssignedNodes behavior and arguments.

    Migrate deprecated usage with a selector argument to use
    @queryAssignedElements. E.g.: @queryAssignedNodes('list', true, '.item') to
    @queryAssignedElements({slot: '', flatten: false, selector: '.item'}).

  • #​4254 1040f758 - Change the type of ReactiveElement.renderRoot and return type of ReactiveElement.createRenderRoot() to be HTMLElement | DocumentFragment to match each other and lit-html's render() method.

  • #​3759 1db01376 - Use replaceWith() for SVG templates

  • #​3751 dfd747cf - Simplify lit-html attribute handling for standards-compliant browsers that iterate attributes in source order

  • #​3750 c3e473b4 - Use toggleAttribute() to simplify boolean attribute parts

  • #​3896 2eba6997 - Warn on async overrides of performUpdate()

Patch Changes

Configuration

📅 Schedule: Branch creation - "after 6pm on sunday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/major-external-dependencies branch 2 times, most recently from b4bd6f9 to 9c842b1 Compare March 21, 2023 02:51
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from 9c842b1 to e797c53 Compare March 22, 2023 22:19
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from e797c53 to 208b35d Compare April 2, 2023 06:06
@renovate renovate bot changed the title chore(deps): update dependency glob to v9 chore(deps): update dependency glob to v10 Apr 10, 2023
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch 2 times, most recently from 08fe26e to f57bb73 Compare April 15, 2023 03:44
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch 2 times, most recently from 41178d9 to 73f97b4 Compare April 23, 2023 01:36
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from 73f97b4 to c894af9 Compare April 26, 2023 09:02
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch 2 times, most recently from f7bde1a to f70c176 Compare May 15, 2023 05:10
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch 4 times, most recently from 21b0339 to a6740eb Compare May 20, 2023 23:49
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from a6740eb to adb1c48 Compare June 6, 2023 19:55
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch 2 times, most recently from aa31dd7 to 1498745 Compare June 28, 2023 01:54
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch 3 times, most recently from ef3abc6 to a9ec393 Compare July 9, 2023 00:01
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from a9ec393 to 0f1ac55 Compare August 31, 2023 01:16
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch 6 times, most recently from 6331da6 to 5fb40cf Compare September 27, 2023 07:14
@renovate renovate bot changed the title chore(deps): update dependency glob to v10 chore(deps): update external dependencies (major) Oct 10, 2023
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from 6f88622 to e16b481 Compare November 16, 2023 04:34
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from e16b481 to 393bbf7 Compare December 24, 2023 21:36
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch 2 times, most recently from ccd8c64 to 9810cbd Compare January 10, 2024 00:38
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from 9810cbd to b98be63 Compare January 19, 2024 18:59
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from b98be63 to 1e4101c Compare January 31, 2024 22:40
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from 1e4101c to b95067b Compare March 28, 2024 19:23
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from b95067b to 8831936 Compare April 16, 2024 01:00
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch 2 times, most recently from a94edbe to 2ab6aaa Compare May 12, 2024 03:55
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch 4 times, most recently from 5b82517 to d8ba96b Compare May 26, 2024 22:57
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from d8ba96b to f3a85ed Compare June 5, 2024 01:39
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from f3a85ed to 3f60104 Compare June 19, 2024 04:58
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch 2 times, most recently from 57af5d0 to 3c265ff Compare July 9, 2024 00:47
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from 3c265ff to c094839 Compare August 5, 2024 22:38
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from c094839 to da02e0b Compare October 7, 2024 22:28
@renovate renovate bot changed the title chore(deps): update external dependencies (major) chore(deps): update external dependencies (major) - autoclosed Dec 8, 2024
@renovate renovate bot closed this Dec 8, 2024
@renovate renovate bot deleted the renovate/major-external-dependencies branch December 8, 2024 18:53
@renovate renovate bot changed the title chore(deps): update external dependencies (major) - autoclosed chore(deps): update external dependencies (major) Dec 8, 2024
@renovate renovate bot reopened this Dec 8, 2024
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from aaba4c8 to da02e0b Compare December 8, 2024 21:41
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from da02e0b to cf8c86e Compare January 10, 2025 09:27
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from cf8c86e to 5b065de Compare April 11, 2025 16:38
@renovate renovate bot force-pushed the renovate/major-external-dependencies branch from 5b065de to 8c35083 Compare April 23, 2025 20:29
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.

0 participants