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

chore(deps): update devdependencies #149

Merged
merged 1 commit into from
Jan 22, 2022
Merged

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jan 22, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@commitlint/cli (source) 12.1.4 -> 16.1.0 age adoption passing confidence
@commitlint/config-conventional (source) 12.1.4 -> 16.0.0 age adoption passing confidence
@open-wc/testing 3.0.0-next.2 -> 3.0.3 age adoption passing confidence
@web/dev-server 0.1.17 -> 0.1.29 age adoption passing confidence
@web/dev-server-rollup 0.3.3 -> 0.3.14 age adoption passing confidence
@web/storybook-prebuilt 0.1.32 -> 0.1.33 age adoption passing confidence
eslint (source) 7.28.0 -> 8.7.0 age adoption passing confidence
husky (source) 6.0.0 -> 7.0.4 age adoption passing confidence
sinon (source) 11.1.2 -> 12.0.1 age adoption passing confidence
standard-version 9.3.0 -> 9.3.2 age adoption passing confidence
stylelint (source) 13.13.1 -> 14.2.0 age adoption passing confidence
stylelint-config-standard 22.0.0 -> 24.0.0 age adoption passing confidence

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v16.1.0

Compare Source

Note: Version bump only for package @​commitlint/cli

16.0.3 (2022-01-19)

Note: Version bump only for package @​commitlint/cli

16.0.2 (2022-01-09)

Note: Version bump only for package @​commitlint/cli

16.0.1 (2021-12-28)

Note: Version bump only for package @​commitlint/cli

v16.0.3

Compare Source

Note: Version bump only for package @​commitlint/cli

v16.0.2

Compare Source

Note: Version bump only for package @​commitlint/cli

v16.0.1

Compare Source

Note: Version bump only for package @​commitlint/cli

v16.0.0

Compare Source

Features

v15.0.0

Compare Source

Features

v14.1.0

Compare Source

Note: Version bump only for package @​commitlint/cli

v14.0.0

Compare Source

Note: Version bump only for package @​commitlint/cli

13.2.1 (2021-10-09)

Note: Version bump only for package @​commitlint/cli

v13.2.1

Compare Source

Note: Version bump only for package @​commitlint/cli

v13.2.0

Compare Source

Note: Version bump only for package @​commitlint/cli

v13.1.0

Compare Source

Bug Fixes

v13.0.0

Compare Source

BREAKING CHANGES
  • minimum node version is 12

12.1.3 (2021-05-12)

Bug Fixes

12.1.2 (2021-04-29)

Note: Version bump only for package @​commitlint/cli

12.1.1 (2021-04-02)

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v16.0.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v15.0.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v14.1.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v14.0.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v13.2.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v13.1.0

Compare Source

Bug Fixes
  • cz-commitlint: fix minor formatting issues (99d8881)

v13.0.0

Compare Source

Features
BREAKING CHANGES
  • minimum node version is 12

12.1.3 (2021-05-12)

Note: Version bump only for package @​commitlint/config-conventional

12.1.2 (2021-04-29)

Note: Version bump only for package @​commitlint/config-conventional

12.1.1 (2021-04-02)

Note: Version bump only for package @​commitlint/config-conventional

open-wc/open-wc

v3.0.3

Compare Source

Patch Changes

v3.0.2

Compare Source

Patch Changes
  • 70f5243: export chai in index.d.ts

v3.0.1

Compare Source

Patch Changes

v3.0.0-next.5

Compare Source

Minor Changes
  • 22c4017: 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 '@&#8203;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 {
        render() {
          // needs to be lit-html 1.x as the library component is using LitElement with lit-html 1.x
          return html`
            <p>...</p>
          `;
        }
      }
    
      // fixture requires a lit-html 2.x template
      const el = await fixture(fixtureHtml`<my-el></my-el>`);
    });

    NOTE: If you are using fixture for testing your lit-html 1.x directives then this will no longer work.
    A possible workaround for this is

    import { html, fixture } from '@&#8203;open-wc/testing'; // html will be lit-html 2.x
    import { render, html as html1, fancyDirective } from 'my-library'; // html and render will be lit-html 1.x
    
    it('is a workaround for directives', async () => {
      const node = document.createElement('div');
      render(html1`<p>Testing ${fancyDirective('output')}</p>`, node);
    
      // you can either cleanup yourself or use fixture
      const el = await fixture(
        html`
          ${node}
        `,
      );
    
      expect(el.children[0].innerHTML).toBe('Testing [[output]]');
    });
Patch Changes

v3.0.0-next.4

