Skip to content

📦 Update devDependencies #222

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@google-cloud/functions-framework 3.4.2 -> 3.5.1 age adoption passing confidence
chai (source) 5.1.1 -> 5.2.0 age adoption passing confidence
eslint-plugin-prettier 5.2.1 -> 5.2.6 age adoption passing confidence
mocha (source) 10.7.3 -> 10.8.2 age adoption passing confidence
nock 13.5.5 -> 13.5.6 age adoption passing confidence
prettier (source) 3.3.3 -> 3.5.3 age adoption passing confidence

Release Notes

GoogleCloudPlatform/functions-framework-nodejs (@​google-cloud/functions-framework)

v3.5.1

Compare Source

Bug Fixes
  • correct handling of IGNORED_ROUTES set to empty (4799207)

v3.5.0

Compare Source

Features
  • adds a new ignored-routes config option (70f68e9)
Bug Fixes

v3.4.6

Compare Source

Bug Fixes

v3.4.5

Compare Source

Bug Fixes
  • fix trace context pattern, remove trace id and respect logging span id field. (#​667) (0fb00a5)

v3.4.4

Compare Source

Bug Fixes

v3.4.3

Compare Source

Bug Fixes
  • Fix typings for functions.cloudEvent to include callback. (#​631) (47cd4c6)
chaijs/chai (chai)

v5.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: chaijs/chai@v5.1.2...v5.2.0

v5.1.2

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.1.1...v5.1.2

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.6

Compare Source

Patch Changes

v5.2.5

Compare Source

Patch Changes

v5.2.4

Compare Source

Patch Changes

v5.2.3

Compare Source

Patch Changes

v5.2.2

Compare Source

Patch Changes
mochajs/mocha (mocha)

v10.8.2

Compare Source

🩹 Fixes
📚 Documentation
  • indicate 'exports' interface does not work in browsers (#​5181) (14e640e)
🧹 Chores
  • fix docs builds by re-adding eleventy and ignoring gitignore again (#​5240) (881e3b0)
🤖 Automation

v10.8.1

Compare Source

🩹 Fixes

v10.8.0

Compare Source

🌟 Features
🩹 Fixes
📚 Documentation
🧹 Chores
nock/nock (nock)

v13.5.6

Compare Source

Bug Fixes
prettier/prettier (prettier)

v3.5.3

Compare Source

v3.5.2

Compare Source

diff

Remove module-sync condition (#​17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

v3.5.1

Compare Source

diff

Fix CLI crash when cache for old version exists (#​17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#​17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

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


Configuration

📅 Schedule: Branch creation - "after 12am every weekday" in timezone America/Los_Angeles, 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 force-pushed the renovate/devdependencies branch from d8ceea0 to 08acad7 Compare October 29, 2024 23:37
@renovate renovate bot changed the title 📦 Update dependency chai to v5.1.2 📦 Update devDependencies Oct 29, 2024
@renovate renovate bot force-pushed the renovate/devdependencies branch from 08acad7 to 81f9059 Compare October 30, 2024 19:28
@renovate renovate bot force-pushed the renovate/devdependencies branch from 81f9059 to 4e87dd5 Compare November 9, 2024 18:53
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 32615bc to 9768512 Compare November 26, 2024 17:52
@renovate renovate bot force-pushed the renovate/devdependencies branch from 9768512 to bf0c500 Compare December 4, 2024 07:45
@renovate renovate bot force-pushed the renovate/devdependencies branch from bf0c500 to 78e5c98 Compare December 13, 2024 02:10
@renovate renovate bot force-pushed the renovate/devdependencies branch from 78e5c98 to d8ba506 Compare December 20, 2024 20:15
@renovate renovate bot force-pushed the renovate/devdependencies branch from d8ba506 to e74579d Compare January 2, 2025 19:21
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from b9eb745 to 5967a2b Compare January 19, 2025 01:18
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from 45ede24 to 7ac3936 Compare February 14, 2025 19:46
@renovate renovate bot force-pushed the renovate/devdependencies branch from 7ac3936 to e8f02e0 Compare February 22, 2025 05:16
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 7652b14 to 484fcc7 Compare March 4, 2025 22:28
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from 272d1d1 to 8207980 Compare March 27, 2025 21:45
@renovate renovate bot force-pushed the renovate/devdependencies branch from 8207980 to 7785414 Compare April 2, 2025 19:25
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.

0 participants