Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
julianbenegas committed Jul 18, 2024
1 parent 4940acc commit e83c917
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"playground": "0.0.113"
},
"changesets": [
"tame-horses-protect"
"tame-horses-protect",
"tiny-bananas-begin"
]
}
5 changes: 5 additions & 0 deletions .changeset/tiny-bananas-begin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"basehub": patch
---

replaceSystemAliases on pump response also
6 changes: 6 additions & 0 deletions packages/basehub/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# basehub

## 7.0.7-canary.1

### Patch Changes

- replaceSystemAliases on pump response also

## 7.0.7-canary.0

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/basehub/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "basehub",
"description": "The first AI-native content hub.",
"author": "JB <[email protected]>",
"version": "7.0.7-canary.0",
"version": "7.0.7-canary.1",
"license": "MIT",
"repository": "basehub-ai/basehub",
"bugs": "https://github.com/basehub-ai/basehub/issues",
Expand Down Expand Up @@ -50,7 +50,7 @@
"react-dom": "^18.2.0"
},
"dependencies": {
"@basehub/genql": "9.0.0-canary.0",
"@basehub/genql": "9.0.0-canary.1",
"@basehub/mutation-api-helpers": "2.0.0",
"@radix-ui/react-slot": "1.0.2",
"arg": "5.0.1",
Expand Down
2 changes: 2 additions & 0 deletions packages/basehub/src/bin/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,8 @@ export const basehub = (options?: Options) => {
) => Promise<Cast>,
};
};
basehub.replaceSystemAliases = createClient.replaceSystemAliases;
`;

function logInsideBox(lines: string[]) {
Expand Down
2 changes: 1 addition & 1 deletion packages/basehub/src/react/pump/server-pump.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export const Pump = async <Queries extends Array<PumpQuery>>({
errors.push(_errors);
responseHashes[index] = _responseHash;

return data;
return basehub.replaceSystemAliases(data);
})
: basehub(basehubProps).query(singleQuery);
cache.set(cacheKey, {
Expand Down
7 changes: 7 additions & 0 deletions playground/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# playground

## 0.0.114-canary.1

### Patch Changes

- Updated dependencies
- [email protected]

## 0.0.114-canary.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "playground",
"private": true,
"version": "0.0.114-canary.0",
"version": "0.0.114-canary.1",
"scripts": {
"dev": "basehub dev & next dev",
"build": "basehub && next build",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e83c917

Please sign in to comment.