Skip to content

Commit

Permalink
Release tracking (#1554)
Browse files Browse the repository at this point in the history
Signed-off-by: Alexis Rico <[email protected]>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Alexis Rico <[email protected]>
  • Loading branch information
3 people authored Sep 12, 2024
1 parent e11705a commit ce23281
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 18 deletions.
5 changes: 0 additions & 5 deletions .changeset/sixty-points-tell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tall-dots-serve.md

This file was deleted.

8 changes: 8 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @xata.io/cli

## 0.16.3

### Patch Changes

- [#1553](https://github.com/xataio/client-ts/pull/1553) [`9b4a68e`](https://github.com/xataio/client-ts/commit/9b4a68ebe1eabb4e25d861442c722b45c064b5e8) Thanks [@eemmiillyy](https://github.com/eemmiillyy)! - Do not prompt for update on pre release

- [#1565](https://github.com/xataio/client-ts/pull/1565) [`fab22de`](https://github.com/xataio/client-ts/commit/fab22defa28d2c81545a99942f29c74d8ee16adf) Thanks [@eemmiillyy](https://github.com/eemmiillyy)! - Fix overriding client version to latest with Postgres branches if next is already a dependency

## 0.16.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xata.io/cli",
"version": "0.16.2",
"version": "0.16.3",
"description": "Xata.io CLI",
"author": "Xata Inc.",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion compatibility.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"@xata.io/cli": {
"latest": "0.16.2",
"latest": "0.16.3",
"compatibility": [
{
"range": ">=0.0.0"
Expand Down
12 changes: 6 additions & 6 deletions packages/client/src/schema/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ describe('client options', () => {

const result = {
url: fetch.mock.calls[0][0],
method: fetch.mock.calls[0][1]?.method,
body: fetch.mock.calls[0][1]?.body
method: (fetch.mock.calls[0][1] as any)?.method,
body: (fetch.mock.calls[0][1] as any)?.body
};

expect(result).toMatchInlineSnapshot(`
Expand Down Expand Up @@ -105,8 +105,8 @@ describe('request', () => {

const result = {
url: fetch.mock.calls[0][0],
method: fetch.mock.calls[0][1]?.method,
body: fetch.mock.calls[0][1]?.body
method: (fetch.mock.calls[0][1] as any)?.method,
body: (fetch.mock.calls[0][1] as any)?.body
};

expect(result).toMatchInlineSnapshot(`
Expand Down Expand Up @@ -135,8 +135,8 @@ describe('request', () => {

const result = {
url: fetch.mock.calls[0][0],
method: fetch.mock.calls[0][1]?.method,
body: fetch.mock.calls[0][1]?.body
method: (fetch.mock.calls[0][1] as any)?.method,
body: (fetch.mock.calls[0][1] as any)?.body
};

expect(result).toMatchInlineSnapshot(`
Expand Down

0 comments on commit ce23281

Please sign in to comment.