Skip to content

chore(deps): update minor and patch dependencies #223

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 30, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@11ty/eleventy-fetch 5.0.1 -> 5.0.2 age adoption passing confidence devDependencies patch
@secretlint/core (source) 9.0.0 -> 9.3.2 age adoption passing confidence devDependencies minor
@secretlint/secretlint-rule-preset-recommend (source) 9.0.0 -> 9.3.2 age adoption passing confidence devDependencies minor
@types/node (source) 22.10.2 -> 22.15.14 age adoption passing confidence devDependencies minor
@vitest/coverage-v8 (source) 3.1.1 -> 3.1.3 age adoption passing confidence devDependencies patch
axios (source) 1.8.4 -> 1.9.0 age adoption passing confidence devDependencies minor
crate-ci/typos v1.29.0 -> v1.32.0 age adoption passing confidence action minor
fast-xml-parser 4.5.1 -> 4.5.3 age adoption passing confidence devDependencies patch
flat-cache (source) 6.1.5 -> 6.1.9 age adoption passing confidence devDependencies patch
open-graph-scraper 6.8.3 -> 6.10.0 age adoption passing confidence devDependencies minor
secretlint (source) 9.0.0 -> 9.3.2 age adoption passing confidence devDependencies minor
tsx (source) 4.19.3 -> 4.19.4 age adoption passing confidence devDependencies patch
typescript (source) 5.7.2 -> 5.8.3 age adoption passing confidence devDependencies minor
vitest (source) 3.1.1 -> 3.1.3 age adoption passing confidence devDependencies patch

Release Notes

11ty/eleventy-fetch (@​11ty/eleventy-fetch)

v5.0.2: Eleventy Fetch v5.0.2

Compare Source

  • Improved advanced API (you might not need this). Existing default export creates an instance and couples data fetching together. This release adds a Fetch named export to create a Fetch instance without fetching data automatically. Works with the concurrency queue. Use the queue() method to fetch data.
import CachedFetch, { Fetch } from "@​11ty/eleventy-fetch";

let data = await CachedFetch(source, options);

// is the same as:
let inst = Fetch(source, options);
let data = await inst.queue();
  • Adds wasLastFetchCacheHit() on Fetch instances, used to solve bug with Eleventy Image disk cache https://github.com/11ty/eleventy-img/issues/146
  • Improved efficiency: Adds top level instance cache and a few internal caches to avoid duplicate fetch or file system read calls.
  • Adds internal directory manager to avoid duplicate fs.mkdir calls
  • Improved debug logs

Full Changelog: 11ty/eleventy-fetch@v5.0.1...v5.0.2

secretlint/secretlint (@​secretlint/core)

v9.3.2

Compare Source

What's Changed
Maintenance
CI
Dependency Updates

Full Changelog: secretlint/secretlint@v9.3.1...v9.3.2

v9.3.1

Compare Source

What's Changed
Bug Fixes
CI
Dependency Updates

Full Changelog: secretlint/secretlint@v9.3.0...v9.3.1

v9.3.0

Compare Source

What's Changed
Features
Testing
CI
New Contributors

Full Changelog: secretlint/secretlint@v9.2.1...v9.3.0

v9.2.1

Compare Source

What's Changed
Refactoring
CI
Dependency Updates
Other Changes
New Contributors

Full Changelog: secretlint/secretlint@v9.2.0...v9.2.1

v9.2.0

Compare Source

What's Changed
Features
$ echo "SECRET CONTENT" | secretlint --stdinFileName=secret.txt

Example:

cat ~/.zsh_history| ./bin/secretlint --stdinFileName=dummy.txt --format=mask-result
Refactoring

Full Changelog: secretlint/secretlint@v9.1.0...v9.2.0

v9.1.0

Compare Source

What's Changed
Features
Documentation
Dependency Updates
New Contributors

Full Changelog: secretlint/secretlint@v9.0.0...v9.1.0

vitest-dev/vitest (@​vitest/coverage-v8)

v3.1.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.1.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
axios/axios (axios)

v1.9.0

Compare Source

Bug Fixes
  • core: fix the Axios constructor implementation to treat the config argument as optional; (#​6881) (6c5d4cd)
  • fetch: fixed ERR_NETWORK mapping for Safari browsers; (#​6767) (dfe8411)
  • headers: allow iterable objects to be a data source for the set method; (#​6873) (1b1f9cc)
  • headers: fix getSetCookie by using 'get' method for caseless access; (#​6874) (d4f7df4)
  • headers: fixed support for setting multiple header values from an iterated source; (#​6885) (f7a3b5e)
  • http: send minimal end multipart boundary (#​6661) (987d2e2)
  • types: fix autocomplete for adapter config (#​6855) (e61a893)
Features
  • AxiosHeaders: add getSetCookie method to retrieve set-cookie headers values (#​5707) (80ea756)
Contributors to this release

1.8.4 (2025-03-19)

Bug Fixes
  • buildFullPath: handle allowAbsoluteUrls: false without baseURL (#​6833) (f10c2e0)
Contributors to this release

1.8.3 (2025-03-10)

Bug Fixes
  • add missing type for allowAbsoluteUrls (#​6818) (10fa70e)
  • xhr/fetch: pass allowAbsoluteUrls to buildFullPath in xhr and fetch adapters (#​6814) (ec159e5)
Contributors to this release

1.8.2 (2025-03-07)

Bug Fixes
  • http-adapter: add allowAbsoluteUrls to path building (#​6810) (fb8eec2)
Contributors to this release

1.8.1 (2025-02-26)

Bug Fixes
  • utils: move generateString to platform utils to avoid importing crypto module into client builds; (#​6789) (36a5a62)
Contributors to this release
crate-ci/typos (crate-ci/typos)

v1.32.0

Compare Source

[1.32.0] - 2025-05-02

Features
  • Updated the dictionary with the April 2025 changes

v1.31.2

Compare Source

[1.31.2] - 2025-04-28

Fixes
  • (exclusion) Don't confused emails as base64
  • (dict) Correct contamint to contaminant, not contaminat
  • (dict) Correct contamints to contaminants, not contaminats
Performance
  • Improve tokenization performance

v1.31.1

Compare Source

[1.31.1] - 2025-03-31

Fixes
  • (dict) Also correct typ to type

v1.31.0

Compare Source

[1.31.0] - 2025-03-28

Features
  • Updated the dictionary with the March 2025 changes

v1.30.3

Compare Source

[1.30.3] - 2025-03-24

Features
  • Support detecting go.work and go.work.sum files

v1.30.2

Compare Source

[1.30.2] - 2025-03-10

Features
  • Add --highlight-words and --highlight-identifiers for easier debugging of config

v1.30.1

Compare Source

[1.30.1] - 2025-03-04

Features
  • (action) Create v1 tag

v1.30.0

Compare Source

[1.30.0] - 2025-03-01

Features

v1.29.10

[Compare Source](https://redirect.github.com/crate-


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) in timezone Asia/Tokyo, 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 added dependencies Pull requests that update a dependency file renovate labels Apr 30, 2025
@renovate renovate bot force-pushed the renovate/minor-and-patch-dependencies branch 7 times, most recently from 728bac2 to 79e6f37 Compare May 6, 2025 07:12
@renovate renovate bot force-pushed the renovate/minor-and-patch-dependencies branch from 79e6f37 to 33f053b Compare May 6, 2025 19:39
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 renovate
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants