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

Update devDependencies #90

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

Update devDependencies #90

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 7, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@arethetypeswrong/cli (source) ^0.16.4 -> ^0.17.0 age adoption passing confidence
@babel/eslint-parser (source) 7.25.9 -> 7.26.5 age adoption passing confidence
@babel/plugin-transform-typescript (source) 7.25.9 -> 7.26.5 age adoption passing confidence
decorator-transforms 2.2.2 -> 2.3.0 age adoption passing confidence
ember-auto-import (source) 2.9.0 -> 2.10.0 age adoption passing confidence
ember-cli-dependency-checker 3.3.2 -> 3.3.3 age adoption passing confidence
ember-primitives ^0.21.0 -> ^0.27.0 age adoption passing confidence
ember-primitives ^0.25.0 -> ^0.27.0 age adoption passing confidence
ember-resolver 13.0.2 -> 13.1.0 age adoption passing confidence
ember-template-imports 4.1.3 -> 4.2.0 age adoption passing confidence
ember-template-lint 6.0.0 -> 6.1.0 age adoption passing confidence
eslint-plugin-ember 12.3.1 -> 12.3.3 age adoption passing confidence
eslint-plugin-n 17.12.0 -> 17.15.1 age adoption passing confidence
eslint-plugin-prettier 5.2.1 -> 5.2.3 age adoption passing confidence
execa 9.5.1 -> 9.5.2 age adoption passing confidence
prettier (source) 3.3.3 -> 3.4.2 age adoption passing confidence
prettier-plugin-ember-template-tag 2.0.2 -> 2.0.4 age adoption passing confidence
publint (source) ^0.2.7 -> ^0.3.0 age adoption passing confidence
qunit (source) 2.22.0 -> 2.24.0 age adoption passing confidence
qunit-dom 3.2.1 -> 3.4.0 age adoption passing confidence
release-plan ^0.9.0 -> ^0.11.0 age adoption passing confidence
rollup (source) 4.24.3 -> 4.31.0 age adoption passing confidence
stylelint (source) 16.10.0 -> 16.13.2 age adoption passing confidence
tracked-built-ins 3.3.0 -> 3.4.0 age adoption passing confidence
turbo (source) 2.2.3 -> 2.3.4 age adoption passing confidence
typescript (source) 5.6.3 -> 5.7.3 age adoption passing confidence
vite-plugin-wasm 3.3.0 -> 3.4.1 age adoption passing confidence
vitest (source) 2.1.4 -> 2.1.8 age adoption passing confidence
webpack 5.96.1 -> 5.97.1 age adoption passing confidence

Release Notes

arethetypeswrong/arethetypeswrong.github.io (@​arethetypeswrong/cli)

v0.17.3

Patch Changes

v0.17.2

Patch Changes

v0.17.1

Patch Changes

v0.17.0

Patch Changes
babel/babel (@​babel/eslint-parser)

v7.26.5

Compare Source

👓 Spec Compliance
🐛 Bug Fix
🔬 Output optimization
embroider-build/ember-auto-import (ember-auto-import)

v2.10.0

Compare Source

ember-cli/ember-resolver (ember-resolver)

v13.1.0

Compare Source

🚀 Enhancement
  • #​986 Extending withModules module to support dynamically added modules (@​ef4)
Committers: 1
ember-template-lint/ember-template-lint (ember-template-lint)

v6.1.0

Compare Source

eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.15.1

Compare Source

