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 #32

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

Conversation

cu-infra-svc-git
Copy link
Collaborator

@cu-infra-svc-git cu-infra-svc-git commented Nov 11, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint-import-resolver-typescript ^3.6.3 -> ^3.7.0 age adoption passing confidence
jsii-diff (source) ^1.104.0 -> ^1.106.0 age adoption passing confidence
jsii-pacmak (source) ^1.104.0 -> ^1.106.0 age adoption passing confidence
jsii-release ^0.2.911 -> ^0.2.926 age adoption passing confidence
prettier (source) ^3.3.3 -> ^3.4.2 age adoption passing confidence

Release Notes

import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v3.7.0

Compare Source

Minor Changes
  • #​326 93ea130 Thanks @​SukkaW! - This version has implemented the eslint-plugin-import-x's v3 resolver interface. This allows you to use import/require to reference eslint-import-resolver-typescript directly in your ESLint flat config:

    Previously

    // eslint.config.js
    module.exports = {
      settings: {
        'import-x/resolver': {
          typescript: {
            alwaysTryTypes: true,
          },
          // or
          require.resolve('eslint-import-resolver-typescript'):
            alwaysTryTypes: true,
          }
        }
      }
    }

    Now

    // eslint.config.js
    const {
      createTypeScriptImportResolver,
    } = require('eslint-import-resolver-typescript')
    
    module.exports = {
      settings: {
        'import-x/resolver-next': [
          createTypeScriptImportResolver({
            alwaysTryTypes: true,
          }),
        ],
      },
    }

    Note that this only works with eslint-plugin-import-x@>=4.5.0. You can't use createTypeScriptImportResolver with the older versions of eslint-plugin-import-x or any existing versions of eslint-plugin-import.

aws/jsii (jsii-diff)

v1.106.0

Compare Source

Features

v1.105.0

Compare Source

Features
Bug Fixes
  • rosetta: python identifiers mishandle identifier translations with capital letters (#​4644) (e573aab)
cdklabs/publib (jsii-release)

v0.2.926

Compare Source

0.2.926 (2024-12-18)

Bug Fixes

v0.2.925

Compare Source

0.2.925 (2024-12-17)

Bug Fixes

v0.2.924

Compare Source

0.2.924 (2024-12-14)

Bug Fixes

v0.2.923

Compare Source

0.2.923 (2024-12-11)

Bug Fixes

v0.2.922

Compare Source

0.2.922 (2024-12-09)

Bug Fixes

v0.2.921

Compare Source

0.2.921 (2024-11-28)

Bug Fixes

v0.2.920

Compare Source

0.2.920 (2024-11-26)

Bug Fixes

v0.2.919

Compare Source

0.2.919 (2024-11-23)

Bug Fixes

v0.2.918

Compare Source

0.2.918 (2024-11-20)

Bug Fixes

v0.2.917

Compare Source

0.2.917 (2024-11-19)

Bug Fixes

v0.2.916

Compare Source

0.2.916 (2024-11-15)

Bug Fixes

v0.2.915

Compare Source

0.2.915 (2024-11-14)

Bug Fixes

v0.2.914

Compare Source

0.2.914 (2024-11-08)

Bug Fixes

v0.2.913

Compare Source

0.2.913 (2024-11-07)

Bug Fixes

v0.2.912

Compare Source

0.2.912 (2024-11-05)

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


Configuration

📅 Schedule: Branch creation - "before 2am on Monday" (UTC), 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 has been generated by Renovate Bot.

@cu-infra-svc-git cu-infra-svc-git changed the title chore(deps): update dependency jsii-release to ^0.2.914 chore(deps): update all non-major dependencies Nov 18, 2024
@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/all-minor-patch branch 3 times, most recently from f668239 to 5d2c139 Compare November 25, 2024 00:36
Copy link

codecov bot commented Nov 25, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 100.00%. Comparing base (0ea3f91) to head (b02e26c).
Report is 18 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff            @@
##              main       #32   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            3         3           
  Lines          136       142    +6     
  Branches         4         4           
=========================================
+ Hits           136       142    +6     

Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 9efe65b...b02e26c. Read the comment docs.

@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/all-minor-patch branch 2 times, most recently from 5706674 to c8c7472 Compare November 29, 2024 00:36
@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/all-minor-patch branch 3 times, most recently from b7e8d5d to 947b3d5 Compare December 10, 2024 00:37
@cu-infra-svc-git cu-infra-svc-git force-pushed the renovate/all-minor-patch branch 4 times, most recently from 151a691 to 7afa1a1 Compare December 18, 2024 00:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant