Skip to content

Commit

Permalink
internal: Publish new version (#3160)
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] committed Jul 23, 2024
1 parent b932dca commit 785208c
Show file tree
Hide file tree
Showing 25 changed files with 156 additions and 91 deletions.
6 changes: 0 additions & 6 deletions .changeset/pink-dodos-protect.md

This file was deleted.

18 changes: 0 additions & 18 deletions .changeset/real-days-camp.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/real-ties-trade.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/rude-wolves-march.md

This file was deleted.

30 changes: 0 additions & 30 deletions .changeset/witty-papayas-battle.md

This file was deleted.

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

## 0.4.57

### Patch Changes

- Updated dependencies [[`b932dca`](https://github.com/reactive/data-client/commit/b932dca45a4fcf60c00db8da509162f253065769), [`e4751d9`](https://github.com/reactive/data-client/commit/e4751d9cd0ee26567d7632ea4707ca181901ff89), [`0adad92`](https://github.com/reactive/data-client/commit/0adad9209265c388eb6d334afe681610bccfb877), [`09ad848`](https://github.com/reactive/data-client/commit/09ad848879db55bb441d93336dd7442d3f484d49)]:
- @data-client/core@0.14.4
- @data-client/endpoint@0.14.4

## 0.4.56

### 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.56",
"version": "0.4.57",
"description": "Benchmark for normalizr",
"main": "index.js",
"author": "Nathaniel Tucker",
Expand Down
7 changes: 7 additions & 0 deletions examples/normalizr-github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# normalizr-github-example

## 0.1.39

### Patch Changes

- Updated dependencies [[`0adad92`](https://github.com/reactive/data-client/commit/0adad9209265c388eb6d334afe681610bccfb877)]:
- @data-client/endpoint@0.14.4

## 0.1.38

### 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.38",
"version": "0.1.39",
"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.37

### Patch Changes

- Updated dependencies [[`0adad92`](https://github.com/reactive/data-client/commit/0adad9209265c388eb6d334afe681610bccfb877)]:
- @data-client/endpoint@0.14.4

## 0.1.36

### 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.36",
"version": "0.1.37",
"description": "And example of using Normalizr with Redux",
"main": "index.js",
"author": "Paul Armstrong",
Expand Down
7 changes: 7 additions & 0 deletions examples/normalizr-relationships/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# normalizr-relationships

## 0.1.39

### Patch Changes

- Updated dependencies [[`0adad92`](https://github.com/reactive/data-client/commit/0adad9209265c388eb6d334afe681610bccfb877)]:
- @data-client/endpoint@0.14.4

## 0.1.38

### 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.38",
"version": "0.1.39",
"description": "And example of using Normalizr with relationships",
"main": "index.js",
"author": "Paul Armstrong",
Expand Down
26 changes: 26 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# @data-client/core

## 0.14.4

### Patch Changes

- [#3161](https://github.com/reactive/data-client/pull/3161) [`b932dca`](https://github.com/reactive/data-client/commit/b932dca45a4fcf60c00db8da509162f253065769) Thanks [@ntucker](https://github.com/ntucker)! - Add jsdocs to IdlingNetworkManager

- [`e4751d9`](https://github.com/reactive/data-client/commit/e4751d9cd0ee26567d7632ea4707ca181901ff89) Thanks [@ntucker](https://github.com/ntucker)! - NetworkManager constructor uses keyword args

#### Before

```ts
new NetworkManager(42, 7);
```

#### After

```ts
new NetworkManager({ dataExpiryLength: 42, errorExpiryLength: 7 });
```

- [`09ad848`](https://github.com/reactive/data-client/commit/09ad848879db55bb441d93336dd7442d3f484d49) Thanks [@ntucker](https://github.com/ntucker)! - state.endpoints moved above indexes

`entites` and `endpoints` are the most commonly inspected
parts of state when debugging, so it is better to have endpoints
above indexes.

## 0.14.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion 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.2",
"version": "0.14.4",
"description": "High performance mutable data framework.",
"sideEffects": false,
"main": "dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/endpoint/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @data-client/endpoint

## 0.14.4

### Patch Changes

- [`0adad92`](https://github.com/reactive/data-client/commit/0adad9209265c388eb6d334afe681610bccfb877) Thanks [@ntucker](https://github.com/ntucker)! - Update debugging link

## 0.14.3

### 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.3",
"version": "0.14.4",
"description": "Declarative Network Interface Definitions",
"homepage": "https://dataclient.io/docs/guides/custom-protocol",
"keywords": [
Expand Down
9 changes: 9 additions & 0 deletions packages/graphql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @data-client/graphql

## 0.14.4

### Patch Changes

- [`0adad92`](https://github.com/reactive/data-client/commit/0adad9209265c388eb6d334afe681610bccfb877) Thanks [@ntucker](https://github.com/ntucker)! - Update debugging link

- Updated dependencies [[`0adad92`](https://github.com/reactive/data-client/commit/0adad9209265c388eb6d334afe681610bccfb877)]:
- @data-client/endpoint@0.14.4

## 0.14.3

### 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.3",
"version": "0.14.4",
"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.3"
"@data-client/endpoint": "^0.14.4"
},
"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.1"
"@data-client/endpoint": "^0.14.4"
},
"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
58 changes: 58 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,63 @@
# @data-client/react

## 0.14.4

### Patch Changes

- [#3161](https://github.com/reactive/data-client/pull/3161) [`b932dca`](https://github.com/reactive/data-client/commit/b932dca45a4fcf60c00db8da509162f253065769) Thanks [@ntucker](https://github.com/ntucker)! - Add jsdocs to IdlingNetworkManager

- [`e4751d9`](https://github.com/reactive/data-client/commit/e4751d9cd0ee26567d7632ea4707ca181901ff89) Thanks [@ntucker](https://github.com/ntucker)! - NetworkManager constructor uses keyword args

#### Before

```ts
new NetworkManager(42, 7);
```

#### After

```ts
new NetworkManager({ dataExpiryLength: 42, errorExpiryLength: 7 });
```

- [`0adad92`](https://github.com/reactive/data-client/commit/0adad9209265c388eb6d334afe681610bccfb877) Thanks [@ntucker](https://github.com/ntucker)! - Update debugging link

- [`09ad848`](https://github.com/reactive/data-client/commit/09ad848879db55bb441d93336dd7442d3f484d49) Thanks [@ntucker](https://github.com/ntucker)! - state.endpoints moved above indexes

`entites` and `endpoints` are the most commonly inspected
parts of state when debugging, so it is better to have endpoints
above indexes.

- [#3161](https://github.com/reactive/data-client/pull/3161) [`b932dca`](https://github.com/reactive/data-client/commit/b932dca45a4fcf60c00db8da509162f253065769) Thanks [@ntucker](https://github.com/ntucker)! - Add configuration to [getDefaultManagers()](https://dataclient.io/docs/api/getDefaultManagers)

```ts
// completely remove DevToolsManager
const managers = getDefaultManagers({ devToolsManager: null });
```

```ts
// easier configuration
const managers = getDefaultManagers({
devToolsManager: {
// double latency to help with high frequency updates
latency: 1000,
// skip websocket updates as these are too spammy
predicate: (state, action) =>
action.type !== actionTypes.SET_TYPE || action.schema !== Ticker,
},
});
```

```ts
// passing instance allows us to use custom classes as well
const managers = getDefaultManagers({
networkManager: new CustomNetworkManager(),
});
```

- Updated dependencies [[`b932dca`](https://github.com/reactive/data-client/commit/b932dca45a4fcf60c00db8da509162f253065769), [`e4751d9`](https://github.com/reactive/data-client/commit/e4751d9cd0ee26567d7632ea4707ca181901ff89), [`09ad848`](https://github.com/reactive/data-client/commit/09ad848879db55bb441d93336dd7442d3f484d49)]:
- @data-client/[email protected]

## 0.14.2

### 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.2",
"version": "0.14.4",
"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.2",
"@data-client/core": "^0.14.4",
"@data-client/use-enhanced-reducer": "^0.1.10"
},
"peerDependencies": {
Expand Down
9 changes: 9 additions & 0 deletions packages/rest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @data-client/rest

## 0.14.4

### Patch Changes

- [`0adad92`](https://github.com/reactive/data-client/commit/0adad9209265c388eb6d334afe681610bccfb877) Thanks [@ntucker](https://github.com/ntucker)! - Update debugging link

- Updated dependencies [[`0adad92`](https://github.com/reactive/data-client/commit/0adad9209265c388eb6d334afe681610bccfb877)]:
- @data-client/endpoint@0.14.4

## 0.14.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/rest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@data-client/rest",
"version": "0.14.3",
"version": "0.14.4",
"description": "Endpoints for REST APIs",
"homepage": "https://dataclient.io/rest",
"repository": {
Expand Down Expand Up @@ -131,7 +131,7 @@
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.17.0",
"@data-client/endpoint": "^0.14.3",
"@data-client/endpoint": "^0.14.4",
"path-to-regexp": "^6.2.1"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit 785208c

Please sign in to comment.