From d7492b9c50726dceff9d327a92463742cb1135af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Wed, 21 Feb 2024 11:06:15 +0100 Subject: [PATCH 1/6] chore(release): v0.1.1 --- CHANGELOG.md | 22 ++++++++++++++++++++++ package.json | 4 ++-- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d299e54..84477cf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,28 @@ # Changelog +## v0.1.1 + +[compare changes](https://github.com/nuxt-hub/core/compare/v0.1.0...v0.1.1) + +### 🩹 Fixes + +- Add missing imports ([53485ac](https://github.com/nuxt-hub/core/commit/53485ac)) + +### 📖 Documentation + +- Update package name ([8ca7a04](https://github.com/nuxt-hub/core/commit/8ca7a04)) + +### 🏡 Chore + +- **ci:** Add nightly ([34e955a](https://github.com/nuxt-hub/core/commit/34e955a)) +- Update module import ([0dacd0f](https://github.com/nuxt-hub/core/commit/0dacd0f)) +- Fix package repo ([8950351](https://github.com/nuxt-hub/core/commit/8950351)) + +### ❤️ Contributors + +- Sébastien Chopin ([@Atinux](http://github.com/Atinux)) + ## v0.1.0 diff --git a/package.json b/package.json index e12c05f8..394c95b7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@nuxthub/core", "private": false, - "version": "0.1.0", + "version": "0.1.1", "description": "Nuxt Toolkit to create full-stack applications on the Edge.", "repository": { "type": "git", @@ -67,4 +67,4 @@ "vitest": "^1.3.1", "vue-tsc": "^1.8.27" } -} +} \ No newline at end of file From 1c23a02a5fdf3b4357c14b501d9689fbb4695cf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Wed, 21 Feb 2024 12:53:28 +0100 Subject: [PATCH 2/6] chore(docs): update build command --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 394c95b7..d2523813 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "dev": "nuxi dev playground", "dev:build": "nuxi build playground", "docs": "nuxi dev docs", - "docs:build": "nuxi build docs", + "docs:build": "nuxi generate docs", "release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags", "lint": "eslint .", "test": "vitest run", @@ -67,4 +67,4 @@ "vitest": "^1.3.1", "vue-tsc": "^1.8.27" } -} \ No newline at end of file +} From b6c60f2184c208f9a1ea746c466e7217ff2d8688 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Wed, 21 Feb 2024 13:06:40 +0100 Subject: [PATCH 3/6] fix: add missing import --- src/runtime/server/utils/blob.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/runtime/server/utils/blob.ts b/src/runtime/server/utils/blob.ts index 87e7223b..f1795e46 100644 --- a/src/runtime/server/utils/blob.ts +++ b/src/runtime/server/utils/blob.ts @@ -4,6 +4,7 @@ import type { R2Bucket } from '@cloudflare/workers-types/experimental' import { ofetch } from 'ofetch' import mime from 'mime' import type { H3Event } from 'h3' +import { setHeader } from 'h3' import { defu } from 'defu' import { randomUUID } from 'uncrypto' import { parse } from 'pathe' From e97be69db741495e88ac10b61587d61a1098cc90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Wed, 21 Feb 2024 13:09:36 +0100 Subject: [PATCH 4/6] chore(ci): fix permissions --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e70ca88a..1734c114 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,7 @@ on: permissions: contents: read + id-token: write # https://github.com/vitejs/vite/blob/main/.github/workflows/ci.yml env: From 7c16820cae230562d8660a6902d90341b071d5cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Wed, 21 Feb 2024 14:46:42 +0100 Subject: [PATCH 5/6] chore: update ci --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1734c114..10dc1673 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,6 @@ on: permissions: contents: read - id-token: write # https://github.com/vitejs/vite/blob/main/.github/workflows/ci.yml env: @@ -46,7 +45,8 @@ jobs: test: runs-on: ubuntu-latest - + permissions: + id-token: write steps: - uses: actions/checkout@v4 - run: corepack enable From 339be38474f0649066c743087b4a95bba9a722f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Wed, 21 Feb 2024 14:49:24 +0100 Subject: [PATCH 6/6] fix: ci --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10dc1673..1734c114 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,7 @@ on: permissions: contents: read + id-token: write # https://github.com/vitejs/vite/blob/main/.github/workflows/ci.yml env: @@ -45,8 +46,7 @@ jobs: test: runs-on: ubuntu-latest - permissions: - id-token: write + steps: - uses: actions/checkout@v4 - run: corepack enable