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 tooling dependencies #70

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 7, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@commitlint/cli (source) 19.5.0 -> 19.6.1 age adoption passing confidence devDependencies minor
@commitlint/config-conventional (source) 19.5.0 -> 19.6.0 age adoption passing confidence devDependencies minor
@playwright/test (source) 1.46.0 -> 1.50.0 age adoption passing confidence devDependencies minor
cspell (source) 8.14.4 -> 8.17.2 age adoption passing confidence devDependencies minor
eslint (source) ^8 -> 8.57.0 age adoption passing confidence devDependencies pin
eslint (source) 9.11.1 -> 9.18.0 age adoption passing confidence devDependencies minor
husky 9.1.6 -> 9.1.7 age adoption passing confidence devDependencies patch
lint-staged 15.2.10 -> 15.4.2 age adoption passing confidence devDependencies minor
markdownlint 0.35.0 -> 0.37.4 age adoption passing confidence devDependencies minor
markdownlint-cli2 0.14.0 -> 0.17.2 age adoption passing confidence devDependencies minor
pm2 (source) 5.4.2 -> 5.4.3 age adoption passing confidence devDependencies patch
prettier (source) 3.3.3 -> 3.4.2 age adoption passing confidence devDependencies minor
prettier-plugin-tailwindcss 0.6.8 -> 0.6.11 age adoption passing confidence devDependencies patch
typescript (source) ^5 -> 5.6.2 age adoption passing confidence devDependencies pin
typescript (source) ^5.5.4 -> 5.5.4 age adoption passing confidence devDependencies pin
typescript (source) ^5.5.4 -> 5.6.2 age adoption passing confidence devDependencies pin
typescript (source) ~5.4.0 -> 5.4.5 age adoption passing confidence devDependencies pin
typescript (source) ^5 -> 5.7.3 age adoption passing confidence devDependencies pin
vue-tsc (source) ^2.0.21 -> 2.1.6 age adoption passing confidence devDependencies pin
vue-tsc (source) 2.1.6 -> 2.2.0 age adoption passing confidence dependencies minor

Release Notes

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

v19.6.1

Compare Source

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

v19.6.0

Compare Source

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

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

v19.6.0

Compare Source

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

microsoft/playwright (@​playwright/test)

v1.50.0

Compare Source

Test runner

  • New option timeout allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.

    test('some test', async ({ page }) => {
      await test.step('a step', async () => {
        // This step can time out separately from the test
      }, { timeout: 1000 });
    });
  • New method test.step.skip() to disable execution of a test step.

    test('some test', async ({ page }) => {
      await test.step('before running step', async () => {
        // Normal step
      });
    
      await test.step.skip('not yet ready', async () => {
        // This step is skipped
      });
    
      await test.step('after running step', async () => {
        // This step still runs even though the previous one was skipped
      });
    });
  • Expanded expect(locator).toMatchAriaSnapshot() to allow storing of aria snapshots in separate YAML files.

  • Added method expect(locator).toHaveAccessibleErrorMessage() to assert the Locator points to an element with a given aria errormessage.

  • Option testConfig.updateSnapshots added the configuration enum changed. changed updates only the snapshots that have changed, whereas all now updates all snapshots, regardless of whether there are any differences.

  • New option testConfig.updateSourceMethod defines the way source code is updated when testConfig.updateSnapshots is configured. Added overwrite and 3-way modes that write the changes into source code, on top of existing patch mode that creates a patch file.

    npx playwright test --update-snapshots=changed --update-source-method=3way
  • Option testConfig.webServer added a gracefulShutdown field for specifying a process kill signal other than the default SIGKILL.

  • Exposed testStep.attachments from the reporter API to allow retrieval of all attachments created by that step.

UI updates

  • Updated default HTML reporter to improve display of attachments.
  • New button for picking elements to produce aria snapshots.
  • Additional details (such as keys pressed) are now displayed alongside action API calls in traces.
  • Display of canvas content in traces is error-prone. Display is now disabled by default, and can be enabled via the Display canvas content UI setting.
  • Call and Network panels now display additional time information.

Breaking

Browser Versions

  • Chromium 133.0.6943.16
  • Mozilla Firefox 134.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 132
  • Microsoft Edge 132

