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
28 changes: 28 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
### 2025.01.28

#### @pretch/core 1.1.0 (minor)

- feat(preact, core): Added useQuery hook for type-safe and reactive HTTP
requests to a base URL
- fix(core): url passed as an argument in methods functions overrides base url's
pathname
- docs(core): Wrote example for pretch when it doesn't have a baseUrl
- docs(core): Wrote missing JSDoc for joinPathname
- docs(core): Combine documentation for pretch()
- docs(core): Merged commit for docs
- docs(core): Fixed missing argument, pathname
- style(core): Formatted code
- test(core): Wrote test to ensure enhancer is applied to method functions
- test(core): use .toEqual() instead of .toBe()

#### @pretch/preact 0.1.10 (patch)

- feat(preact, core): Added useQuery hook for type-safe and reactive HTTP
requests to a base URL
- docs(preact): Update documentation for useQuery hook and improve type
definitions

#### @pretch/react 0.0.9 (patch)

- feat(react): Add useQuery hook to mod.ts and update type definitions

### 2025.01.05

#### @pretch/core 1.0.0 (major)
Expand Down
2 changes: 1 addition & 1 deletion packages/pretch-core/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pretch/core",
"version": "1.0.0",
"version": "1.1.0",
"license": "MIT",
"exports": {
".": "./mod.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/pretch-preact/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pretch/preact",
"version": "0.1.9",
"version": "0.1.10",
"license": "MIT",
"imports": {
"@preact/signals": "npm:@preact/signals@^1.3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/pretch-react/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pretch/react",
"version": "0.0.8",
"version": "0.0.9",
"license": "MIT",
"exports": {
".": "./mod.ts"
Expand Down
Loading