Patch Changes
  • 4b9ea6f: Use lit@2.0 stable based dependencies across the project.
  • 945d1d9: Remove unused dependency on mocha as the environment should bring it.
  • 45c7fcc: Import scoped registries code dynamically to prevent library consumers that do not leverage this API from being bound to its load order requirements.
  • Updated dependencies [4b9ea6f]
  • Updated dependencies [45c7fcc]

v3.0.0-next.3

Patch Changes
modernweb-dev/web (@​web/dev-server)

v0.1.29

Compare Source

Patch Changes

v0.1.28

Compare Source

Patch Changes

v0.1.27

Compare Source

Patch Changes
  • b2c081d: When serving content to an iframe within a csp restricted page, the websocket script may not be able to access the parent window.
    Accessing it may result in an uncaught DOMException which we now handle.
  • Updated dependencies [b2c081d]

v0.1.26

Compare Source

Patch Changes

v0.1.25

Compare Source

Patch Changes

v0.1.24

Compare Source

Patch Changes

v0.1.23

Compare Source

Patch Changes

v0.1.22

Compare Source

Patch Changes

v0.1.21

Compare Source

Patch Changes

v0.1.20

Compare Source

Patch Changes

v0.1.19

Compare Source

Patch Changes

v0.1.18

Compare Source

Patch Changes
modernweb-dev/web (@​web/dev-server-rollup)

v0.3.14

Compare Source

Patch Changes
  • 73286ca: Add missing exports to mjs entrypoints

v0.3.13

Compare Source

Patch Changes

v0.3.12

Compare Source

Patch Changes
  • 2b22651: Update whatwg-url dependency to 10.0.0
  • 8a1dfdc: Update whatwg-url dependency to 11.0.0

v0.3.11

Compare Source

Patch Changes
  • 96f656a: Update Rollup to 2.58.0, use isEntry flag

v0.3.10

Compare Source

Patch Changes

v0.3.9

Compare Source

Patch Changes
  • 49dcb6b: Update Rollup dependency to 2.56.2

v0.3.8

Compare Source

Patch Changes
  • f535198: Update dependency whatwg-url to v9

v0.3.7

Compare Source

Patch Changes

v0.3.6

Compare Source

Patch Changes

v0.3.5

Compare Source

Patch Changes
  • 6222d0b: fix(dev-server): fixes #​1536, correctly handle outside-root paths

v0.3.4

Compare Source

Patch Changes
  • c41fba2: Support for subpath imports

    👉 my-pkg/package.json

    {
      "name": "my-pkg",
      "imports": {
        "#internal-a": "./path/to/internal-a.js"
      }
    }

    👉 my-pkg/src/file.js

    import { private } from '#internal-a';

    Subpath imports are not available to users of your package

    👉 other-pkg/src/file.js

    // both will fail
    import { private } from 'my-pkg#internal-a';
    import { private } from 'my-pkg/path/to/internal-a.js';
modernweb-dev/storybook-prebuilt

v0.1.33

Compare Source

eslint/eslint

v8.7.0

Compare Source