v1.49.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/33802 - [Bug]: Codegen's Clear button doesn't work if not recordinghttps://github.com/microsoft/playwright/issues/338066 - [Bug]: playwright hangs while waiting for pending navigationhttps://github.com/microsoft/playwright/issues/3378787 - [Bug]: VSC extension isn't capturing all entered tehttps://github.com/microsoft/playwright/issues/33788788 - [Regression]: Double clicking the steps in trace viewer doesn't filter actihttps://github.com/microsoft/playwright/issues/337723772 - [Bug]: aria_snapshot generates invalid yaml when combined with an aria-label attrhttps://github.com/microsoft/playwright/issues/3379133791 - [Bug]: text input with number value raises "container is not iterable" with to_match_aria_snahttps://github.com/microsoft/playwright/issues/33644/33644 - [Bug]: getByRole can't find element with the accessible name from label element when aria-labelledby is nothttps://github.com/microsoft/playwright/issues/33660s/33660 - [Regression]: Unable to open Playwright UI in Dark Mode

Browser Versions
  • Chromium 131.0.6778.33
  • Mozilla Firefox 132.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 130
  • Microsoft Edge 130

v1.49.0

Compare Source

v1.48.2

Compare Source

v1.48.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/33023 - [Bug]: command line flag --headed has no effect in ui modehttps://github.com/microsoft/playwright/issues/331077 - [REGRESSION]: page.waitForRequest does not get resolved since 1.48.https://github.com/microsoft/playwright/issues/3308585 - [Bug]: WebSocket route does not handle full URLs in Playwrighttps://github.com/microsoft/playwright/issues/33052052 - [Regression]: Inspector not showing recorded sthttps://github.com/microsoft/playwright/issues/331323132 - [Bug]: Wrong Ubuntu release name in Dockerfile.nhttps://github.com/microsoft/playwright/pull/3299632996 - [BUG] Trace attachments have small unusable height

Browser Versions

  • Chromium 130.0.6723.19
  • Mozilla Firefox 130.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 129
  • Microsoft Edge 129

v1.48.0

Compare Source

v1.47.2

Compare Source

Highlights

https://github.com/microsoft/playwright/pull/32699- [REGRESSION]: fix(codegen): use content_frame property in python/.NEThttps://github.com/microsoft/playwright/issues/327066- [REGRESSION]: page.pause() does not pause test timeout after 1.4https://github.com/microsoft/playwright/pull/3266161 - fix(trace-viewer): time delta between local and remote actions

Browser Versions

  • Chromium 129.0.6668.29
  • Mozilla Firefox 130.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 128
  • Microsoft Edge 128

v1.47.1

Compare Source

v1.47.0

Compare Source

v1.46.1

Compare Source

streetsidesoftware/cspell (cspell)

v8.17.2

Compare Source

v8.17.1

Compare Source

v8.17.0

Compare Source

v8.16.1

Compare Source

v8.16.0

Compare Source

v8.15.7

Compare Source

v8.15.6

Compare Source

v8.15.5

Compare Source

v8.15.4

Compare Source

v8.15.3

Compare Source

v8.15.2

Compare Source

v8.15.1

Compare Source

v8.15.0

Compare Source

eslint/eslint (eslint)

v9.18.0

Compare Source

v9.17.0

Compare Source

v9.16.0

Compare Source

