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

Merged
merged 4 commits into from
Dec 5, 2024

Conversation

open-turo-bot
Copy link
Contributor

@open-turo-bot open-turo-bot commented Sep 4, 2024

This PR contains the following updates:

Package Type Update Change
@open-turo/eslint-config-typescript devDependencies patch 9.0.11 -> 9.0.21
@types/jest (source) devDependencies patch 29.5.12 -> 29.5.14
eslint (source) devDependencies patch 8.57.0 -> 8.57.1
lerna (source) devDependencies patch 8.1.8 -> 8.1.9
prettier (source) devDependencies minor 3.3.3 -> 3.4.2
semantic-release devDependencies minor 24.1.1 -> 24.2.0
ts-patch devDependencies minor 3.2.1 -> 3.3.0
tsc-watch devDependencies patch 6.2.0 -> 6.2.1
typescript (source) devDependencies minor 5.5.4 -> 5.7.2
typescript-transform-paths devDependencies patch 3.5.0 -> 3.5.2

Release Notes

open-turo/eslint-config-typescript (@​open-turo/eslint-config-typescript)

v9.0.21

Compare Source

Bug Fixes
  • disable sonarjs/deprecation in legacy preset (ad86921)
  • disable sonarjs/deprecation in main preset (e884ce8)

v9.0.20

Compare Source

Bug Fixes
  • turn sonor no small switch to off (65dfb12)

v9.0.19

Compare Source

Bug Fixes
  • deps: update all non-major dependencies (8d7add8)

v9.0.18

Compare Source

Miscellaneous
  • deps: update dependency eslint to v8.57.1 (d94e173)
  • deps: update pre-commit hook pre-commit/pre-commit-hooks to v5 (3748b5d)
  • deps: update pre-commit hook rhysd/actionlint to v1.7.2 (b6ed175)
  • deps: update pre-commit hook rhysd/actionlint to v1.7.3 (3d69cbc)
Bug Fixes
  • deps: update dependency eslint-plugin-unicorn to v56 (bf9cc7d)

v9.0.17

Compare Source

Bug Fixes
  • tweak severity of some sonarjs rules (9d2d368)

v9.0.16

Compare Source

Continuous Integration
  • use latest actions-node (e8319a5)
Bug Fixes
  • deps: update dependency eslint-plugin-jest to v28.8.3 (b5cde5b)

v9.0.15

Compare Source

Bug Fixes
  • disable some sonarjs rules (9840af9)
Miscellaneous
  • deps: update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v9.18.0 (5b81eaf)

v9.0.14

Compare Source

Bug Fixes
  • deps: update dependency eslint-plugin-import to v2.30.0 (dfe3e41)

v9.0.13

Compare Source

Bug Fixes
  • deps: update dependency eslint-plugin-sonarjs to v2 (285639f)

v9.0.12

Compare Source

Bug Fixes
  • deps: update all non-major dependencies (1a06f77)
Miscellaneous
  • deps: update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v9.17.0 (82d7c4a)
eslint/eslint (eslint)

v8.57.1

Compare Source

