Skip to content
This repository has been archived by the owner on Feb 11, 2023. It is now read-only.

Bump @open-wc/testing from 2.5.33 to 3.0.3 #394

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 17, 2021

Bumps @open-wc/testing from 2.5.33 to 3.0.3.

Release notes

Sourced from @​open-wc/testing's releases.

@​open-wc/testing@​3.0.3

Patch Changes

  • de7f7b1a: Fix the typescript typings in testing helpers for projects that depend on lit package
  • Updated dependencies [de7f7b1a]
    • @​open-wc/testing-helpers@​2.0.2

@​open-wc/testing@​3.0.2

Patch Changes

  • 70f52431: export chai in index.d.ts

@​open-wc/testing@​3.0.1

Patch Changes

  • 1649ba46: Release bump version as major versions have already been used and unpublished in an accidental publish about a year ago.
  • Updated dependencies [1649ba46]
    • @​open-wc/testing-helpers@​2.0.1

@​open-wc/testing@​3.0.0-next.5

Minor Changes

  • 22c4017c: Undo deprecation of the html and unsafeStatic exports to enable matching lit versions to what is used in fixture.

    A typical testing file looks like this

    import { html, fixture } from '@open-wc/testing'; // html will be lit-html 2.x
    it('works for tags', async () => {
    const el = await fixture(
    html<my-el></my-el>,
    );
    });

    With this export you can combine the usage of lit-html 2.x for the fixture and template rendering in lit-html 1.x

    import { html as fixtureHtml, fixture } from '@open-wc/testing'; // fixtureHtml will be lit-html 2.x
    import { html } from 'my-library'; // html will be lit-html 1.x
    it('works for tags', async () => {
    const el = await fixture(fixtureHtml<my-el></my-el>);
    });
    it('can be combined', async () => {
    class MyExtension extends LibraryComponent {

... (truncated)

Changelog

Sourced from @​open-wc/testing's changelog.

3.0.3

Patch Changes

  • de7f7b1a: Fix the typescript typings in testing helpers for projects that depend on lit package
  • Updated dependencies [de7f7b1a]
    • @​open-wc/testing-helpers@​2.0.2

3.0.2

Patch Changes

  • 70f52431: export chai in index.d.ts

3.0.1

Patch Changes

  • 1649ba46: Release bump version as major versions have already been used and unpublished in an accidental publish about a year ago.
  • Updated dependencies [1649ba46]
    • @​open-wc/testing-helpers@​2.0.1

3.0.0

Major Changes

  • 689c9ea3: Upgrade to support latest lit package.

    • the exports html and unsafeStatic are now deprecated we recommend to import them directly from lit/static-html.js;

    • You need to load a polyfill for the scoped registry if you wanna use the scopedElements option

    • We now enforce our entrypoints via an export map

    • The side effect free import got renamed to pure

      // old
      import { fixture } from '@open-wc/testing-helpers/index-no-side-effects.js';
      // new
      import { fixture } from '@open-wc/testing-helpers/pure';
  • a5a79a25: We now use an es module version of chai from @esm-bundle/chai.

Minor Changes

  • b9b11adc: support snapshot testing with Web Test Runner

  • 22c4017c: Undo deprecation of the html and unsafeStatic exports to enable matching lit versions to what is used in fixture.

    A typical testing file looks like this

... (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 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)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 17, 2021
@github-actions github-actions bot enabled auto-merge (squash) December 17, 2021 12:33
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/open-wc/testing-3.0.3 branch 2 times, most recently from 0cc55c6 to 155e0bd Compare December 17, 2021 13:01
Bumps [@open-wc/testing](https://github.com/open-wc/open-wc/tree/HEAD/packages/testing) from 2.5.33 to 3.0.3.
- [Release notes](https://github.com/open-wc/open-wc/releases)
- [Changelog](https://github.com/open-wc/open-wc/blob/master/packages/testing/CHANGELOG.md)
- [Commits](https://github.com/open-wc/open-wc/commits/@open-wc/[email protected]/packages/testing)

---
updated-dependencies:
- dependency-name: "@open-wc/testing"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/open-wc/testing-3.0.3 branch from 155e0bd to 0a1ef8e Compare December 17, 2021 13:16
@github-actions github-actions bot merged commit 19a54ed into master Dec 17, 2021
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/open-wc/testing-3.0.3 branch December 17, 2021 13:27
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants