Skip to content

Commit

Permalink
Version Packages (#647)
Browse files Browse the repository at this point in the history
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## [email protected]

### Minor Changes

- eb722c9: [VAX-1335] Create new protocol op to represent a
compensation

### Patch Changes

-   fb773fb: Dispose listeners when Electric client is closed.
- 863f9f3: Fix critical section of wa-sqlite DB adapter to avoid bad
interleavings.
- 5c4a85d: Generic implementation of serial and batched database
adapters.
- a9bb17c: Upgrade wa-sqlite version because of a critical bug fix in
wa-sqlite.
-   0ad1867: Fix assertions in unit tests.
- 3ed5469: Fix race condition in process.subscribe that made the client
crash.
-   4ad7df4: [VAX-825] Add client-side support for JSON type.
- 1fe8c7d: Rely on Prisma's conversion of PG table names to Prisma
model names. No longer turn snake_cased table names into PascalCased
model names.
- cf0f096: Add comment about possibly receiving empty subsData when
handling SubscriptionData message on Satellite
-   e2da540: Windows support for the generator.
-   e091bbf: Refactorings to the event notifier.

## [email protected]

### Patch Changes

- a9bb17c: Upgrade wa-sqlite version because of a critical bug fix in
wa-sqlite.

## @electric-sql/[email protected]

### Patch Changes

-   4ad7df4: [VAX-825] Add client-side support for JSON type.
- 65f10d6: Import types using import type in generated Electric client.

## @core/[email protected]

### Minor Changes

- eb722c9: [VAX-1335] Create new protocol op to represent a
compensation

### Patch Changes

- 0dc6166: [VAX-820, VAX-1325] Add support for the BIGINT / INT8 column
type in electrified tables.
- d9efe92: [VAX-1264, VAX-1265] Fix some edge cases in the parsing of
DATABASE_URL.
- 4ad7df4: [VAX-825] Add support for the JSONB column type in
electrified tables.
- b6e589d: [VAX-846, VAX-849] Add support for the REAL / FLOAT4 column
type in electrified tables.

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Dec 5, 2023
1 parent e2da540 commit 9a73c51
Show file tree
Hide file tree
Showing 26 changed files with 51 additions and 93 deletions.
5 changes: 0 additions & 5 deletions .changeset/brave-colts-change.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/brave-rules-walk.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/few-apples-buy.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/fluffy-hotels-push.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gentle-guests-knock.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/great-houses-joke.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/itchy-carrots-invite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lovely-tigers-thank.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nine-boats-burn.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/nine-bulldogs-learn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quiet-otters-film.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spicy-badgers-clean.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/strange-bottles-carry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tasty-lizards-boil.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ten-cups-know.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twelve-pigs-give.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/young-steaks-return.md

This file was deleted.

20 changes: 20 additions & 0 deletions clients/typescript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# electric-sql

## 0.8.0

### Minor Changes

- eb722c9b: [VAX-1335] Create new protocol op to represent a compensation

### Patch Changes

- fb773fbb: Dispose listeners when Electric client is closed.
- 863f9f37: Fix critical section of wa-sqlite DB adapter to avoid bad interleavings.
- 5c4a85d4: Generic implementation of serial and batched database adapters.
- a9bb17ca: Upgrade wa-sqlite version because of a critical bug fix in wa-sqlite.
- 0ad1867b: Fix assertions in unit tests.
- 3ed54698: Fix race condition in process.subscribe that made the client crash.
- 4ad7df4d: [VAX-825] Add client-side support for JSON type.
- 1fe8c7d6: Rely on Prisma's conversion of PG table names to Prisma model names. No longer turn snake_cased table names into PascalCased model names.
- cf0f0963: Add comment about possibly receiving empty subsData when handling SubscriptionData message on Satellite
- e2da540c: Windows support for the generator.
- e091bbfb: Refactorings to the event notifier.

## 0.7.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion clients/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.7.1",
"version": "0.8.0",
"name": "electric-sql",
"description": "ElectricSQL TypeScript client for developing local-first SQL apps. Supports JavaScript based mobile, web and edge applications.",
"repository": "https://github.com/electric-sql/electric/tree/main/clients/typescript",
Expand Down
2 changes: 1 addition & 1 deletion clients/typescript/src/version/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const LIB_VERSION = '0.7.1'
export const LIB_VERSION = '0.8.0'
13 changes: 13 additions & 0 deletions components/electric/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @core/electric

## 0.8.0

### Minor Changes

- eb722c9b: [VAX-1335] Create new protocol op to represent a compensation

### Patch Changes

- 0dc61662: [VAX-820, VAX-1325] Add support for the BIGINT / INT8 column type in electrified tables.
- d9efe923: [VAX-1264, VAX-1265] Fix some edge cases in the parsing of DATABASE_URL.
- 4ad7df4d: [VAX-825] Add support for the JSONB column type in electrified tables.
- b6e589d3: [VAX-846, VAX-849] Add support for the REAL / FLOAT4 column type in electrified tables.

## 0.7.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion components/electric/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@core/electric",
"private": true,
"version": "0.7.1"
"version": "0.8.0"
}
6 changes: 6 additions & 0 deletions examples/starter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# create-electric-app

## 0.2.1

### Patch Changes

- a9bb17ca: Upgrade wa-sqlite version because of a critical bug fix in wa-sqlite.

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/starter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-electric-app",
"version": "0.2.0",
"version": "0.2.1",
"author": "ElectricSQL",
"license": "Apache-2.0",
"main": "dist/index.js",
Expand Down
7 changes: 7 additions & 0 deletions generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @electric-sql/prisma-generator

## 1.1.1

### Patch Changes

- 4ad7df4d: [VAX-825] Add client-side support for JSON type.
- 65f10d69: Import types using import type in generated Electric client.

## 1.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@electric-sql/prisma-generator",
"version": "1.1.0",
"version": "1.1.1",
"private": false,
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit 9a73c51

Please sign in to comment.