-
-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
449ba4c
commit 45b9bb8
Showing
98 changed files
with
3,901 additions
and
1,355 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
'houdini-plugin-svelte-global-stores': patch | ||
'houdini-svelte': patch | ||
'houdini': patch | ||
--- | ||
|
||
Bump Svelte version to 5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
'houdini-plugin-svelte-global-stores': minor | ||
'houdini-svelte': major | ||
'houdini': minor | ||
--- | ||
|
||
Add support for Svelte 5 and Svelte Runes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"mode": "exit", | ||
"tag": "next", | ||
"initialVersions": { | ||
"e2e-api": "0.0.1", | ||
"e2e-kit": "0.0.1", | ||
"e2e-react": "0.0.0", | ||
"e2e-svelte": "0.0.1", | ||
"scripts": "1.0.0", | ||
"houdini-adapter-auto": "1.2.64", | ||
"houdini-adapter-cloudflare": "1.2.64", | ||
"houdini-adapter-node": "1.2.64", | ||
"houdini-adapter-static": "1.2.64", | ||
"create-houdini": "1.2.64", | ||
"houdini": "1.2.64", | ||
"houdini-react": "1.2.64", | ||
"houdini-svelte": "1.2.64", | ||
"houdini-plugin-svelte-global-stores": "1.2.64", | ||
"site": "0.0.1" | ||
}, | ||
"changesets": [ | ||
"gorgeous-lions-nail", | ||
"new-comics-happen" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: Prerelease | ||
|
||
# Trigger a prerelease on @next whenever we have a new push to the preview branch | ||
# for more info: https://github.com/changesets/changesets/blob/main/docs/prereleases.md | ||
on: | ||
push: | ||
branches: | ||
- houdini-2.0 | ||
|
||
env: | ||
CI: true | ||
jobs: | ||
publish: | ||
name: Publish Prerelease Version | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Creating .npmrc | ||
run: | | ||
cat << EOF > "$HOME/.npmrc" | ||
email=$NPM_EMAIL | ||
name=$NPM_NAME | ||
//registry.npmjs.org/:_authToken=$NPM_TOKEN | ||
EOF | ||
env: | ||
NPM_EMAIL: ${{ secrets.NPM_EMAIL }} | ||
NPM_NAME: ${{ secrets.NPM_NAME }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
- name: Checkout source | ||
uses: actions/checkout@master | ||
with: | ||
ref: ${{ github.ref }} | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20.13.1 | ||
|
||
- uses: pnpm/action-setup@v2.0.1 | ||
name: Install pnpm | ||
id: pnpm-install | ||
with: | ||
version: 8 | ||
|
||
- name: Install dependencies | ||
run: pnpm install | ||
|
||
- name: Set Git Identity | ||
run: | | ||
git config --global user.name 'github-actions[bot]' | ||
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | ||
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/$GITHUB_REPOSITORY | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Create Release Pull Request for Preview | ||
uses: changesets/action@v1 | ||
with: | ||
version: pnpm run version | ||
publish: pnpm run release | ||
title: '🚧 Prerelease Version Update' | ||
commit: '🚧 v{VERSION}' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,23 @@ | ||
// manual switch for now until replayio is fixed (currently breaking our tests) | ||
const with_replayio = false; | ||
import { ReporterDescription, defineConfig } from '@playwright/test'; | ||
|
||
const use = with_replayio | ||
? { | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
...replayDevices['Replay Chromium'], | ||
screenshot: 'only-on-failure' | ||
} | ||
: { screenshot: 'only-on-failure' }; | ||
|
||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
const reporter = [['list']]; | ||
const reporters: ReporterDescription[] = [['list'], ['html', { open: 'never' }]]; | ||
if (process.env.CI) { | ||
reporter.push(['html', { open: 'never' }]); | ||
reporter.push(['github']); | ||
reporters.push(['github']); | ||
} | ||
|
||
const config = { | ||
export default defineConfig({ | ||
testMatch: 'spec.ts', | ||
use: { | ||
headless: true, | ||
trace: 'on-first-retry', | ||
screenshot: 'only-on-failure' | ||
}, | ||
retries: process.env.CI ? 3 : 0, | ||
workers: 5, | ||
reporter, | ||
use, | ||
reporter: reporters, | ||
webServer: { | ||
command: 'npm run build && npm run preview', | ||
port: 3007, | ||
timeout: 120 * 1000 | ||
} | ||
}; | ||
|
||
export default config; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,6 @@ | |
}; | ||
}; | ||
// svelte-ignore unused-export-let | ||
export let id = ''; | ||
$: result = graphql(` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.