Bug Fixes

  • a19072f fix: add logic to handle fixTypes in the lintText() method (#​18900) (Francesco Trotta)
  • 04c7188 fix: Don't lint same file multiple times (#​18899) (Francesco Trotta)
  • 87ec3c4 fix: do not throw when defining a global named __defineSetter__ (#​18898) (Francesco Trotta)
  • 60a1267 fix: Provide helpful error message for nullish configs (#​18889) (Milos Djermanovic)
  • a0dea8e fix: allow name in global ignores, fix --no-ignore for non-global (#​18875) (Milos Djermanovic)
  • 3836bb4 fix: do not crash on error in fs.walk filter (#​18886) (Milos Djermanovic)
  • 2dec349 fix: skip processor code blocks that match only universal patterns (#​18880) (Milos Djermanovic)

Documentation

Build Related

  • 35d366a build: Support updates to previous major versions (#​18870) (Milos Djermanovic)

Chores

lerna/lerna (lerna)

v8.1.9

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

semantic-release/semantic-release (semantic-release)

v24.2.0

Compare Source

Features
  • clarify branch existence requirement in error messages (#​3462) (05a2ea9)

v24.1.3

Compare Source

Bug Fixes
  • branch-naming: prevent non-range versions from being identified as maintenance branches (07f2672)

v24.1.2

Compare Source

Bug Fixes
nonara/ts-patch (ts-patch)

v3.3.0

Compare Source

Features
3.2.1 (2024-06-26)
Bug Fixes
gilamran/tsc-watch (tsc-watch)

v6.2.1

Compare Source

  • bug fix: Fixed new version of Typescript clear codes. thanks to @​staszekj
microsoft/TypeScript (typescript)

v5.7.2: TypeScript 5.7

Compare Source

For release notes, check out the release announcement.

Downloads are available on:

v5.6.3: TypeScript 5.6.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.6.2: TypeScript 5.6

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

LeDDGroup/typescript-transform-paths (typescript-transform-paths)

v3.5.2

Compare Source

compare changes

🩹 Fixes
  • Restore typescript 5.6 compatibility (#​301)
🏡 Chore
❤️ Contributors

v3.5.1

Compare Source

compare changes

🩹 Fixes
  • Downgrade minimatch from 10.0.1 to 9.0.5 (#​272)
💅 Refactors
🏡 Chore
  • Rename nx test project to avoid conflict with package name (3ee03d1)
  • deps-dev: Bump typescript-eslint from 8.1.0 to 8.2.0 (#​249)
  • deps-dev: Bump @​types/node from 22.2.0 to 22.4.1 (#​248)
  • Add danielpza to funding.yml (9aa6941)
  • deps-dev: Bump typescript-eslint from 8.2.0 to 8.3.0 (#​254)
  • deps-dev: Bump @​types/node from 22.4.1 to 22.5.0 (#​253)
  • deps-dev: Update some dependencies (164aeac)
  • Remove eslint-plugin-unicorn (8c6ccf4)
❤️ Contributors

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

@open-turo-bot open-turo-bot requested a review from a team as a code owner September 4, 2024 00:08
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch from 6519e8b to f65ce6d Compare September 5, 2024 00:08
@open-turo-bot open-turo-bot changed the title chore(deps): update dependency @open-turo/eslint-config-typescript to v9.0.14 chore(deps): update all non-major dependencies Sep 5, 2024
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 3 times, most recently from c9d7287 to c010b35 Compare September 12, 2024 00:06
@tagoro9
Copy link
Contributor

tagoro9 commented Sep 12, 2024

The typescript upgrade doesn't work yet with transform-paths. See LeDDGroup/typescript-transform-paths#266

@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 4 times, most recently from 144662a to 7143399 Compare September 19, 2024 00:08
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 4 times, most recently from 0cc8f68 to 4773e1f Compare September 28, 2024 00:08
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 3 times, most recently from c9689b5 to 8ee329f Compare October 8, 2024 00:08
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch from 8ee329f to 03d3426 Compare October 9, 2024 00:08
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 5 times, most recently from 889ecbe to 0b3c32e Compare October 23, 2024 00:08
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 4 times, most recently from ef299dc to c373fe9 Compare October 30, 2024 00:08
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 2 times, most recently from d1cc294 to 3a988f7 Compare November 4, 2024 00:08
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch from 3a988f7 to 9f772ed Compare November 6, 2024 00:08
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch from 9f772ed to 10d8b29 Compare November 14, 2024 00:08
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 6 times, most recently from 0ce6836 to 96a260c Compare November 29, 2024 00:09
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch from 96a260c to 63b6804 Compare December 5, 2024 00:09
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch from 63b6804 to 96d5cf3 Compare December 5, 2024 16:16
@coveralls
Copy link

Pull Request Test Coverage Report for Build 12183899645

Details

  • 1 of 1 (100.0%) changed or added relevant line in 1 file are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.3%) to 88.889%

Totals Coverage Status
Change from base Build 12183700126: -0.3%
Covered Lines: 46
Relevant Lines: 49

💛 - Coveralls

Copy link

github-actions bot commented Dec 5, 2024

Release notes preview

Below is a preview of the release notes if your PR gets merged.


5.0.3 (2024-12-05)

Bug Fixes

Miscellaneous

  • deps: update all non-major dependencies (96d5cf3)
  • deps: update dependency node to v20.18.0 (62938e7)
  • deps: update dependency semantic-release to v24 (a61f172)
  • deps: update node.js to v20.18.1 (18cce35)
  • deps: update node.js to v22 (d047c99)
  • deps: update open-turo/action-setup-tools action to v2 (634a20b)
  • deps: update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v9.19.0 (fdcdd38)
  • deps: update pre-commit hook pre-commit/pre-commit-hooks to v5 (a883a0f)
  • deps: update pre-commit hook rhysd/actionlint to v1.7.2 (7519571)
  • deps: update pre-commit hook rhysd/actionlint to v1.7.3 (43a2ce0)
  • deps: update pre-commit hook rhysd/actionlint to v1.7.4 (3219a38)

Build System

  • compile action (a55ab08)
  • dev-deps: downgrade typescript so build works (7319dc0)

@tagoro9 tagoro9 merged commit a775d36 into main Dec 5, 2024
2 checks passed
@tagoro9 tagoro9 deleted the c/renovate_all-minor-patch branch December 5, 2024 16:30
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.

4 participants