Skip to content

Commit

Permalink
internal: Publish new version (#3166)
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 Jul 26, 2024
1 parent b6298e7 commit 2aaf110
Show file tree
Hide file tree
Showing 23 changed files with 253 additions and 58 deletions.
35 changes: 0 additions & 35 deletions .changeset/green-dogs-lay.md

This file was deleted.

9 changes: 9 additions & 0 deletions examples/benchmark/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# example-benchmark

## 0.4.59

### Patch Changes

- Updated dependencies [[`3fa9eb9`](https://github.com/reactive/data-client/commit/3fa9eb907d8760171da065168796b87e802d6666)]:
- @data-client/normalizr@0.14.6
- @data-client/endpoint@0.14.6
- @data-client/core@0.14.6

## 0.4.58

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/benchmark/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "example-benchmark",
"version": "0.4.58",
"version": "0.4.59",
"description": "Benchmark for normalizr",
"main": "index.js",
"author": "Nathaniel Tucker",
Expand Down
8 changes: 8 additions & 0 deletions examples/normalizr-github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# normalizr-github-example

## 0.1.40

### Patch Changes

- Updated dependencies [[`3fa9eb9`](https://github.com/reactive/data-client/commit/3fa9eb907d8760171da065168796b87e802d6666)]:
- @data-client/normalizr@0.14.6
- @data-client/endpoint@0.14.6

## 0.1.39

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/normalizr-github/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "normalizr-github-example",
"version": "0.1.39",
"version": "0.1.40",
"description": "And example of using Normalizr with github",
"main": "index.js",
"author": "Paul Armstrong",
Expand Down
7 changes: 7 additions & 0 deletions examples/normalizr-redux/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# normalizr-redux-example

## 0.1.38

### Patch Changes

- Updated dependencies [[`3fa9eb9`](https://github.com/reactive/data-client/commit/3fa9eb907d8760171da065168796b87e802d6666)]:
- @data-client/endpoint@0.14.6

## 0.1.37

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/normalizr-redux/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "normalizr-redux-example",
"version": "0.1.37",
"version": "0.1.38",
"description": "And example of using Normalizr with Redux",
"main": "index.js",
"author": "Paul Armstrong",
Expand Down
8 changes: 8 additions & 0 deletions examples/normalizr-relationships/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# normalizr-relationships

## 0.1.40

### Patch Changes

- Updated dependencies [[`3fa9eb9`](https://github.com/reactive/data-client/commit/3fa9eb907d8760171da065168796b87e802d6666)]:
- @data-client/normalizr@0.14.6
- @data-client/endpoint@0.14.6

## 0.1.39

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/normalizr-relationships/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "normalizr-relationships",
"version": "0.1.39",
"version": "0.1.40",
"description": "And example of using Normalizr with relationships",
"main": "index.js",
"author": "Paul Armstrong",
Expand Down
34 changes: 34 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# @data-client/core

## 0.14.6

### Patch Changes

- [#3165](https://github.com/reactive/data-client/pull/3165) [`3fa9eb9`](https://github.com/reactive/data-client/commit/3fa9eb907d8760171da065168796b87e802d6666) Thanks [@ntucker](https://github.com/ntucker)! - [Query](https://dataclient.io/rest/api/Query) can take [Object Schemas](https://dataclient.io/rest/api/Object)

This enables joining arbitrary objects (whose pk works with the same arguments.)

```ts
class Ticker extends Entity {
product_id = '';
price = 0;

pk(): string {
return this.product_id;
}
}
class Stats extends Entity {
product_id = '';
last = 0;

pk(): string {
return this.product_id;
}
}
const queryPrice = new schema.Query(
{ ticker: Ticker, stats: Stats },
({ ticker, stats }) => ticker?.price ?? stats?.last,
);
```

- Updated dependencies [[`3fa9eb9`](https://github.com/reactive/data-client/commit/3fa9eb907d8760171da065168796b87e802d6666)]:
- @data-client/normalizr@0.14.6

## 0.14.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@data-client/core",
"version": "0.14.5",
"version": "0.14.6",
"description": "High performance mutable data framework.",
"sideEffects": false,
"main": "dist/index.js",
Expand Down Expand Up @@ -121,7 +121,7 @@
},
"dependencies": {
"@babel/runtime": "^7.17.0",
"@data-client/normalizr": "^0.14.1",
"@data-client/normalizr": "^0.14.6",
"flux-standard-action": "^2.1.1"
},
"devDependencies": {
Expand Down
31 changes: 31 additions & 0 deletions packages/endpoint/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# @data-client/endpoint

## 0.14.6

### Patch Changes

- [#3165](https://github.com/reactive/data-client/pull/3165) [`3fa9eb9`](https://github.com/reactive/data-client/commit/3fa9eb907d8760171da065168796b87e802d6666) Thanks [@ntucker](https://github.com/ntucker)! - [Query](https://dataclient.io/rest/api/Query) can take [Object Schemas](https://dataclient.io/rest/api/Object)

This enables joining arbitrary objects (whose pk works with the same arguments.)

```ts
class Ticker extends Entity {
product_id = '';
price = 0;

pk(): string {
return this.product_id;
}
}
class Stats extends Entity {
product_id = '';
last = 0;

pk(): string {
return this.product_id;
}
}
const queryPrice = new schema.Query(
{ ticker: Ticker, stats: Stats },
({ ticker, stats }) => ticker?.price ?? stats?.last,
);
```

## 0.14.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/endpoint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@data-client/endpoint",
"version": "0.14.4",
"version": "0.14.6",
"description": "Declarative Network Interface Definitions",
"homepage": "https://dataclient.io/docs/guides/custom-protocol",
"keywords": [
Expand Down
34 changes: 34 additions & 0 deletions packages/graphql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# @data-client/graphql

## 0.14.6

### Patch Changes

- [#3165](https://github.com/reactive/data-client/pull/3165) [`3fa9eb9`](https://github.com/reactive/data-client/commit/3fa9eb907d8760171da065168796b87e802d6666) Thanks [@ntucker](https://github.com/ntucker)! - [Query](https://dataclient.io/rest/api/Query) can take [Object Schemas](https://dataclient.io/rest/api/Object)

This enables joining arbitrary objects (whose pk works with the same arguments.)

```ts
class Ticker extends Entity {
product_id = '';
price = 0;

pk(): string {
return this.product_id;
}
}
class Stats extends Entity {
product_id = '';
last = 0;

pk(): string {
return this.product_id;
}
}
const queryPrice = new schema.Query(
{ ticker: Ticker, stats: Stats },
({ ticker, stats }) => ticker?.price ?? stats?.last,
);
```

- Updated dependencies [[`3fa9eb9`](https://github.com/reactive/data-client/commit/3fa9eb907d8760171da065168796b87e802d6666)]:
- @data-client/endpoint@0.14.6

## 0.14.4

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/graphql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@data-client/graphql",
"version": "0.14.4",
"version": "0.14.6",
"description": "Endpoints for GraphQL APIs",
"homepage": "https://dataclient.io/docs/graphql",
"repository": {
Expand Down Expand Up @@ -105,7 +105,7 @@
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.17.0",
"@data-client/endpoint": "^0.14.4"
"@data-client/endpoint": "^0.14.6"
},
"devDependencies": {
"@anansi/browserslist-config": "^1.4.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/img/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.17.0",
"@data-client/endpoint": "^0.14.4"
"@data-client/endpoint": "^0.14.6"
},
"peerDependencies": {
"@data-client/react": "^0.1.0 || ^0.2.0 || ^0.3.0 || ^0.4.0 || ^0.5.0 || ^0.7.0 || ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^0.14.0",
Expand Down
31 changes: 31 additions & 0 deletions packages/normalizr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# Change Log

## 0.14.6

### Patch Changes

- [#3165](https://github.com/reactive/data-client/pull/3165) [`3fa9eb9`](https://github.com/reactive/data-client/commit/3fa9eb907d8760171da065168796b87e802d6666) Thanks [@ntucker](https://github.com/ntucker)! - [Query](https://dataclient.io/rest/api/Query) can take [Object Schemas](https://dataclient.io/rest/api/Object)

This enables joining arbitrary objects (whose pk works with the same arguments.)

```ts
class Ticker extends Entity {
product_id = '';
price = 0;

pk(): string {
return this.product_id;
}
}
class Stats extends Entity {
product_id = '';
last = 0;

pk(): string {
return this.product_id;
}
}
const queryPrice = new schema.Query(
{ ticker: Ticker, stats: Stats },
({ ticker, stats }) => ticker?.price ?? stats?.last,
);
```

## 0.14.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/normalizr/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@data-client/normalizr",
"version": "0.14.1",
"version": "0.14.6",
"description": "Normalizes and denormalizes JSON according to schema for Redux and Flux applications",
"homepage": "https://dataclient.io/docs/concepts/normalization",
"keywords": [
Expand Down
34 changes: 34 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# @data-client/react

## 0.14.6

### Patch Changes

- [#3165](https://github.com/reactive/data-client/pull/3165) [`3fa9eb9`](https://github.com/reactive/data-client/commit/3fa9eb907d8760171da065168796b87e802d6666) Thanks [@ntucker](https://github.com/ntucker)! - [Query](https://dataclient.io/rest/api/Query) can take [Object Schemas](https://dataclient.io/rest/api/Object)

This enables joining arbitrary objects (whose pk works with the same arguments.)

```ts
class Ticker extends Entity {
product_id = '';
price = 0;

pk(): string {
return this.product_id;
}
}
class Stats extends Entity {
product_id = '';
last = 0;

pk(): string {
return this.product_id;
}
}
const queryPrice = new schema.Query(
{ ticker: Ticker, stats: Stats },
({ ticker, stats }) => ticker?.price ?? stats?.last,
);
```

- Updated dependencies [[`3fa9eb9`](https://github.com/reactive/data-client/commit/3fa9eb907d8760171da065168796b87e802d6666)]:
- @data-client/core@0.14.6

## 0.14.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@data-client/react",
"version": "0.14.5",
"version": "0.14.6",
"description": "High performance mutable data rendering in React.",
"homepage": "https://dataclient.io",
"repository": {
Expand Down Expand Up @@ -169,7 +169,7 @@
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.17.0",
"@data-client/core": "^0.14.5",
"@data-client/core": "^0.14.6",
"@data-client/use-enhanced-reducer": "^0.1.10"
},
"peerDependencies": {
Expand Down
Loading

0 comments on commit 2aaf110

Please sign in to comment.