Skip to content

Commit

Permalink
📦 v1.2.47 (#1295)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Alec Aivazis <[email protected]>
  • Loading branch information
3 people authored Apr 25, 2024
1 parent d1686d0 commit 6c5dbda
Show file tree
Hide file tree
Showing 23 changed files with 336 additions and 30 deletions.
5 changes: 0 additions & 5 deletions .changeset/afraid-pillows-worry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/breezy-waves-cover.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/witty-cherries-visit.md

This file was deleted.

1 change: 1 addition & 0 deletions e2e/kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"vite-plugin-lib-reporter": "^0.0.7"
},
"dependencies": {
"@sveltejs/adapter-node": "^5.0.1",
"graphql-ws": "^5.8.2"
}
}
3 changes: 1 addition & 2 deletions e2e/kit/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ export default new HoudiniClient({
// if we're ever unauthenticated, a request was sent that didn't thread
// the session through so let's error
if (!session?.user?.token) {
console.log(session);
throw new Error('Did not encounter session');
return {};
}

// Turn on and off (to link with 'with_persisted_queries' of "./e2e/_api/server.mjs")
Expand Down
3 changes: 2 additions & 1 deletion e2e/kit/vite.config.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import { sveltekit } from '@sveltejs/kit/vite';
import houdini from 'houdini/vite';
import { libReporter } from 'vite-plugin-lib-reporter';
import adapter from '@sveltejs/adapter-node';

/** @type {import('vite').UserConfig} */
const config = {
plugins: [
houdini(),
sveltekit(),
sveltekit({ adapter }),

// This plugin is checking build sizes by lib.
// It's not required for Houdini to work.
Expand Down
7 changes: 7 additions & 0 deletions packages/adapter-auto/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# houdini-adapter-auto

## 1.2.47

### Dependency Changes

- Updated dependencies [[`e6368686`](https://github.com/HoudiniGraphql/houdini/commit/e6368686cd283f46c77755efb70701aa1da729fe)]:
- [email protected]

## 1.2.46

### Dependency Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-auto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "houdini-adapter-auto",
"version": "1.2.46",
"version": "1.2.47",
"description": "An adapter for deploying your Houdini application according to the build environment ",
"keywords": [
"houdini",
Expand Down
7 changes: 7 additions & 0 deletions packages/adapter-cloudflare/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# houdini-adapter-cloudflare

## 1.2.47

### Dependency Changes

- Updated dependencies [[`e6368686`](https://github.com/HoudiniGraphql/houdini/commit/e6368686cd283f46c77755efb70701aa1da729fe)]:
- [email protected]

## 1.2.46

### Dependency Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-cloudflare/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "houdini-adapter-cloudflare",
"version": "1.2.46",
"version": "1.2.47",
"description": "The adapter for deploying your Houdini application to Cloudflare Pages",
"keywords": [
"houdini",
Expand Down
7 changes: 7 additions & 0 deletions packages/adapter-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# houdini-adapter-node

## 1.2.47

### Dependency Changes

- Updated dependencies [[`e6368686`](https://github.com/HoudiniGraphql/houdini/commit/e6368686cd283f46c77755efb70701aa1da729fe)]:
- [email protected]

## 1.2.46

### Dependency Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "houdini-adapter-node",
"version": "1.2.46",
"version": "1.2.47",
"description": "The adapter for deploying your Houdini application as a standalone node server",
"keywords": [
"houdini",
Expand Down
2 changes: 2 additions & 0 deletions packages/create-houdini/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# create-houdini

## 1.2.47

## 1.2.46

## 1.2.45
Expand Down
2 changes: 1 addition & 1 deletion packages/create-houdini/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-houdini",
"version": "1.2.46",
"version": "1.2.47",
"description": "A CLI for creating new Houdini projects",
"repository": {
"type": "git",
Expand Down
11 changes: 11 additions & 0 deletions packages/houdini-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# houdini-react

## 1.2.47

### 🐛 Fixes

- [#1297](https://github.com/HoudiniGraphql/houdini/pull/1297) [`d1686d0c`](https://github.com/HoudiniGraphql/houdini/commit/d1686d0cd912808bfe6101faf2c2d2ccb8390ac1) @AlecAivazis - fix bug with useRoute pulling route params

### Dependency Changes

- Updated dependencies [[`e6368686`](https://github.com/HoudiniGraphql/houdini/commit/e6368686cd283f46c77755efb70701aa1da729fe)]:
- [email protected]

## 1.2.46

### 🐛 Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/houdini-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "houdini-react",
"version": "1.2.46",
"version": "1.2.47",
"description": "The React plugin for houdini",
"keywords": [
"typescript",
Expand Down
11 changes: 11 additions & 0 deletions packages/houdini-svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# houdini-svelte

## 1.2.47

### 🐛 Fixes

- [#1293](https://github.com/HoudiniGraphql/houdini/pull/1293) [`8409c703`](https://github.com/HoudiniGraphql/houdini/commit/8409c703a79b037a655ac45455d10965aebae681) @SeppahBaws - Fix houdini-svelte occasionally causing the Svelte LSP to crash

### Dependency Changes

- Updated dependencies [[`e6368686`](https://github.com/HoudiniGraphql/houdini/commit/e6368686cd283f46c77755efb70701aa1da729fe)]:
- [email protected]

## 1.2.46

### Dependency Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/houdini-svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "houdini-svelte",
"version": "1.2.46",
"version": "1.2.47",
"description": "The svelte plugin for houdini",
"keywords": [
"typescript",
Expand Down
6 changes: 6 additions & 0 deletions packages/houdini/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# houdini

## 1.2.47

### 🐛 Fixes

- [#1296](https://github.com/HoudiniGraphql/houdini/pull/1296) [`e6368686`](https://github.com/HoudiniGraphql/houdini/commit/e6368686cd283f46c77755efb70701aa1da729fe) @AlecAivazis - Fix memory leak in cache's reference counting

## 1.2.46

### ✨ Features
Expand Down
2 changes: 1 addition & 1 deletion packages/houdini/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "houdini",
"version": "1.2.46",
"version": "1.2.47",
"description": "The disappearing GraphQL clients",
"keywords": [
"typescript",
Expand Down
8 changes: 8 additions & 0 deletions packages/plugin-svelte-global-stores/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# houdini-plugin-svelte-global-stores

## 1.2.47

### Patch Changes

- Updated dependencies [[`8409c703`](https://github.com/HoudiniGraphql/houdini/commit/8409c703a79b037a655ac45455d10965aebae681), [`e6368686`](https://github.com/HoudiniGraphql/houdini/commit/e6368686cd283f46c77755efb70701aa1da729fe)]:
- [email protected]
- [email protected]

## 1.2.46

### Dependency Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-svelte-global-stores/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "houdini-plugin-svelte-global-stores",
"version": "1.2.46",
"version": "1.2.47",
"description": "The svelte global store plugin for houdini",
"keywords": [
"typescript",
Expand Down
Loading

0 comments on commit 6c5dbda

Please sign in to comment.