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/plugin-transform-typescript (source) 7.25.9 -> 7.26.3 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
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
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
qunit (source) 2.22.0 -> 2.23.1 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.29.1 age adoption passing confidence
stylelint (source) 16.10.0 -> 16.12.0 age adoption passing confidence
tracked-built-ins 3.3.0 -> 3.4.0 age adoption passing confidence
turbo (source) 2.2.3 -> 2.3.3 age adoption passing confidence
typescript (source) 5.6.3 -> 5.7.2 age adoption passing confidence
vite (source) 5.4.10 -> 5.4.11 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.2

Patch Changes

v0.17.1

Patch Changes

v0.17.0

Patch Changes
babel/babel (@​babel/plugin-transform-typescript)

v7.26.3

Compare Source

🐛 Bug Fix
🏠 Internal
  • babel-helper-builder-binary-assignment-operator-visitor, babel-plugin-transform-exponentiation-operator
🏃‍♀️ Performance
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
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
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

qunitjs/qunit (qunit)

v2.23.1

Compare Source

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

Fixed

v2.23.0

Compare Source

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

Added
rollup/rollup (rollup)

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

2024-11-18

Bug Fixes
  • Revert object property tree-shaking for now (#​5736)
Pull Requests

v4.27.2

Compare Source

2024-11-15

Bug Fixes
  • Ensure unused variables in patterns are always deconflicted if rendered (#​5728)
Pull Requests

v4.27.1

Compare Source

2024-11-15

Bug Fixes
  • Fix some situations where parameter declarations could put Rollup into an infinite loop (#​5727)
Pull Requests

v4.27.0

Compare Source

2024-11-15

Features
  • Tree-shake unused properties in object literals (#​5420)
Bug Fixes
  • Change hash length limit to 21 to avoid inconsistent hash length (#​5423)
Pull Requests

v4.26.0

Compare Source

2024-11-13

Features
  • Allow to avoid await bundle.close() via explicit resource management in TypeScript (#​5721)
Pull Requests

v4.25.0

Compare Source

2024-11-09

Features
  • Add output.sourcemapDebugIds option to add matching debug ids to sourcemaps and code for tools like Sentry or Rollbar (#​5712)
Bug Fixes
  • Make it easier to manually reproduce base16 hashes by using a more standard base16 conversion algorithm (#​5719)
Pull Requests

v4.24.4

Compare Source

2024-11-04

Bug Fixes
  • Ensure mutations by handlers in Proxy definitions are always respected when tree-shaking (#​5713)
Pull Requests
stylelint/stylelint (stylelint)

v16.12.0

Compare Source

  • Added: selector-pseudo-class-allowed-list now checks @page pseudo-classes (#​8176) (@​Mouvedia).
  • Added: selector-pseudo-class-disallowed-list now checks @page pseudo-classes (#​8171) (@​Mouvedia).
  • Fixed: at-rule-property-required-list message to use "descriptor" for accuracy (#​8186) (@​ybiquitous).
  • Fixed: custom-property-no-missing-var-function false positives for container-name (#​8157) (@​Mouvedia).
  • Fixed: custom-property-no-missing-var-function false positives for custom properties passed to running() (#​8172) (@​Mouvedia).
  • Fixed: function-no-unknown false positives for running() (#​8172) (@​Mouvedia).
  • Fixed: selector-pseudo-class-no-unknown false positives for :open (#​8184) (@​lukewarlow).
  • Fixed: selector-pseudo-class-no-unknown false positives for :recto, :verso and :nth() (#​8170) (@​Mouvedia).
  • Fixed: selector-pseudo-class-no-unknown false positives for some moz-* vendor-prefixed pseudo-classes (#​8188) (@​Mouvedia).
  • Fixed: selector-pseudo-element-no-unknown false positives for ::details-content (#​8174) (@​lukewarlow).
  • Fixed: selector-type-no-unknown false positives for idents in functional pseudo-classes (#​8191) (@​elskhn).
  • Fixed: value-keyword-case false negatives (#​8158) (@​Mouvedia).
  • Fixed: value-keyword-case false positives for vendor-prefixed system colors (#​8146) (@​Mouvedia).

v16.11.0

Compare Source

vercel/turborepo (tur

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) Dec 29, 2024 10:55pm

@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 a1ee913 to 5bdf01a Compare September 29, 2024 21:05
@renovate renovate bot force-pushed the renovate/devdependencies branch from 5bdf01a to 4b30c76 Compare October 6, 2024 22:51
@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
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