From e9b6a3a6886c226aea347ac4bbbf7a180543e688 Mon Sep 17 00:00:00 2001 From: Gregor Becker Date: Mon, 17 Feb 2025 07:45:41 +0100 Subject: [PATCH 1/5] fix(nuxt): Cannot install @pinia-orm/nuxt using NPM --- packages/nuxt/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nuxt/package.json b/packages/nuxt/package.json index d2d4c7ba..d2614d44 100644 --- a/packages/nuxt/package.json +++ b/packages/nuxt/package.json @@ -39,7 +39,7 @@ "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground" }, "peerDependencies": { - "@pinia/nuxt": "^0.5.1" + "@pinia/nuxt": "<=0.9.0" }, "dependencies": { "@nuxt/kit": "^3.12.3", From 60c4e0efe2451529d8f439337ef7fccc9e159703 Mon Sep 17 00:00:00 2001 From: Gregor Becker Date: Mon, 17 Feb 2025 08:00:40 +0100 Subject: [PATCH 2/5] chore: Run ci for 1.x branch --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4664408..3531ec14 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ on: - scripts pull_request: branches: - - main + - 1.x - "!v[0-9]*" paths-ignore: - docs/** From c80ca6d2253acfb7516200a486653bbf249020fe Mon Sep 17 00:00:00 2001 From: Gregor Becker Date: Mon, 17 Feb 2025 08:07:01 +0100 Subject: [PATCH 3/5] chore: Update workflows for 1.x branch --- .github/workflows/changelog.yml | 1 + .github/workflows/ci.yml | 8 +++++ .github/workflows/release-pr.yml | 62 -------------------------------- .github/workflows/release.yml | 3 +- 4 files changed, 11 insertions(+), 63 deletions(-) delete mode 100644 .github/workflows/release-pr.yml diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index a533d156..e0649140 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -20,6 +20,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: + repository: 'CodeDredd/1.x' fetch-depth: 0 - run: npm i -g --force corepack && corepack enable - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3531ec14..918794bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + with: + repository: 'CodeDredd/1.x' - run: npm i -g --force corepack && corepack enable - name: Set node version to 20 @@ -45,6 +47,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + with: + repository: 'CodeDredd/1.x' - run: npm i -g --force corepack && corepack enable - name: Set node version to 20 @@ -71,6 +75,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + with: + repository: 'CodeDredd/1.x' - run: npm i -g --force corepack && corepack enable - name: Set node version to 20 @@ -93,6 +99,8 @@ jobs: CI_JOB_NUMBER: 1 steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + with: + repository: 'CodeDredd/1.x' - run: npm i -g --force corepack && corepack enable - name: Set node version to 20 diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml deleted file mode 100644 index 4d17ffd6..00000000 --- a/.github/workflows/release-pr.yml +++ /dev/null @@ -1,62 +0,0 @@ -name: release-pr - -on: - push: - branches: - - main - paths-ignore: - - docs/** - - docs-playground/** - - playgrounds/** - - scripts - pull_request: - branches: - - main - paths-ignore: - - docs/** - - docs-playground/** - - playgrounds/** - - scripts - -env: - # 7 GiB by default on GitHub, setting to 6 GiB - NODE_OPTIONS: --max-old-space-size=6144 - -permissions: - contents: read - -jobs: - release-pr: - permissions: - id-token: write - pull-requests: write - runs-on: ubuntu-latest - timeout-minutes: 20 - - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - run: npm i -g --force corepack && corepack enable - - uses: actions/setup-node@v4.0.2 - with: - node-version: 20 - cache: "pnpm" - - - name: Install dependencies - run: pnpm install - - - name: Build Stub - run: pnpm build:stub - - - name: Build - run: pnpm build:ci - - - name: Release Edge - if: | - github.event_name == 'push' && - !contains(github.event.head_commit.message, '[skip-release]') - run: ./scripts/release-edge.sh - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} - NPM_CONFIG_PROVENANCE: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1313538a..f3faf8a6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,7 @@ name: release on: push: tags: - - "v*" + - "v1*" # Remove default permissions of GITHUB_TOKEN for security # https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs @@ -19,6 +19,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: + repository: 'CodeDredd/1.x' fetch-depth: 0 - run: npm i -g --force corepack && corepack enable - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 From b6056a47e7d60e38905cbcb8821dad70a46f5b25 Mon Sep 17 00:00:00 2001 From: Gregor Becker Date: Mon, 17 Feb 2025 08:11:54 +0100 Subject: [PATCH 4/5] chore: Update workflows for 1.x branch --- .github/workflows/changelog.yml | 2 +- .github/workflows/ci.yml | 8 ++++---- .github/workflows/release.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index e0649140..929acbd6 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: - repository: 'CodeDredd/1.x' + ref: '1.x' fetch-depth: 0 - run: npm i -g --force corepack && corepack enable - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 918794bb..ffc38f55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: - repository: 'CodeDredd/1.x' + ref: '1.x' - run: npm i -g --force corepack && corepack enable - name: Set node version to 20 @@ -48,7 +48,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: - repository: 'CodeDredd/1.x' + ref: '1.x' - run: npm i -g --force corepack && corepack enable - name: Set node version to 20 @@ -76,7 +76,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: - repository: 'CodeDredd/1.x' + ref: '1.x' - run: npm i -g --force corepack && corepack enable - name: Set node version to 20 @@ -100,7 +100,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: - repository: 'CodeDredd/1.x' + ref: '1.x' - run: npm i -g --force corepack && corepack enable - name: Set node version to 20 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f3faf8a6..a30f806e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: - repository: 'CodeDredd/1.x' + ref: '1.x' fetch-depth: 0 - run: npm i -g --force corepack && corepack enable - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 From 7cf7bba1c1eafad5dfab5a382ad55f55263384cf Mon Sep 17 00:00:00 2001 From: Gregor Becker Date: Mon, 17 Feb 2025 08:20:21 +0100 Subject: [PATCH 5/5] chore: Update changelog gen for v1 --- .github/workflows/changelog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 929acbd6..9efb2ccd 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -3,7 +3,7 @@ name: changelog on: push: branches: - - main + - 1.x permissions: pull-requests: write