Features
  • 19ad061 feat: no-restricted-imports support casing (#​15439) (gfyoung)
  • 564ecdb feat: Support arbitrary module namespace names in no-restricted-imports (#​15491) (Milos Djermanovic)
  • 968a02a feat: Support arbitrary module namespace names in no-useless-rename (#​15493) (Milos Djermanovic)
  • 0d2b9a6 feat: move eslint --init to @​eslint/create-config (#​15150) (唯然)
  • 127f524 feat: false negative with property option in id-match (#​15474) (Nitin Kumar)
  • 359b2c1 feat: Support arbitrary module namespace names in the camelcase rule (#​15490) (Milos Djermanovic)
  • 3549571 feat: Support arbitrary module namespace names in the quotes rule (#​15479) (Milos Djermanovic)
  • 5563c45 feat: Support arbitrary module namespace names in keyword-spacing (#​15481) (Milos Djermanovic)
  • fd3683f feat: Support arbitrary module namespace names in no-restricted-exports (#​15478) (Milos Djermanovic)
Bug Fixes
  • a8db9a5 fix: no-invalid-this false positive in class field initializer (#​15495) (Milos Djermanovic)
  • 02d6426 fix: Correctly consume RuleTester statics (#​15507) (Brad Zacher)
  • db15802 fix: Add property fatalErrorCount to ignored file results (#​15520) (Francesco Trotta)
  • 03ac8cf fix: Prevent false positives with no-constant-condition (#​15486) (Jordan Eldredge)
Documentation
  • f50f849 docs: Update CLI docs to prefer local install (#​15513) (Nicholas C. Zakas)
  • 0469eb1 docs: Update shell code fences for new website (#​15522) (Olga)
Chores

v8.6.0

Compare Source

Features
  • 6802a54 feat: handle logical assignment in no-self-assign (#​14152) (Zzzen)
  • 3b38018 feat: allow to define eslint-disable-next-line in multiple lines (#​15436) (Nitin Kumar)
  • 9d6fe5a feat: false negative with onlyDeclarations + properties in id-match (#​15431) (Nitin Kumar)
Documentation
Chores
  • 3a384fc chore: Upgrade espree to 9.3.0 (#​15473) (Brandon Mills)
  • 1443cc2 chore: Update blogpost.md.ejs (#​15468) (Nicholas C. Zakas)
  • 28e907a refactor: remove unused parameter in linter.js (#​15451) (Milos Djermanovic)
  • eaa08d3 test: add tests for allowReserved parser option with flat config (#​15450) (Milos Djermanovic)

v8.5.0

Compare Source

Features

Bug Fixes

  • 7d832d4 fix: improve prefer-template fixer (#​15230) (Nitin Kumar)
  • 981fb48 fix: do not report global references in id-match rule (#​15420) (Nitin Kumar)
  • f13d4a6 fix: improve autofix of prefer-object-has-own (#​15419) (Nitin Kumar)
  • f4559a0 fix: add helpful message when test case has non-string code/name (#​15425) (Bryan Mishkin)

Documentation

  • 314c84c docs: add an incorrect code example in for-direction (#​15434) (Holger Jeromin)
  • 3928175 docs: add destructuring examples for computed-property-spacing (#​15423) (Nitin Kumar)
  • a53e59e docs: add more examples for array-element-newline rule (#​15427) (Nitin Kumar)
  • 74cf0a0 docs: update CLA info (#​15370) (Nitin Kumar)
  • e84195e docs: fix heading level for an option in class-methods-use-this rule (#​15399) (Takuya Fukuju)

Chores

  • 225f211 test: add destructuring test cases for computed-property-spacing (#​15424) (Nitin Kumar)
  • f2c7ba6 ci: use node v16 for macOS and windows jobs (#​15418) (Nitin Kumar)

v8.4.1

Compare Source

Bug Fixes
  • 234e3d9 fix: revert changes to reported locations in max-lines-per-function (#​15397) (Milos Djermanovic)
Documentation
  • fa4d483 docs: fix typo in example for sort-keys rule (#​15393) (Nitin Kumar)

v8.4.0

Compare Source

Features

Bug Fixes

  • 4940cc5 fix: mark --rulesdir option as deprecated in CLI docs (#​15310) (Kevin Partington)

Documentation

  • 54deec5 docs: update integrations.md (#​15380) (Vlad Sholokhov)
  • fa0423a docs: fix typo in PR template (#​15365) (Nitin Kumar)
  • e233920 docs: enable a few more markdownlint rules and fix violations (#​15368) (Bryan Mishkin)
  • 632176d docs: Dedent needlessly indented example in getter-return docs (#​15363) (Jordan Eldredge)
  • 4497e88 docs: Update release notes blog post template (#​15285) (Nicholas C. Zakas)

Chores

v8.3.0

Compare Source

Features

  • 60b0a29 feat: add allowProperties option to require-atomic-updates (#​15238) (Milos Djermanovic)
  • 79278a1 feat: update no-use-before-define for class static blocks (#​15312) (Milos Djermanovic)
  • ddd01dc feat: update no-redeclare for class static blocks (#​15313) (Milos Djermanovic)
  • de69cec feat: update no-inner-declarations for class static blocks (#​15290) (Milos Djermanovic)
  • e2fe7ef feat: support for private-in syntax (fixes #​14811) (#​15060) (Yosuke Ota)
  • 34bc8d7 feat: Update espree and eslint-scope (#​15338) (Brandon Mills)
  • b171cd7 feat: update max-depth for class static blocks (#​15316) (Milos Djermanovic)
  • [6487df3](http

Configuration

📅 Schedule: "every weekend" (UTC).

🚦 Automerge: Enabled.

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, click this checkbox.

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

@renovate renovate bot force-pushed the renovate/devdependencies branch from 935b552 to c33a8cb Compare January 22, 2022 18:23
@jholt1 jholt1 merged commit 09ffeb2 into main Jan 22, 2022
@jholt1 jholt1 deleted the renovate/devdependencies branch January 22, 2022 18:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants