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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [2.0.3] - 2025-09-16

### Fixed

- Dependencies update.

## [2.0.2] - 2025-07-22

### Fixed
Expand Down Expand Up @@ -105,6 +111,7 @@ All notable changes to this project will be documented in this file.
- `UrlBuilder` a class to build URLs through a template;
- `RepositoryHttp` an implementation of `Repository` interface to fetch data through `HttpClient`.

[2.0.3]: https://github.com/volverjs/data/compare/v2.0.2...v2.0.3
[2.0.2]: https://github.com/volverjs/data/compare/v2.0.1...v2.0.2
[2.0.1]: https://github.com/volverjs/data/compare/v2.0.0...v2.0.1
[2.0.0]: https://github.com/volverjs/data/compare/v1.0.5...v2.0.0
Expand Down
2 changes: 1 addition & 1 deletion CREDITS.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ https://github.com/MattiasBuelens/web-streams-polyfill
### License
The MIT License (MIT)

Copyright (c) 2024 Mattias Buelens
Copyright (c) 2025 Mattias Buelens
Copyright (c) 2016 Diwank Singh Tomer

Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
4 changes: 2 additions & 2 deletions node/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ if (!globalThis.AbortController) {
if (!globalThis.ReadableStream) {
try {
globalThis.ReadableStream = await import(
'web-streams-polyfill/polyfill'
'web-streams-polyfill/polyfill',
)
}
catch {}
}

const { HttpClient, HTTPError, TimeoutError } = await import(
'../dist/HttpClient'
'../dist/HttpClient',
)

const { Hash } = await import('../dist/Hash')
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@volverjs/data",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@10.13.1",
"packageManager": "pnpm@10.16.1",
"description": "Repository pattern implementation with a tiny HttpClient based on Fetch API.",
"author": "8 Wave S.r.l.",
"license": "MIT",
Expand Down Expand Up @@ -104,32 +104,32 @@
},
"dependencies": {
"abort-controller": "^3.0.0",
"ky": "^1.8.2",
"ky": "^1.10.0",
"node-fetch": "^3.3.2",
"qs": "^6.14.0",
"web-streams-polyfill": "^4.1.0"
"web-streams-polyfill": "^4.2.0"
},
"optionalDependencies": {
"vue": "^3.5.17"
"vue": "^3.5.21"
},
"devDependencies": {
"@antfu/eslint-config": "^4.17.0",
"@nabla/vite-plugin-eslint": "^2.0.5",
"@types/node": "^24.0.15",
"@antfu/eslint-config": "^5.3.0",
"@nabla/vite-plugin-eslint": "^2.0.6",
"@types/node": "^24.5.0",
"@types/qs": "^6.14.0",
"@vitejs/plugin-vue": "^6.0.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/test-utils": "^2.4.6",
"copy": "^0.3.2",
"eslint": "^9.31.0",
"globals": "^16.3.0",
"eslint": "^9.35.0",
"globals": "^16.4.0",
"happy-dom": "^18.0.1",
"typescript": "^5.8.3",
"vite": "^7.0.5",
"typescript": "^5.9.2",
"vite": "^7.1.5",
"vite-plugin-externalize-deps": "^0.9.0",
"vitest": "^3.2.4",
"vitest-fetch-mock": "^0.4.5",
"vue": "^3.5.17",
"vue-tsc": "^3.0.3"
"vue": "^3.5.21",
"vue-tsc": "^3.0.7"
},
"pnpm": {
"onlyBuiltDependencies": [
Expand Down
Loading