Skip to content

Conversation

@angular-robot
Copy link
Contributor

@angular-robot angular-robot commented Dec 2, 2024

This PR contains the following updates:

Package Type Update Change
github/codeql-action action patch v3.27.5 -> v3.27.6
jasmine (source) devDependencies minor ~5.4.0 -> ~5.5.0
jasmine-core (source) devDependencies minor ~5.4.0 -> ~5.5.0
prettier (source) dependencies patch 3.4.1 -> 3.4.2
renovate (source) dependencies minor 39.45.0 -> 39.49.1
undici (source) devDependencies minor 7.0.0 -> 7.1.0

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

github/codeql-action (github/codeql-action)

v3.27.6

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

Note that the only difference between v2 and v3 of the CodeQL Action is the node version they support, with v3 running on node 20 while we continue to release v2 to support running on node 16. For example 3.22.11 was the first v3 release and is functionally identical to 2.22.11. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.

3.27.6 - 03 Dec 2024
  • Update default CodeQL bundle version to 2.19.4. #​2626

See the full CHANGELOG.md for more information.

jasmine/jasmine-npm (jasmine)

v5.5.0

Compare Source

Please see the release notes.

jasmine/jasmine (jasmine-core)

v5.5.0

Compare Source

Please see the release notes.

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>;
renovatebot/renovate (renovate)

v39.49.1

Compare Source

Bug Fixes
Documentation
Miscellaneous Chores

v39.49.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.14.0 (#​32896) (27fde07)
Miscellaneous Chores

v39.48.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.13.1 (#​32894) (77e9d61)
Miscellaneous Chores

v39.48.1

Compare Source

Bug Fixes
  • manager/pep621: remove pinned indexes from UV_EXTRA_INDEX_URL (#​32819) (8c5a56e)

v39.48.0

Compare Source

Features
Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.0.27 (#​32880) (624719d)
Documentation
Miscellaneous Chores
Build System

v39.47.1

Compare Source

Miscellaneous Chores
Build System

v39.47.0

Compare Source

Features

v39.46.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.0.26 (#​32863) (85a5800)
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.12.3 (#​32864) (5c71d8b)
Miscellaneous Chores

v39.46.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.12.1 (#​32859) (0ef71ee)
Build System

v39.46.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.12.0 (#​32858) (a2482a7)
Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.0.25 (#​32857) (c7eed54)
Miscellaneous Chores

v39.45.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.11.7 (#​32852) (c261075)

v39.45.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.11.6 (#​32850) (94ae068)
nodejs/undici (undici)

v7.1.0

Compare Source

What's Changed

Full Changelog: nodejs/undici@v7.0.0...v7.1.0


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 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 has been generated by Renovate Bot.

@angular-robot angular-robot added action: merge The PR is ready for merge by the caretaker comp: build renovate managed labels Dec 2, 2024
@angular-robot angular-robot bot added the area: build & ci Related the build and CI infrastructure of the project label Dec 2, 2024
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch 26 times, most recently from 4bbfa79 to a354f53 Compare December 4, 2024 11:09
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch 3 times, most recently from 73fe4a7 to 091ad84 Compare December 4, 2024 14:10
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from 091ad84 to b62b8c5 Compare December 4, 2024 15:09
Copy link
Member

@josephperrott josephperrott left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@josephperrott
Copy link
Member

This PR was merged into the repository by commit 49cc304.

The changes were merged into the following branches: main

@angular-robot angular-robot deleted the ng-renovate/all-non-major-dependencies branch December 4, 2024 16:19
@angular-automatic-lock-bot
Copy link

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

This action has been performed automatically by a bot.

@angular-automatic-lock-bot angular-automatic-lock-bot bot locked and limited conversation to collaborators Jan 4, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

action: merge The PR is ready for merge by the caretaker area: build & ci Related the build and CI infrastructure of the project comp: build renovate managed

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants