diff --git a/CHANGELOG.md b/CHANGELOG.md index 14342af..1bc5ff5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -## [3.0.0] - Unreleased +## [3.0.0-beta.1] - 2026-06-15 ### Changed @@ -143,7 +143,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`. -[3.0.0]: https://github.com/volverjs/data/compare/v2.0.5...v3.0.0 +[3.0.0-beta.1]: https://github.com/volverjs/data/compare/v2.0.5...v3.0.0-beta.1 [2.0.5]: https://github.com/volverjs/data/compare/v2.0.4...v2.0.5 [2.0.4]: https://github.com/volverjs/data/compare/v2.0.3...v2.0.4 [2.0.3]: https://github.com/volverjs/data/compare/v2.0.2...v2.0.3 diff --git a/README.md b/README.md index 4900f33..e8ae601 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ The `HttpClient` class is a wrapper around [`ky`](https://github.com/sindresorhu import { HttpClient } from '@volverjs/data' const client = new HttpClient({ - prefixUrl: 'https://my.api.com' + prefix: 'https://my.api.com' }) const response = await client.get({ template: ':endpoint/:action?/:id', @@ -119,7 +119,7 @@ class User { } const client = new HttpClient({ - prefixUrl: 'https://my.api.com' + prefix: 'https://my.api.com' }) const repository = new RepositoryHttp(client, 'users/:group?/:id?', { @@ -152,7 +152,7 @@ import App from './App.vue' const app = createApp(App) const httpClientPlugin = createHttpClient({ - prefixUrl: 'https://my.api.com' + prefix: 'https://my.api.com' }) app.use(httpClientPlugin, { @@ -180,7 +180,7 @@ import { createHttpClient, useHttpClient } from '@volverjs/data/vue' import { computed, ref } from 'vue' createHttpClient({ - prefixUrl: 'https://my.api.com' + prefix: 'https://my.api.com' }) const { client } = useHttpClient() @@ -569,7 +569,7 @@ With `scope` parameter on `createHttpClient()` multiple `httpClient` instances c