diff --git a/package-lock.json b/package-lock.json index 58b1fcf..3ab0331 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6571,7 +6571,7 @@ }, "packages/notify": { "name": "@bring-it/notify", - "version": "0.0.0", + "version": "0.1.0", "license": "MIT", "engines": { "node": "^18.0.0 || ^20.0.0", diff --git a/packages/notify/package.json b/packages/notify/package.json index d268742..c96ddc0 100644 --- a/packages/notify/package.json +++ b/packages/notify/package.json @@ -1,6 +1,6 @@ { "name": "@bring-it/notify", - "version": "0.0.0", + "version": "0.1.0", "description": "Send releases notifications", "license": "MIT", "author": { diff --git a/packages/utils/index.mjs b/packages/utils/index.mjs index eb207ca..bde3ede 100644 --- a/packages/utils/index.mjs +++ b/packages/utils/index.mjs @@ -78,7 +78,7 @@ export function http({ url, query, json, method = 'GET' }) { const io = new URL(url); for (const [key, value] of Object.entries(query)) { - url.searchParams.set(key, value); + io.searchParams.set(key, value); } return fetch(io.href, {