Skip to content

Commit 52df593

Browse files
authored
Update fast-url dependency to version 6.0.2 to enhance performance (#42)
* Update `fast-url` dependency to version 6.0.2 across project files * Update `fast-url` dependency to version 6.0.2 across project files * Fix test case to use trailing slash in `fetchMock` URL assertion.
1 parent b5be69a commit 52df593

File tree

6 files changed

+18
-13
lines changed

6 files changed

+18
-13
lines changed

.changeset/polite-ads-play.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"what-the-fetch": patch
3+
---
4+
5+
Update `fast-url` dependency to version 6.0.2 to enhance performance

bun.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"name": "fast-url",
77
"dependencies": {
88
"@standard-schema/spec": "^1.0.0",
9-
"fast-url": "^6.0.1",
9+
"fast-url": "^6.0.2",
1010
},
1111
"devDependencies": {
1212
"@biomejs/biome": "2.3.5",
@@ -763,7 +763,7 @@
763763

764764
"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=="],
765765

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

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

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"include": ["LICENSE", "README.md", "src/**/*.ts"]
88
},
99
"imports": {
10-
"fast-url": "jsr:@hckhanh/fast-url@^6.0.1",
10+
"fast-url": "jsr:@hckhanh/fast-url@^6.0.2",
1111
"@standard-schema/spec": "jsr:@standard-schema/spec@^1.0.0"
1212
}
1313
}

deno.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
},
3939
"dependencies": {
4040
"@standard-schema/spec": "^1.0.0",
41-
"fast-url": "^6.0.1"
41+
"fast-url": "^6.0.2"
4242
},
4343
"devDependencies": {
4444
"@biomejs/biome": "2.3.5",

test/createFetch.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ describe('createFetch', () => {
816816
await apiFetch('@get')
817817

818818
expect(fetchMock).toHaveBeenCalledWith(
819-
'https://api.example.com',
819+
'https://api.example.com/',
820820
expect.objectContaining({
821821
method: 'GET',
822822
}),

0 commit comments

Comments
 (0)