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 all non-major dependencies #2126

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 26, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@arethetypeswrong/cli (source) 0.15.4 -> 0.17.3 age adoption passing confidence
@ember/optional-features 2.1.0 -> 2.2.0 age adoption passing confidence
@embroider/compat (source) 3.6.1 -> 3.8.1 age adoption passing confidence
@embroider/core (source) 3.4.20 -> 3.5.0 age adoption passing confidence
ember-auto-import (source) 2.7.4 -> 2.10.0 age adoption passing confidence
ember-source (source) 6.0.1 -> 6.2.0 age adoption passing confidence
ember-template-lint 6.0.0 -> 6.1.0 age adoption passing confidence
eslint-plugin-ember 12.2.1 -> 12.5.0 age adoption passing confidence
eslint-plugin-jest 28.8.3 -> 28.11.0 age adoption passing confidence
eslint-plugin-n 17.10.3 -> 17.15.1 age adoption passing confidence
expect-type 0.19.0 -> 0.20.0 age adoption passing confidence
prettier (source) 3.3.3 -> 3.5.0 age adoption passing confidence
publint (source) 0.2.10 -> 0.3.4 age adoption passing confidence
release-plan ^0.9.0 -> ^0.11.0 age adoption passing confidence
tracked-built-ins 3.3.0 -> 3.4.0 age adoption passing confidence
typescript (source) 5.5.4 -> 5.7.3 age adoption passing confidence
vite (source) 6.0.11 -> 6.1.0 age adoption passing confidence
webpack 5.93.0 -> 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

v0.16.4

Patch Changes

v0.16.3

Patch Changes
  • 66ada51: Fix warning message json-format suggestion to use proper syntax

v0.16.2

Patch Changes

v0.16.1

Patch Changes
  • 5ee6f29: Update README with new problem kind

v0.16.0

Compare Source

Minor Changes
Patch Changes
emberjs/ember-optional-features (@​ember/optional-features)

v2.2.0

Compare Source

embroider-build/ember-auto-import (ember-auto-import)

v2.10.0

Compare Source

v2.9.0

Compare Source

v2.8.1

Compare Source

v2.8.0

Compare Source

emberjs/ember.js (ember-source)

v6.2.0

Compare Source

  • #​20798 [CLEANUP] Remove old code that supported old ember-test-helpers
  • #​20809 [CLEANUP] Remove long enabled EMBER_TYPESCRIPT_BLUEPRINTS feature flag
  • #​20811 Fix typescript@next support

v6.1.0

Compare Source

  • #​20782 [BUGFIX] Fixes Ember keyword shadowing: keywords should always be superseded by in-scope lexical variables
  • #​20787 Publish ember-source as v2 addon
ember-template-lint/ember-template-lint (ember-template-lint)

v6.1.0

Compare Source

jest-community/eslint-plugin-jest (eslint-plugin-jest)

v28.11.0

Compare Source

