Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/polite-ads-play.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"what-the-fetch": patch
---

Update `fast-url` dependency to version 6.0.2 to enhance performance
Copy link

Copilot AI Nov 12, 2025

Choose a reason for hiding this comment

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

The changeset summary mentions "enhance performance" but doesn't provide specific details about what performance improvements are included in fast-url 6.0.2. According to the project's changeset best practices, summaries should be descriptive and explain what changed and why. Consider adding more details about the specific performance enhancements or linking to the fast-url release notes for version 6.0.2.

Copilot generated this review using guidance from repository custom instructions.
4 changes: 2 additions & 2 deletions bun.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"name": "fast-url",
"dependencies": {
"@standard-schema/spec": "^1.0.0",
"fast-url": "^6.0.1",
"fast-url": "^6.0.2",
},
"devDependencies": {
"@biomejs/biome": "2.3.5",
Expand Down Expand Up @@ -763,7 +763,7 @@

"fast-glob": ["[email protected]", "", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.8" } }, "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg=="],

"fast-url": ["[email protected].1", "", {}, "sha512-mRfnllPdMwwVRSodSH4nPVJ+uoDttpoXXiF+fBcZwISQv4Ig5sKRFdEd/jkyJ3NDWUF7XYolTBTZeNcZKIr1hQ=="],
"fast-url": ["[email protected].2", "", {}, "sha512-kDy3IgvyPaXNnBH9vW7+qxxcD9SwmxQDj6MaCfh/Zs+G8l+Q8CShD9h5CQpM1FYckbtkMTdi+5eyzx+UzU+RYg=="],

"fastq": ["[email protected]", "", { "dependencies": { "reusify": "^1.0.4" } }, "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ=="],

Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"include": ["LICENSE", "README.md", "src/**/*.ts"]
},
"imports": {
"fast-url": "jsr:@hckhanh/fast-url@^6.0.1",
"fast-url": "jsr:@hckhanh/fast-url@^6.0.2",
"@standard-schema/spec": "jsr:@standard-schema/spec@^1.0.0"
}
}
16 changes: 8 additions & 8 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"dependencies": {
"@standard-schema/spec": "^1.0.0",
"fast-url": "^6.0.1"
"fast-url": "^6.0.2"
},
"devDependencies": {
"@biomejs/biome": "2.3.5",
Expand Down
2 changes: 1 addition & 1 deletion test/createFetch.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ describe('createFetch', () => {
await apiFetch('@get')

expect(fetchMock).toHaveBeenCalledWith(
'https://api.example.com',
'https://api.example.com/',
expect.objectContaining({
method: 'GET',
}),
Expand Down