Skip to content

Commit

Permalink
Version Packages (#846)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Jan 6, 2025
1 parent c9073ad commit 2cd7be3
Show file tree
Hide file tree
Showing 35 changed files with 164 additions and 59 deletions.
42 changes: 0 additions & 42 deletions .changeset/soft-pens-wash.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/addon-indexeddb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @pluv/addon-indexeddb

## 0.35.0

### Patch Changes

- @pluv/client@0.35.0
- @pluv/crdt@0.35.0

## 0.34.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/addon-indexeddb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluv/addon-indexeddb",
"version": "0.34.1",
"version": "0.35.0",
"description": "@pluv/io indexeddb for client storage persistence",
"author": "leedavidcs",
"license": "MIT",
Expand Down
2 changes: 2 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# pluv

## 0.35.0

## 0.34.1

## 0.34.0
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pluv",
"version": "0.34.1",
"version": "0.35.0",
"description": "CLI for @pluv/io",
"author": "leedavidcs",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @pluv/client

## 0.35.0

### Patch Changes

- @pluv/crdt@0.35.0
- @pluv/types@0.35.0

## 0.34.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluv/client",
"version": "0.34.1",
"version": "0.35.0",
"description": "@pluv/io frontend client",
"author": "leedavidcs",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/crdt-loro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @pluv/crdt-loro

## 0.35.0

### Patch Changes

- @pluv/crdt@0.35.0
- @pluv/types@0.35.0

## 0.34.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/crdt-loro/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluv/crdt-loro",
"version": "0.34.1",
"version": "0.35.0",
"description": "loro for @pluv/io",
"author": "leedavidcs",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/crdt-yjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @pluv/crdt-yjs

## 0.35.0

### Patch Changes

- @pluv/crdt@0.35.0
- @pluv/types@0.35.0

## 0.34.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/crdt-yjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluv/crdt-yjs",
"version": "0.34.1",
"version": "0.35.0",
"description": "yjs for @pluv/io",
"author": "leedavidcs",
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/crdt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @pluv/crdt

## 0.35.0

### Patch Changes

- @pluv/types@0.35.0

## 0.34.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/crdt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluv/crdt",
"version": "0.34.1",
"version": "0.35.0",
"description": "crdt base for @pluv/io",
"author": "leedavidcs",
"license": "MIT",
Expand Down
2 changes: 2 additions & 0 deletions packages/eslint-config-pluv/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# eslint-config-pluv

## 0.35.0

## 0.34.1

## 0.34.0
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-pluv/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-pluv",
"version": "0.34.1",
"version": "0.35.0",
"description": "@pluv/io eslint config",
"author": "leedavidcs",
"license": "MIT",
Expand Down
48 changes: 48 additions & 0 deletions packages/io/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,53 @@
# @pluv/io

## 0.35.0

### Minor Changes

- c9073ad: **BREAKING**

Removed the `required` property on the `authorize` config when creating a `PluvIO` instance. When `authorize` is provided, the session will be required to be authorized.

```ts
// Before
import { z } from "zod";

const io = createIO({
// ...
authorize: {
// Previously required: true to force all users to authorize
required: true,
user: z.object({
id: z.string(),
name: z.string(),
}),
secret: "sk_...",
},
// ...
});

// After

const io = createIO({
// ...
authorize: {
// No more `required` property. Now automatically applied always if
// `authorize` prop is provided to `createIO`
user: z.object({
id: z.string(),
name: z.string(),
}),
secret: "sk_...",
},
// ...
});
```

### Patch Changes

- @pluv/crdt@0.35.0
- @pluv/types@0.35.0

## 0.34.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/io/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluv/io",
"version": "0.34.1",
"version": "0.35.0",
"description": "@pluv/io server-side websocket manager",
"author": "leedavidcs",
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @pluv/persistence-cloudflare-transactional-storage

## 0.35.0

### Patch Changes

- Updated dependencies [c9073ad]
- @pluv/io@0.35.0
- @pluv/types@0.35.0

## 0.34.1

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluv/persistence-cloudflare-transactional-storage",
"version": "0.34.1",
"version": "0.35.0",
"description": "@pluv/io crdt storage persistence for cloudflare via transactional storage",
"author": "leedavidcs",
"license": "MIT",
Expand Down
8 changes: 8 additions & 0 deletions packages/persistence-redis/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @pluv/persistence-redis

## 0.35.0

### Patch Changes

- Updated dependencies [c9073ad]
- @pluv/io@0.35.0
- @pluv/types@0.35.0

## 0.34.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/persistence-redis/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluv/persistence-redis",
"version": "0.34.1",
"version": "0.35.0",
"description": "@pluv/io crdt storage persistence for node.js",
"author": "leedavidcs",
"license": "MIT",
Expand Down
9 changes: 9 additions & 0 deletions packages/platform-cloudflare/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @pluv/platform-cloudflare

## 0.35.0

### Patch Changes

- Updated dependencies [c9073ad]
- @pluv/io@0.35.0
- @pluv/persistence-cloudflare-transactional[email protected]
- @pluv/types@0.35.0

## 0.34.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/platform-cloudflare/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluv/platform-cloudflare",
"version": "0.34.1",
"version": "0.35.0",
"description": "@pluv/io adapter for cloudflare workers",
"author": "leedavidcs",
"license": "MIT",
Expand Down
8 changes: 8 additions & 0 deletions packages/platform-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @pluv/platform-node

## 0.35.0

### Patch Changes

- Updated dependencies [c9073ad]
- @pluv/io@0.35.0
- @pluv/types@0.35.0

## 0.34.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/platform-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluv/platform-node",
"version": "0.34.1",
"version": "0.35.0",
"description": "@pluv/io adapter for node.js",
"author": "leedavidcs",
"license": "MIT",
Expand Down
9 changes: 9 additions & 0 deletions packages/platform-pluv/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @pluv/platform-pluv

## 0.35.0

### Patch Changes

- Updated dependencies [c9073ad]
- @pluv/io@0.35.0
- @pluv/crdt@0.35.0
- @pluv/types@0.35.0

## 0.34.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/platform-pluv/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluv/platform-pluv",
"version": "0.34.1",
"version": "0.35.0",
"description": "@pluv/io adapter for pluv.io",
"author": "leedavidcs",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/pubsub-redis/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @pluv/pubsub-redis

## 0.35.0

### Patch Changes

- Updated dependencies [c9073ad]
- @pluv/io@0.35.0

## 0.34.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/pubsub-redis/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluv/pubsub-redis",
"version": "0.34.1",
"version": "0.35.0",
"description": "@pluv/io redis pubsub",
"author": "leedavidcs",
"license": "MIT",
Expand Down
8 changes: 8 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @pluv/react

## 0.35.0

### Patch Changes

- @pluv/client@0.35.0
- @pluv/crdt@0.35.0
- @pluv/types@0.35.0

## 0.34.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pluv/react",
"version": "0.34.1",
"version": "0.35.0",
"description": "@pluv/client React.js bindings",
"author": "leedavidcs",
"license": "MIT",
Expand Down
Loading

0 comments on commit 2cd7be3

Please sign in to comment.