🩹 Fixes
  • Promise.withResolvers is supported since node 22.11 (#​398) (c5bcb3a)

v17.15.0

Compare Source

🌟 Features
🩹 Fixes
  • no-unsupported: Correctly handle recursive objects on a per module basis (#​396) (db384d1)

v17.14.0

Compare Source

🌟 Features

v17.13.2

Compare Source

🩹 Fixes
  • no-missing-require: handle multiple resolvePaths (#​383) (df6ad2a)

v17.13.1

Compare Source

🩹 Fixes

v17.13.0

Compare Source

🌟 Features
🩹 Fixes
🧹 Chores
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.3

Compare Source

Patch Changes

v5.2.2

Compare Source

Patch Changes
sindresorhus/execa (execa)

v9.5.2

Compare Source

Bug fixes

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

diff

Remove unnecessary parentheses around assignment in v-on (#​16887 by @​fisker)
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

v3.4.0

Compare Source

diff

🔗 Release Notes

publint/publint (publint)

v0.3.2

Compare Source

Patch Changes
  • (Potentially breaking) Disable running lifecycle scripts, such as prepare, prepack, and postpack, when running the pack command internally. This returns to the behavior in v0.2. (Note that this change does not apply to yarn as it does not support ignoring lifecycle scripts for local projects) (#​128)

    This change is made as running lifecycle scripts was an unintentional behavior during the v0.3 breaking change, which could cause the linting process to take longer than expected, or even cause infinite loops if publint is used in a lifecycle script.

  • Update repository and bugs URLs to point to the new publint organization (1eda033)

  • Updated dependencies [1eda033, 10e3891]:

v0.3.1

Compare Source

Patch Changes
  • Correctly process the pack option (#​124)

v0.3.0

Compare Source

Minor Changes
  • The vfs option is removed in favour of an extended support of pack: { tarball: ArrayBuffer | ReadableStream } and pack: { files: PackFile[] } APIs. Now, it is even easier to use publint in the browser or against a packed .tgz file in Node.js. See the docs for more examples of how to use these new options. (#​122)

  • Bump node version support to >=18 (cb2ed8b)

  • publint now runs your project's package manager's pack command to get the list of packed files for linting. The previous npm-packlist dependency is now removed. (#​120)

    A new pack option is added to the node API to allow configuring this. It defaults to 'auto' and will automatically detect your project's package manager using package-manager-detector. See its JSDoc for more information of the option.

    This change is made as package managers have different behaviors for packing files, so running their pack command directly allows for more accurate linting. However, as a result of executing these commands in a child process, it may take 200-500ms longer to lint depending on the package manager used and the project size. The new handling also does not support yarn 1. See this comment for more information.

    If you use yarn 1, you should upgrade to the latest yarn version or a different package manager. Otherwise, no other changes are required for this new behavior.

Patch Changes
  • Initial setup to publish with Changesets (24a62f5)

  • When a dependency with the file: or link: protocol is specified in the package.json, it will now error to prevent accidentally publishing dependencies that will likely not work when installed by end-users (6e6ab33)

  • Fix EXPORT_TYPES_INVALID_FORMAT linting to detect .d.mts and .d.cts files (af5e88b)

  • Updated dependencies [d0b406b]:

qunitjs/qunit (qunit)

v2.24.0

Compare Source

==================

FYI:

Added
  • CLI: Add .mjs and .cjs to the default file extensions when reading a test directory.

    These have been monitored by watch mode since QUnit 2.18, but were not loaded or executed
    unless you passed them as individual files, or used your own glob like test/*.{js,mjs,cjs}.

    If you currently pass a directory to the QUnit CLI and have matching .mjs or .cjs
    files that should not be executed, you can opt-out by passing test/*.js or
    test/**/*.js explicitly instead of test/.

  • CLI: Add stacktrace cleaning by omitting or greying out internal QUnit and Node.js frames in TAP reporter. #​1795. #​1789

    Learn more about Cleaner stack traces on the QUnit Blog.

  • Core: Add QUnit.config.reporters.tap for enabling TAP via preconfig. #​1711

  • Core: Add memory to the runEnd event to allow late listeners. This helps browser integrations that only relay a summary. 27a33d1593

Fixed
  • HTML Reporter: Fix unexpected pointer cursor on "Source:" label. f8cce2bb06
  • HTML Reporter: Faster "Hide passed" toggling on large test suites. b13ade0fd7

v2.23.1

Compare Source

==================

Fixed

v2.23.0

Compare Source

==================

Added
rollup/rollup (rollup)

v4.31.0

Compare Source

2025-01-19

Features
  • Do not immediately quit when trying to use watch mode from within non-TTY environments (#​5803)
Bug Fixes
  • Handle files with more than one UTF-8 BOM header (#​5806)
Pull Requests

v4.30.1

Compare Source

2025-01-07

Bug Fixes
  • Prevent invalid code when simplifying unary expressions in switch cases (#​5786)
Pull Requests

v4.30.0

Compare Source

2025-01-06

Features
  • Inline values of resolvable unary expressions for improved tree-shaking (#​5775)
Pull Requests

v4.29.2

Compare Source

2025-01-05

Bug Fixes
  • Keep import attributes when using dynamic ESM import() expressions from CommonJS (#​5781)
Pull Requests

v4.29.1

Compare Source

2024-12-21

Bug Fixes
  • Fix crash from deoptimized logical expressions (#​5771)
Pull Requests

v4.29.0

Compare Source

2024-12-20

Features
  • Treat objects as truthy and always check second argument to better simplify logical expressions (#​5763)
Pull Requests

v4.28.1

Compare Source

2024-12-06

Bug Fixes
  • Support running Rollup natively on LoongArch (#​5749)
  • Add optional debugId to SourceMap types (#​5751)
Pull Requests

v4.28.0

Compare Source

2024-11-30

Features
  • Allow to specify how to handle import attributes when transpiling Rollup config files (#​5743)
Pull Requests

v4.27.4

Compare Source

2024-11-23

Bug Fixes
  • Update bundled magic-string to support sourcemap debug ids (#​5740)
Pull Requests

v4.27.3

[Compare Source](https:


Configuration

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

🚦 Automerge: Enabled.

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 added the dependencies label Jul 7, 2024
Copy link

stackblitz bot commented Jul 7, 2024

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

Copy link

vercel bot commented Jul 7, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
kolay-docs-app ❌ Failed (Inspect) Jan 26, 2025 9:53pm

@renovate renovate bot force-pushed the renovate/devdependencies branch from 114825c to fe085bd Compare July 11, 2024 21:41
@renovate renovate bot force-pushed the renovate/devdependencies branch from fe085bd to 35039be Compare July 14, 2024 22:24
@renovate renovate bot force-pushed the renovate/devdependencies branch from 35039be to 43368b4 Compare July 20, 2024 17:05
@renovate renovate bot changed the title chore(deps): update devdependencies Update devDependencies Jul 20, 2024
@renovate renovate bot force-pushed the renovate/devdependencies branch from 43368b4 to 224a3fc Compare July 21, 2024 23:16
@renovate renovate bot force-pushed the renovate/devdependencies branch from 224a3fc to 561e441 Compare July 28, 2024 21:50
@renovate renovate bot force-pushed the renovate/devdependencies branch from 561e441 to 368d4e7 Compare August 4, 2024 23:10
@renovate renovate bot force-pushed the renovate/devdependencies branch from 368d4e7 to 328b123 Compare August 11, 2024 22:01
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 616cc47 to bb5e319 Compare August 18, 2024 22:02
@renovate renovate bot force-pushed the renovate/devdependencies branch from bb5e319 to 1fb66fc Compare August 25, 2024 22:59
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 85e787a to 76f1984 Compare September 1, 2024 22:43
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 7f19b4b to c6d8b5d Compare September 8, 2024 22:16
@renovate renovate bot force-pushed the renovate/devdependencies branch from 4b30c76 to dec1709 Compare October 13, 2024 22:38
@renovate renovate bot force-pushed the renovate/devdependencies branch from dec1709 to 617601e Compare October 20, 2024 22:40
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 56f1a94 to ac8c56a Compare October 27, 2024 23:03
@renovate renovate bot force-pushed the renovate/devdependencies branch from ac8c56a to 2827d99 Compare November 3, 2024 21:18
@renovate renovate bot force-pushed the renovate/devdependencies branch from 2827d99 to 74bad55 Compare November 10, 2024 22:15
@renovate renovate bot force-pushed the renovate/devdependencies branch from 74bad55 to 67781b9 Compare November 17, 2024 22:49
@renovate renovate bot force-pushed the renovate/devdependencies branch from 67781b9 to d0e031e Compare November 24, 2024 21:18
@renovate renovate bot force-pushed the renovate/devdependencies branch from d0e031e to 125dfc1 Compare December 1, 2024 21:28
@renovate renovate bot force-pushed the renovate/devdependencies branch from 125dfc1 to e7f2b01 Compare December 8, 2024 21:17
@renovate renovate bot force-pushed the renovate/devdependencies branch from e7f2b01 to fb10e60 Compare December 15, 2024 21:47
@renovate renovate bot force-pushed the renovate/devdependencies branch from fb10e60 to 217e118 Compare December 22, 2024 23:07
@renovate renovate bot force-pushed the renovate/devdependencies branch from 217e118 to a592c97 Compare December 29, 2024 22:54
@renovate renovate bot force-pushed the renovate/devdependencies branch from a592c97 to bd68639 Compare January 19, 2025 21:52
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.

0 participants