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

[deps]: Update npm minor #274

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

[deps]: Update npm minor #274

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 15, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@actions/artifact (source) 2.1.4 -> 2.1.8 age adoption passing confidence
@types/node (source) 20.12.5 -> 20.14.11 age adoption passing confidence
adm-zip 0.5.12 -> 0.5.14 age adoption passing confidence
filesize (source) 10.1.1 -> 10.1.4 age adoption passing confidence
lint-staged 15.2.2 -> 15.2.7 age adoption passing confidence
prettier (source) 3.2.5 -> 3.3.3 age adoption passing confidence
typescript (source) 5.4.4 -> 5.5.3 age adoption passing confidence

Release Notes

actions/toolkit (@​actions/artifact)

v2.1.8

  • Allows *.localhost domains for hostname checks for local development.

v2.1.7

  • Update unzip-stream dependency and reverted to using unzip.Extract()

v2.1.6

  • Will retry on invalid request responses.

v2.1.5

  • Bumped archiver dependency to 7.0.1
cthackers/adm-zip (adm-zip)

v0.5.14

Compare Source

Fixed an issue introduced on version 0.1.13 requiring a new mandatory parameter on the inflater on nodejs version >= 15

v0.5.13

Compare Source

  • Fixed extractAllToAsync callback @​5saviahv
  • Fixed issue with "toAsyncBuffer" where after that command all entries are gone @​5saviahv
  • Minor fixes (tests, typos etc) @​5saviahv
  • Added a an option to specificy the maximum expectedLength of the file to protect against zip bombs or limit memory usage @​undefined-moe
  • Add check for invalid large disk entries @​criyle
avoidwork/filesize.js (filesize)

v10.1.4

Compare Source

  • Fixing type def of 'partial()' 0e1516a

v10.1.3

Compare Source

8 July 2024

  • fix: add bigint in filesize.d.ts #183
  • Bump braces from 3.0.2 to 3.0.3 #182
  • Updating dependencies 400b3e3
  • Generated CHANGELOG.md 5b2198a

v10.1.2

Compare Source

  • fix: input type should accept string #181
  • Updating the year in LICENSE & README.md c9840ae
okonet/lint-staged (lint-staged)

v15.2.7

Compare Source

Patch Changes
  • #​1440 a51be80 Thanks @​iiroj! - In the previous version the native git rev-parse --show-toplevel command was taken into use for resolving the current git repo root. This version drops the --path-format=absolute option to support earlier git versions since it's also the default behavior. If you are still having trouble, please try upgrading git to the latest version.

v15.2.6

Compare Source

Patch Changes
  • #​1433 119adb2 Thanks @​iiroj! - Use native "git rev-parse" commands to determine git repo root directory and the .git config directory, instead of using custom logic. This hopefully makes path resolution more robust on non-POSIX systems.

v15.2.5

Compare Source

Patch Changes
  • #​1424 31a1f95 Thanks @​iiroj! - Allow approximately equivalent versions of direct dependencies by using the "~" character in the version ranges. This means a more recent patch version of a dependency is allowed if available.

  • #​1423 91abea0 Thanks @​iiroj! - Improve error logging when failing to read or parse a configuration file

  • #​1424 ee43f15 Thanks @​iiroj! - Upgrade micromatch@4.0.7

v15.2.4

Compare Source

Patch Changes
  • 4f4537a Thanks @​iiroj! - Fix release issue with previous version; update dependencies
prettier/prettier (prettier)

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@​(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​foo`tagged template`
class X {}

// Prettier 3.3.3
@​(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@​let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

v3.3.2

Compare Source

diff

Fix handlebars path expressions starts with @ (#​16358 by @​Princeyadav05)
{{! Input }}
<div>{{@&#8203;x.y.z}}</div>

{{! Prettier 3.3.1 }}
<div>{{@&#8203;x}}</div>

{{! Prettier 3.3.2 }}
<div>{{@&#8203;x.y.z}}</div>

v3.3.1

Compare Source

diff

Preserve empty lines in front matter (#​16347 by @​fisker)
<!-- Input -->
---
foo:
  - bar1

  - bar2

  - bar3
---
Markdown

<!-- Prettier 3.3.0 -->

---
foo:
  - bar1
  - bar2
  - bar3
---

Markdown

<!-- Prettier 3.3.1 -->
---
foo:
  - bar1

  - bar2

  - bar3
---

Markdown
Preserve explicit language in front matter (#​16348 by @​fisker)
<!-- Input -->
---yaml
title: Hello
slug: home
---

<!-- Prettier 3.3.0 -->
---
title: Hello
slug: home
---

<!-- Prettier 3.3.1 -->
---yaml
title: Hello
slug: home
---
Avoid line breaks in import attributes (#​16349 by @​fisker)
// Input
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

// Prettier 3.3.0
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type:
  "json" };

// Prettier 3.3.1
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

v3.3.0

Compare Source

diff

🔗 Release Notes

Microsoft/TypeScript (typescript)

v5.5.3

Compare Source

v5.5.2

Compare Source

v5.4.5: TypeScript 5.4.5

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


Configuration

📅 Schedule: Branch creation - "every 2nd week starting on the 2 week of the year before 4am 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 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 Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from a team as a code owner April 15, 2024 00:35
@bitwarden-bot
Copy link

bitwarden-bot commented Apr 15, 2024

Logo
Checkmarx One – Scan Summary & Details08a9cbf8-7e6d-4eff-a96d-6e6992126ec3

No New Or Fixed Issues Found

@renovate renovate bot force-pushed the renovate/npm-minor branch 4 times, most recently from 371a52e to fbb0068 Compare April 22, 2024 17:24
@renovate renovate bot force-pushed the renovate/npm-minor branch 2 times, most recently from f8f74e4 to e335a11 Compare April 29, 2024 13:54
@renovate renovate bot force-pushed the renovate/npm-minor branch 4 times, most recently from 1569bf0 to 292e010 Compare May 8, 2024 13:18
@renovate renovate bot force-pushed the renovate/npm-minor branch 5 times, most recently from 1d09a6b to 835f841 Compare May 14, 2024 14:32
@renovate renovate bot force-pushed the renovate/npm-minor branch 6 times, most recently from 106adfc to 10ecd78 Compare May 25, 2024 13:34
@renovate renovate bot force-pushed the renovate/npm-minor branch 7 times, most recently from d8dcb84 to 2255887 Compare June 1, 2024 18:09
@renovate renovate bot force-pushed the renovate/npm-minor branch 7 times, most recently from 503dd47 to 53bdde3 Compare June 6, 2024 11:05
@renovate renovate bot force-pushed the renovate/npm-minor branch 4 times, most recently from 208d894 to d6b1356 Compare June 12, 2024 19:11
@renovate renovate bot force-pushed the renovate/npm-minor branch 8 times, most recently from 53d3595 to 06a189a Compare June 24, 2024 17:20
@renovate renovate bot force-pushed the renovate/npm-minor branch 3 times, most recently from 6c905e7 to cbe0bbb Compare July 1, 2024 21:12
@renovate renovate bot force-pushed the renovate/npm-minor branch 4 times, most recently from e4996db to 16341ea Compare July 9, 2024 01:00
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.

None yet

1 participant