Features

  • 8f70eb1 feat: Add ignoreComputedKeys option in sort-keys rule (#​19162) (Milos Djermanovic)

Documentation

  • 9eefc8f docs: fix typos in use-isnan (#​19190) (루밀LuMir)
  • 0c8cea8 docs: switch the order of words in no-unreachable (#​19189) (루밀LuMir)
  • 0c19417 docs: add missing backtick to no-async-promise-executor (#​19188) (루밀LuMir)
  • 8df9276 docs: add backtick in -0 in description of no-compare-neg-zero (#​19186) (루밀LuMir)
  • 7e16e3f docs: fix caseSensitive option's title of sort-keys (#​19183) (Tanuj Kanti)
  • 0c6b842 docs: fix typos in migration-guide.md (#​19180) (루밀LuMir)
  • 353266e docs: fix a typo in debug.md (#​19179) (루밀LuMir)
  • 5ff318a docs: delete unnecessary horizontal rule(---) in nodejs-api (#​19175) (루밀LuMir)
  • 576bcc5 docs: mark more rules as handled by TypeScript (#​19164) (Tanuj Kanti)
  • 742d054 docs: note that no-restricted-syntax can be used with any language (#​19148) (Milos Djermanovic)

Chores

v9.15.0

Compare Source

v9.14.0

Compare Source

v9.13.0

Compare Source

v9.12.0

Compare Source

Features

Bug Fixes

Documentation

  • ecbd522 docs: Mention code explorer (#​18978) (Nicholas C. Zakas)
  • 7ea4ecc docs: Clarifying the Use of Meta Objects (#​18697) (Amaresh S M)
  • d3e4b2e docs: Clarify how to exclude .js files (#​18976) (Milos Djermanovic)
  • 57232ff docs: Mention plugin-kit in language docs (#​18973) (Nicholas C. Zakas)
  • b80ed00 docs: Update README (GitHub Actions Bot)
  • cb69ab3 docs: Update README (GitHub Actions Bot)
  • 7fb0d95 docs: Update README (GitHub Actions Bot)
  • 493348a docs: Update README (GitHub Actions Bot)
  • 87a582c docs: fix typo in id-match rule (#​18944) (Jay)

Chores

typicode/husky (husky)

v9.1.7

Compare Source

lint-staged/lint-staged (lint-staged)

v15.4.2

Compare Source

Patch Changes
  • #​1509 8827ebf Thanks @​iiroj! - Change lint-staged's dependencies to use caret (^) ranges instead of tilde (~). This makes it easier for package managers to perform dependency management when minor-level updates are also permitted instead of just patch-level.

v15.4.1

Compare Source

Patch Changes

v15.4.0

Compare Source

Minor Changes
  • #​1500 a8ec1dd Thanks @​iiroj! - Lint-staged now provides TypeScript types for the configuration and main Node.js API. You can use the JSDoc syntax in your JS configuration files:

    /**
     * @​filename: lint-staged.config.js
     * @​type {import('lint-staged').Configuration}
     */
    export default {
      '*': 'prettier --write',
    }

    It's also possible to use the .ts file extension for the configuration if your Node.js version supports it. The --experimental-strip-types flag was introduced in Node.js v22.6.0 and unflagged in v23.6.0, enabling Node.js to execute TypeScript files without additional configuration.

    export NODE_OPTIONS="--experimental-strip-types"
    
    npx lint-staged --config lint-staged.config.ts
Patch Changes

v15.3.0

Compare Source

Minor Changes
  • #​1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.

  • #​1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.

    For example:

    % npx lint-staged
    ✔ Backed up original state in git stash (20addf8)
    ✔ Running tasks for staged files...
    ✔ Applying modifications from tasks...
    ✔ Cleaning up temporary files...
    

    where the backup can be seen with git show 20addf8, or git stash list:

    % git stash list
    stash@{0}: lint-staged automatic backup (20addf8)
    

v15.2.11

Compare Source

Patch Changes
  • #​1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #​1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

DavidAnson/markdownlint (markdownlint)

v0.37.4

Compare Source

  • Stop using module.createRequire, export resolveModule

v0.37.3

Compare Source

  • Tweak package.json dependencies to work with pnpm

v0.37.2

Compare Source

  • Add subpath imports for overriding default bundler behavior
  • Improve MD032

v0.37.1

Compare Source

  • Add support for "browser" condition (as used by webpack)

v0.37.0

Compare Source

v0.36.1

Compare Source

  • Fix behavior of MD054

v0.36.0

Compare Source

  • Improve MD051
  • Move applyFix and applyFixes from helpers to core
  • Make micromark parser available to custom rules
  • Introduce ./micromark helpers exports
  • Update custom/rule documentation
  • Improve performance
  • Update dependencies
DavidAnson/markdownlint-cli2 (markdownlint-cli2)

v0.17.2

Compare Source

  • Update dependencies (including markdownlint)

v0.17.1

Compare Source

  • Update dependencies (including markdownlint)

v0.17.0

Compare Source

  • Convert to ECMAScript modules
  • Use import() when loading modules
  • Update dependencies (including markdownlint)

v0.16.0

Compare Source

  • Try not to use require for modules (due to Node 22.12)
  • Update dependencies (EXcluding markdownlint)

v0.15.0

Compare Source

  • Add support for stdin input via - glob
  • Add output formatter based on string templates
  • Update dependencies (including markdownlint)
Unitech/pm2 (pm2)

v5.4.3

Compare Source

prettier/prettier (prettier)

v3.4.2

Compare Source

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#​16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->

C言
語
・
C++
・
Go
・
Rust

<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust

<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#​16891 by @​fisker)
// Input
class A {
  @&#8203;decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.1
class A {
  @&#8203;decorator
  async /**
   * The method description
   *
   */
  method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.2
class A {
  @&#8203;decorator
  /**
   * The method description
   *
   */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
Fix non-idempotent formatting (#​16899 by @​seiyab)

This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.

// Input
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.1 (first)
<div>
  foo
  <span>
    longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
  </span>, abc
</div>;

// Prettier 3.4.1 (second)
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.2
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

v3.4.1

[Compare Source](https://redirect.githu


Configuration

📅 Schedule: Branch creation - "before 5am on monday" in timezone Europe/London, Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, 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 requested a review from a team as a code owner September 7, 2024 05:01
Copy link

github-actions bot commented Sep 7, 2024

Visit the preview URL for this PR (updated for commit c7277a0):

https://community-cookbook-staging--pr70-renovate-tooling-dep-17yqb5rw.web.app

(expires Thu, 30 Jan 2025 20:49:14 GMT)

🔥 via Firebase Hosting GitHub Action 🌎

Sign: 1b876338aafcf55b4a02f1877984e116731756b1

@renovate renovate bot force-pushed the renovate/tooling-deps branch 6 times, most recently from 1e03ef8 to 0682af6 Compare September 18, 2024 06:21
@renovate renovate bot force-pushed the renovate/tooling-deps branch 5 times, most recently from 2871bc3 to 1512348 Compare September 24, 2024 20:12
@renovate renovate bot force-pushed the renovate/tooling-deps branch 8 times, most recently from 0fe16a6 to adbeef1 Compare October 2, 2024 16:12
@renovate renovate bot changed the title chore(deps): update tooling dependencies chore(deps): pin dependencies Oct 7, 2024
@renovate renovate bot force-pushed the renovate/tooling-deps branch 2 times, most recently from 82a121c to 469ec8a Compare October 8, 2024 15:52
@renovate renovate bot changed the title chore(deps): pin dependencies chore(deps): update tooling dependencies Oct 8, 2024
@renovate renovate bot force-pushed the renovate/tooling-deps branch 5 times, most recently from adde3a0 to bd998e1 Compare October 16, 2024 11:39
@renovate renovate bot force-pushed the renovate/tooling-deps branch 2 times, most recently from 982ee60 to 7886f00 Compare November 29, 2024 21:43
@renovate renovate bot force-pushed the renovate/tooling-deps branch 6 times, most recently from 28f6ad4 to 7c67c33 Compare December 10, 2024 17:07
@renovate renovate bot force-pushed the renovate/tooling-deps branch 6 times, most recently from 01cefe8 to 221478d Compare December 19, 2024 07:39
@renovate renovate bot force-pushed the renovate/tooling-deps branch 3 times, most recently from 568247e to 790d778 Compare December 28, 2024 12:25
@renovate renovate bot force-pushed the renovate/tooling-deps branch from 790d778 to a53f0e5 Compare December 31, 2024 06:45
@renovate renovate bot force-pushed the renovate/tooling-deps branch 5 times, most recently from ad123bc to e30f429 Compare January 15, 2025 17:04
@renovate renovate bot force-pushed the renovate/tooling-deps branch 3 times, most recently from f31e6b1 to f41cc00 Compare January 17, 2025 09:57
@renovate renovate bot force-pushed the renovate/tooling-deps branch 2 times, most recently from e524cc4 to 0babbf9 Compare January 23, 2025 16:43
@renovate renovate bot force-pushed the renovate/tooling-deps branch from 0babbf9 to c7277a0 Compare January 23, 2025 20:47
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