Features
  • valid-expect: allow calling expect with no arguments (#​1688) (ff0349e)

28.10.1 (2025-01-15)

Bug Fixes

v28.10.1

Compare Source

Bug Fixes

v28.10.0

Compare Source

Features
  • unbound-method: ignore functions passed to jest.mocked (#​1681) (d868636)

v28.9.0

Compare Source

Features

28.8.3 (2024-09-04)

Bug Fixes
  • prefer-importing-jest-globals: don't add imports in the middle of statements (#​1645) (9c4197c)

28.8.2 (2024-09-02)

Performance Improvements
  • prefer-importing-jest-globals: stop collecting import specifiers for no reason (#​1646) (0660242)

28.8.1 (2024-08-29)

Bug Fixes
  • prefer-importing-jest-globals: support typescript-eslint parser (#​1639) (307f6a7)
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

v17.12.0

Compare Source

🌟 Features
🩹 Fixes
🧹 Chores

v17.11.1

Compare Source

🩹 Fixes

v17.11.0

Compare Source

🌟 Features
🩹 Fixes
  • no-missing-import: Ignore node builtins in package.json imports (#​346) (148e47e)
  • no-missing-import: Resolve tsconfig paths relative to the tsconfig (#​343) (6cd7954)
📚 Documentation
  • Explain the transitive dependency case for no-extraneous-* (#​347) (8c0a2cc)
mmkal/expect-type (expect-type)

v0.20.0

Compare Source

Breaking changes

This change updates how overloaded functions are treated. Now, .parameters gives you a union of the parameter-tuples that a function can take. For example, given the following type:

type Factorize = {
  (input: number): number[]
  (input: bigint): bigint[]
}

Behvaiour before:

expectTypeOf<Factorize>().parameters.toEqualTypeOf<[bigint]>()

Behaviour now:

expectTypeOf<Factorize>().parameters.toEqualTypeOf<[number] | [bigint]>()

There were similar changes for .returns, .parameter(...), and .toBeCallableWith. Also, overloaded functions are now differentiated properly when using .branded.toEqualTypeOf (this was a bug that it seems nobody found).

See #​83 for more details or look at the updated docs (including a new section called "Overloaded functions", which has more info on how this behaviour differs for TypeScript versions before 5.3).

What's Changed

Full Changelog: mmkal/expect-type@v0.19.0...v0.20.0

prettier/prettier (prettier)

v3.5.0

Compare Source

diff

🔗 Release Notes

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.4

Compare Source

Patch Changes
  • When globbing "exports" values that contains *, also respect "exports" keys that mark paths as null. For example: (b9605ae)

    {
      "exports": {
        "./*": "./dist/*",
        "./browser/*": null
      }
    }

    The glob in "./*": "./dist/*" will no longer match and lint files in "./browser/*" as it's marked null (internal).

  • Update logs when running the publint CLI: (58d96a2)

    • The publint version is now displayed.
    • The packing command is also displayed.
    • Messages are now logged in the order of errors, warnings, and suggestions, instead of the other way round, to prioritize errors.
    • The publint deps command no longer logs passing dependencies. Only failing dependencies are logged.

    Examples:

    $ npx publint
    $ Running publint v0.X.X for my-library...
    $ Packing files with `npm pack`...
    $ All good!
    $ npx publint deps
    $ Running publint v0.X.X for my-library deps...
    $ x my-dependency
    $ Errors:
    $ 1. ...
  • Fix detecting shorthand repository URLs with the . character (09d8cbb)

  • Clarify message when "types" is not the first condition in the "exports" field (5a6ba00)

  • Correctly detect if a "types" value in "exports" is used for dual publishing (3f3d8b2)

v0.3.3

Compare Source

Patch Changes
  • Rename EXPORT_TYPES_INVALID_FORMAT message to EXPORTS_TYPES_INVALID_FORMAT (#​139)

  • Allow versioned types conditions (e.g. "types@>=5.2") in "exports" when checking for "types" condition ordering (#​138)

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]:

v0.2.12

Compare Source

Features
Bug fixes
Site

Full Changelog: publint/publint@v0.2.11...v0.2.12

v0.2.11

Compare Source

Features
New Contributors

Full Changelog: publint/publint@v0.2.10...v0.2.11

microsoft/TypeScript (typescript)

v5.7.3

Compare Source

v5.7.2

Compare Source

v5.6.3

Compare Source

v5.6.2

Compare Source

vitejs/vite (vite)

v6.1.0

Compare Source

webpack/webpack (webpack)

v5.97.1

Compare Source

Bug Fixes
  • Performance regression
  • Sub define key should't be renamed when it's a defined variable

v5.97.0

Compare Source

v5.96.1

Compare Source

v5.96.0

Compare Source

Bug Fixes

  • Fixed Module Federation should track all referenced chunks
  • Handle Data URI without base64 word
  • HotUpdateChunk have correct runtime when modified with new runtime
  • Order of chunks ids in generated chunk code
  • No extra Javascript chunks when using asset module as an entrypoint
  • Use optimistically logic for output.environment.dynamicImport to determine chunk format when no browserslist or target
  • Collision with global variables for optimization.avoidEntryIife
  • Avoid through variables in inlined module
  • Allow chunk template strings in output.devtoolNamespace
  • No extra runtime for get javascript/css chunk filename
  • No extra runtime for prefetch and preload in JS runtime when it was unsed in CSS
  • Avoid cache invalidation using ProgressPlugin
  • Increase parallelism when using importModule on the execution stage
  • Correctly parsing string in export and import
  • Typescript types
  • [CSS] css/auto considers a module depending on its filename as css (pure CSS) or css/local, before it was css/global and css/local
  • [CSS] Always interpolate classes even if they are not involved in export
  • [CSS] No extra runtime in Javascript runtime chunks for asset modules used in CSS
  • [CSS] No extra runtime in Javascript runtime chunks for external asset modules used in CSS
  • [CSS] No extra runtime for the node target
  • [CSS] Fixed url()s and @import parsing
  • [CSS] Fixed - emit a warning on broken :local and :global

New Features

  • Export CSS and ESM runtime modules
  • Single Runtime Chunk and Federation eager module hoisting
  • [CSS] Support /* webpackIgnore: true */ for CSS files
  • [CSS] Support src() support
  • [CSS] CSS nesting in CSS modules

v5.95.0

Compare Source

Bug Fixes

  • Fixed hanging when attempting to read a symlink-like file that it can't read
  • Handle default for import context element dependency
  • Merge duplicate chunks call after split chunks
  • Generate correctly code for dynamically importing the same file twice and destructuring
  • Use content hash as [base] and [name] for extracted DataURI's
  • Distinguish module and import in module-import for externals import's
  • [Types] Make EnvironmentPlugin default values types less strict
  • [Types] Typescript 5.6 compatibility

New Features

  • Add new optimization.avoidEntryIife

Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

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

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, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added dependencies Pull requests that update a dependency file renovatebot labels Aug 26, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1c77be6 to b5bc14d Compare September 6, 2024 22:09
@renovate renovate bot changed the title chore(deps): update all non-major dependencies (minor) chore(deps): update all non-major dependencies Sep 6, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 3480d41 to 0c33a00 Compare September 16, 2024 15:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from af02acb to 52e6506 Compare September 23, 2024 20:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f1229c1 to 38cfbd2 Compare September 30, 2024 19:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 01336b4 to 236a6e9 Compare October 9, 2024 12:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from e2195dc to 2a6cd5c Compare October 17, 2024 22:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 2bdad95 to bd741db Compare October 30, 2024 12:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from c053a68 to 86816aa Compare December 10, 2024 18:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 526f29e to 587e7f2 Compare December 23, 2024 03:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 488729e to 4cea592 Compare December 30, 2024 04:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 493b88b to 1e9aa7e Compare January 15, 2025 05:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from d2caa1f to 6aa5a77 Compare January 23, 2025 01:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 7d83c21 to 719ad02 Compare January 31, 2025 17:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 15f6232 to 459119e Compare February 8, 2025 17:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 459119e to 422d790 Compare February 9, 2025 12:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file renovatebot
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants