Skip to content

chore(deps): update all non-major dependencies#114

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#114
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Jul 2, 2025

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@readme/httpsnippet 11.0.011.3.2 age confidence
httpsnippet 3.0.13.0.10 age confidence
mocha (source) 11.4.011.7.6 age confidence
node-readfiles 0.3.10.4.0 age confidence
openapi-sampler 1.6.11.7.4 age confidence
prettier (source) 3.6.23.9.5 age confidence

Release Notes

readmeio/httpsnippet (@​readme/httpsnippet)

v11.3.2

Compare Source

What's Changed

Full Changelog: readmeio/httpsnippet@11.3.1...11.3.2

v11.3.1

Compare Source

What's Changed

Full Changelog: readmeio/httpsnippet@11.3.0...11.3.1

v11.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: readmeio/httpsnippet@11.2.0...11.3.0

v11.2.0

Compare Source

What's Changed

Full Changelog: readmeio/httpsnippet@11.1.0...11.2.0

v11.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: readmeio/httpsnippet@11.0.0...11.1.0

Kong/httpsnippet (httpsnippet)

v3.0.10

Compare Source

What's Changed

New Contributors

Full Changelog: Kong/httpsnippet@v3.0.9...v3.0.10

v3.0.9: httpsnippet v3.0.9 📦

Compare Source

What's Changed

Full Changelog: Kong/httpsnippet@v3.0.8...v3.0.9

v3.0.8: httpsnippet v3.0.8 📦

Compare Source

What's Changed

New Contributors

Full Changelog: Kong/httpsnippet@v3.0.7...v3.0.8

v3.0.7: httpsnippet v3.0.7 📦

Compare Source

What's Changed

New Contributors

Full Changelog: Kong/httpsnippet@v3.0.6...v3.0.7

v3.0.6: httpsnippet v3.0.6 📦

Compare Source

What's Changed

Full Changelog: Kong/httpsnippet@v3.0.5...v3.0.6

v3.0.5: httpsnippet v3.0.5 📦

Compare Source

What's Changed

New Contributors

Full Changelog: Kong/httpsnippet@v3.0.4...v3.0.5

v3.0.4: httpsnippet v3.0.4 📦

Compare Source

What's Changed

New Contributors

Full Changelog: Kong/httpsnippet@3.0.1...v3.0.4

v3.0.3: httpsnippet v3.0.3 📦

Compare Source

What's Changed

New Contributors

Full Changelog: Kong/httpsnippet@3.0.1...v3.0.3

v3.0.2

Compare Source

mochajs/mocha (mocha)

v11.7.6

Compare Source

🩹 Fixes
  • make describe().timeout() work (aafe6fd)
  • test: replace wmic usage with native Windows API (#​5694) (73ebdfa)
🧹 Chores

v11.7.5

Compare Source

🩹 Fixes
🧹 Chores

v11.7.4

Compare Source

🩹 Fixes
📚 Documentation
  • migrate remaining legacy wiki pages to main documentation (#​5465) (bff9166)
🧹 Chores

v11.7.3

Compare Source

🩹 Fixes
  • use original require() error for TS files if ERR_UNKNOWN_FILE_EXTENSION (#​5408) (ebdbc48)
📚 Documentation
🤖 Automation
  • deps: bump actions/setup-node in the github-actions group (#​5459) (48c6f40)

v11.7.2

Compare Source

🩹 Fixes
📚 Documentation
🧹 Chores
🤖 Automation
  • deps: bump actions/checkout in the github-actions group (#​5419) (03ac2d0)

v11.7.1

Compare Source

🩹 Fixes
🧹 Chores

v11.7.0

Compare Source

🌟 Features

v11.6.0

Compare Source

🌟 Features

v11.5.0

Compare Source

🌟 Features
guatedude2/node-readfiles (node-readfiles)

v0.4.0

Compare Source

Full Changelog: guatedude2/node-readfiles@v0.3.1...0.4.0

Redocly/openapi-sampler (openapi-sampler)

v1.7.4

Compare Source

Patch Changes
  • bb5c8c5: Fixed security vulnerability CWE-1321 by updating picomatch to version 2.3.2.

v1.7.3

Compare Source

Patch Changes
  • d9ef5ee: Fixed security vulnerability CVE-2026-4800 by updating lodash to version 4.18.0 or higher.

v1.7.2

Compare Source

Patch Changes
  • 67b6b82: Updated fast-xml-parser to v5.5.1.

v1.7.1

Compare Source

Patch Changes
  • c40f071: Updated fast-xml-parser to v5.3.8.
  • aeb9ef5: Added changeset flow for streamlined versioning and releases.

v1.7.0

Compare Source

v1.6.2

Compare Source

prettier/prettier (prettier)

v3.9.5

Compare Source

diff

Markdown: Cap ordered list mark at 999,999,999 (#​19351 by @​tats-u)

CommonMark parsers only support ordered list item numbers up to 999,999,999.

With this change, Prettier now caps the ordered list item number at 999,999,999 to ensure that the output is correctly parsed as an ordered list by CommonMark parsers. Numbers larger than 999,999,999 are not parsed as list item numbers and are left unchanged in the output:

<!-- Input -->
999999998. text
999999998. text
999999998. text
999999998. text

1234567890123456789012) text

<!-- Prettier 3.9.4 -->
999999998. text
999999999. text
1000000000. text
1000000001. text

1234567890123456789012) text

<!-- Prettier 3.9.5 -->
999999998. text
999999999. text
999999999. text
999999999. text

1234567890123456789012) text
Markdown: Avoid corrupting empty link with title (#​19487 by @​andersk)

Do not remove <> from an inline link or image with an empty URL and a title, as this removal would change its interpretation.

<!-- Input -->
[link](<> "title")

<!-- Prettier 3.9.4 -->
[link]( "title")

<!-- Prettier 3.9.5 -->
[link](<> "title")
Less: Remove extra spaces after [ in map lookups (#​19503 by @​kovsu)
// Input
.foo {
  color: #theme[ primary];
  color: #theme[@&#8203;name];
  color: #theme[@&#8203;@&#8203;name];
}

// Prettier 3.9.4
.foo {
  color: #theme[ primary];
  color: #theme[ @&#8203;name];
  color: #theme[ @&#8203;@&#8203;name];
}

// Prettier 3.9.5
.foo {
  color: #theme[primary];
  color: #theme[@&#8203;name];
  color: #theme[@&#8203;@&#8203;name];
}
CSS: Prevent addition space in type() with + (#​19516 by @​bigandy)

This fixes the addition space before + in CSS type() declaration. For example type(<number>+) was being converted into type(<number> +) which is invalid CSS and does not work.

/* Input */
div {
  border-radius: attr(br type(<length>+));
}

/* Prettier 3.9.4 */
div {
  border-radius: attr(br type(<length> +));
}

/* Prettier 3.9.5 */
div {
  border-radius: attr(br type(<length>+));
}
Less: Remove spaces between merge markers and colons (#​19517 by @​kovsu)
// Input
a {
  box-shadow  +  : 0 0 1px #&#8203;000;
}

// Prettier 3.9.4
a {
  box-shadow+  : 0 0 1px #&#8203;000;
}

// Prettier 3.9.5
a {
  box-shadow+: 0 0 1px #&#8203;000;
}
Markdown: Preserve wiki links with aliases (#​19527 by @​kovsu)
<!-- Input -->
[[Foo:Bar]]

<!-- Prettier 3.9.4 -->
[[Foo]]

<!-- Prettier 3.9.5 -->
[[Foo:Bar]]
TypeScript: Fix comments being dropped on shorthand type import/export specifiers (#​19565 by @​kirkwaiblinger)
// Input
export { type /* comment */ T } from "foo";
import { type /* comment */ T } from "foo";

// Prettier 3.9.4
Error: Comment "comment" was not printed. Please report this error!

// Prettier 3.9.5
export { type /* comment */ T } from "foo";
import { type /* comment */ T } from "foo";
Miscellaneous: Preserving comments' placement property (#​19567 by @​Janther)

Prettier@​3.9.0 deleted an undocumented property on comments, which was already used by plugins, comment.placement is now available again after comment attach.

Flow: Stop enforcing empty module declaration to break (#​19568 by @​fisker)
// Input
declare module "foo" {}

// Prettier 3.9.4
declare module "foo" {
}

// Prettier 3.9.5
declare module "foo" {}
Angular: Support expression for exhaustive typechecking (#​19571 by @​fisker)
<!-- Input -->
@&#8203;switch (state.mode) {
  @&#8203;default never(state);
}

<!-- Prettier 3.9.4 -->
@&#8203;switch (state.mode) {
  @&#8203;default never;
}

<!-- Prettier 3.9.5 -->
@&#8203;switch (state.mode) {
  @&#8203;default never(state);
}
TypeScript: Ignore comments inside mapped type when checking type parameter comments (#​19572 by @​fisker)
// Input
foo<{
  // comment
  [key in keyof Foo]: number
}>();

// Prettier 3.9.4
foo<
  {
    // comment
    [key in keyof Foo]: number;
  }
>();

// Prettier 3.9.5
foo<{
  // comment
  [key in keyof Foo]: number;
}>();
Less: Fix adjacent block comments being corrupted (#​19574 by @​kovsu)
// Input
/* a *//* b */
/* a */* {
  color: red;
}

// Prettier 3.9.4
/* a */
/* b */
/* a * {
  color: red;
}

// Prettier 3.9.5
/* a */ /* b */
/* a */
* {
  color: red;
}
JavaScript: Handle dangling comments in SwitchStatement (#​19581 by @​fisker)
// Input
switch (foo) {
 // comment
}

// Prettier 3.9.4
switch (
  foo
  // comment
) {
}

// Prettier 3.9.5
switch (foo) {
  // comment
}
TypeScript: Remove space in comment-only object type (#​19583 by @​fisker)
// Input
var foo = {
  /* comment */
};
type Foo = {
  /* comment */
};

// Prettier 3.9.4
var foo = {/* comment */};
type Foo = { /* comment */ };

// Prettier 3.9.5
var foo = {/* comment */};
type Foo = {/* comment */};

v3.9.4

Compare Source

v3.9.3

Compare Source

v3.9.2

Compare Source

v3.9.1

Compare Source

v3.9.0

Compare Source

diff

🔗 Release Notes

v3.8.5

Compare Source

v3.8.4

Compare Source

diff

Markdown: Fix blank lines between list items and nested sub-lists being removed in Markdown/MDX (#​17746 by @​byplayer)

Prettier was removing blank lines between list items and their nested sub-lists, converting loose lists into tight lists and changing their semantic meaning.

<!-- Input -->
- a

  - b

- c

  - d

<!-- Prettier 3.8.3 -->
- a
  - b
- c
  - d

<!-- Prettier 3.8.4 -->
- a

  - b

- c

  - d

v3.8.3

Compare Source

diff

SCSS: Prevent trailing comma in if() function (#​18471 by @​kovsu)
// Input
$value: if(sass(false): 1; else: -1);

// Prettier 3.8.2
$value: if(
  sass(false): 1; else: -1,
);

// Prettier 3.8.3
$value: if(sass(false): 1; else: -1);

v3.8.2

Compare Source

diff

Angular: Support Angular v21.2 (#​18722, #​19034 by @​fisker)

Exhaustive typechecking with @default never;

<!-- Input -->
@&#8203;switch (foo) {
  @&#8203;case (1) 

> ✂ **Note**
> 
> PR body was truncated to here.


</details>

---

### Configuration

📅 **Schedule**: (UTC)

- Branch creation
  - At any time (no schedule defined)
- 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](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/devmehq/widdershins-docs).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNy4yIiwidXBkYXRlZEluVmVyIjoiNDMuMjU5LjIiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->

@renovate renovate Bot added the dependencies Pull requests that update a dependency file label Jul 2, 2025
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 7736c53 to 57717bb Compare August 5, 2025 17:13
@renovate renovate Bot changed the title chore(deps): update dependency mocha to v11.7.1 fix(deps): update all non-major dependencies Aug 5, 2025
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 57717bb to 3bf3fd9 Compare August 11, 2025 17:49
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 3bf3fd9 to 05e0f13 Compare September 6, 2025 18:39
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 05e0f13 to 455ef5a Compare September 25, 2025 21:38
@renovate renovate Bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Sep 25, 2025
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c2477cd to 84c8e4a Compare October 2, 2025 00:36
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 84c8e4a to d72cddc Compare October 14, 2025 16:43
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from d72cddc to 80a53fa Compare November 5, 2025 03:38
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from d55796b to a832727 Compare November 27, 2025 17:29
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 2ecb6ed to 1203e5d Compare December 3, 2025 07:10
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b2609b6 to 499d023 Compare January 15, 2026 02:54
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 499d023 to f6dba4c Compare January 21, 2026 18:15
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 565c882 to 88f9438 Compare February 16, 2026 09:00
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 4171d1d to 2ad37b0 Compare March 2, 2026 13:05
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 8c092ce to d8539d0 Compare March 10, 2026 17:44
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from d8539d0 to 7fab7c2 Compare March 13, 2026 12:13
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ff0031b to db58645 Compare March 25, 2026 21:55
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 32a5190 to 6950f9e Compare April 1, 2026 16:53
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 96709f5 to 4c361fa Compare April 15, 2026 19:35
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c785cdd to 9b9f99b Compare April 27, 2026 23:12
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3fefebc to 5ca4ffd Compare May 12, 2026 11:31
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 4f23752 to eaf911f Compare May 24, 2026 01:27
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 5cc8d79 to 5060dd7 Compare June 1, 2026 20:42
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b884aba to 772547b Compare June 10, 2026 23:29
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 772547b to 601c8ea Compare June 17, 2026 03:11
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 1dd94ad to 7863745 Compare June 30, 2026 03:00
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c318e71 to 7c9bc1c Compare July 9, 2026 17:50
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 7c9bc1c to ed57406 Compare July 12, 2026 10:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants