Skip to content

Commit

Permalink
v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mnasyrov committed Nov 10, 2021
1 parent ed7b2fc commit 361f9b9
Show file tree
Hide file tree
Showing 10 changed files with 57 additions and 37 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.1](https://github.com/mnasyrov/rx-effects/compare/v0.4.0...v0.4.1) (2021-11-10)

### Bug Fixes

- Share and replay mapQuery() and mergeQueries() to subscriptions ([8308310](https://github.com/mnasyrov/rx-effects/commit/830831001630d2b2b7318d2e7126706803eff9ff))

# [0.4.0](https://github.com/mnasyrov/rx-effects/compare/v0.3.3...v0.4.0) (2021-09-30)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.4.0",
"version": "0.4.1",
"hoist": "**",
"forceLocal": true,
"command": {
Expand Down
4 changes: 4 additions & 0 deletions packages/examples/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.1](https://github.com/mnasyrov/rx-effects/compare/v0.4.0...v0.4.1) (2021-11-10)

**Note:** Version bump only for package rx-effects-examples

# [0.4.0](https://github.com/mnasyrov/rx-effects/compare/v0.3.3...v0.4.0) (2021-09-30)

**Note:** Version bump only for package rx-effects-examples
Expand Down
6 changes: 3 additions & 3 deletions packages/examples/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"private": true,
"name": "rx-effects-examples",
"version": "0.4.0",
"version": "0.4.1",
"type": "module",
"sideEffects": false,
"dependencies": {
"rx-effects": "0.4.0",
"rx-effects-react": "0.4.0"
"rx-effects": "0.4.1",
"rx-effects-react": "0.4.1"
},
"peerDependencies": {
"react": ">=17.0.0",
Expand Down
4 changes: 4 additions & 0 deletions packages/rx-effects-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.1](https://github.com/mnasyrov/rx-effects/compare/v0.4.0...v0.4.1) (2021-11-10)

**Note:** Version bump only for package rx-effects-react

# [0.4.0](https://github.com/mnasyrov/rx-effects/compare/v0.3.3...v0.4.0) (2021-09-30)

**Note:** Version bump only for package rx-effects-react
Expand Down
12 changes: 6 additions & 6 deletions packages/rx-effects-react/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ If the factory is provided, it is called only once.

#### Defined in

[rx-effects-react/src/useConst.ts:12](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects-react/src/useConst.ts#L12)
[rx-effects-react/src/useConst.ts:12](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects-react/src/useConst.ts#L12)

---

Expand Down Expand Up @@ -74,7 +74,7 @@ included explicitly when it is needed.

#### Defined in

[rx-effects-react/src/useController.ts:19](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects-react/src/useController.ts#L19)
[rx-effects-react/src/useController.ts:19](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects-react/src/useController.ts#L19)

---

Expand Down Expand Up @@ -113,7 +113,7 @@ const value = useObservable<string>(source$, undefined);

#### Defined in

[rx-effects-react/src/useObservable.ts:19](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects-react/src/useObservable.ts#L19)
[rx-effects-react/src/useObservable.ts:19](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects-react/src/useObservable.ts#L19)

---

Expand Down Expand Up @@ -153,7 +153,7 @@ useObserver(source$, observer);

#### Defined in

[rx-effects-react/src/useObserver.ts:21](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects-react/src/useObserver.ts#L21)
[rx-effects-react/src/useObserver.ts:21](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects-react/src/useObserver.ts#L21)

---

Expand Down Expand Up @@ -199,7 +199,7 @@ const value = useSelector<{ data: Record<string, string> }>(

#### Defined in

[rx-effects-react/src/useSelector.ts:27](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects-react/src/useSelector.ts#L27)
[rx-effects-react/src/useSelector.ts:27](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects-react/src/useSelector.ts#L27)

---

Expand Down Expand Up @@ -227,4 +227,4 @@ Returns a value which is provided by the query.

#### Defined in

[rx-effects-react/src/useStateQuery.ts:9](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects-react/src/useStateQuery.ts#L9)
[rx-effects-react/src/useStateQuery.ts:9](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects-react/src/useStateQuery.ts#L9)
4 changes: 2 additions & 2 deletions packages/rx-effects-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rx-effects-react",
"version": "0.4.0",
"version": "0.4.1",
"description": "Reactive state and effects management. Tooling for React.js",
"license": "MIT",
"author": "Mikhail Nasyrov (https://github.com/mnasyrov)",
Expand Down Expand Up @@ -47,7 +47,7 @@
"watch": "rollup -c --watch"
},
"dependencies": {
"rx-effects": "0.4.0"
"rx-effects": "0.4.1"
},
"peerDependencies": {
"react": ">=17.0.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/rx-effects/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.1](https://github.com/mnasyrov/rx-effects/compare/v0.4.0...v0.4.1) (2021-11-10)

### Bug Fixes

- Share and replay mapQuery() and mergeQueries() to subscriptions ([8308310](https://github.com/mnasyrov/rx-effects/commit/830831001630d2b2b7318d2e7126706803eff9ff))

# [0.4.0](https://github.com/mnasyrov/rx-effects/compare/v0.3.3...v0.4.0) (2021-09-30)

### Bug Fixes
Expand Down
48 changes: 24 additions & 24 deletions packages/rx-effects/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ submitForm.even$.subscribe((formData) => {

#### Defined in

[action.ts:22](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/action.ts#L22)
[action.ts:22](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/action.ts#L22)

---

Expand Down Expand Up @@ -96,7 +96,7 @@ type LoggerController = Controller<{

#### Defined in

[controller.ts:17](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/controller.ts#L17)
[controller.ts:17](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/controller.ts#L17)

---

Expand All @@ -122,7 +122,7 @@ unsubscribe from them and deactivate the effect.

#### Defined in

[effect.ts:56](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/effect.ts#L56)
[effect.ts:56](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/effect.ts#L56)

---

Expand Down Expand Up @@ -155,7 +155,7 @@ Handler for an event. It can be asynchronous.

#### Defined in

[effect.ts:12](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/effect.ts#L12)
[effect.ts:12](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/effect.ts#L12)

---

Expand Down Expand Up @@ -186,7 +186,7 @@ Details about performing the effect.

#### Defined in

[effect.ts:27](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/effect.ts#L27)
[effect.ts:27](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/effect.ts#L27)

---

Expand All @@ -204,7 +204,7 @@ Options for handling an action or observable.

#### Defined in

[effect.ts:19](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/effect.ts#L19)
[effect.ts:19](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/effect.ts#L19)

---

Expand All @@ -219,7 +219,7 @@ It collects all subscriptions which are made by child entities and provides

#### Defined in

[scope.ts:16](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/scope.ts#L16)
[scope.ts:16](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/scope.ts#L16)

---

Expand All @@ -237,7 +237,7 @@ Declaration of a state.

#### Defined in

[stateDeclaration.ts:12](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/stateDeclaration.ts#L12)
[stateDeclaration.ts:12](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/stateDeclaration.ts#L12)

---

Expand Down Expand Up @@ -270,7 +270,7 @@ state.

#### Defined in

[stateDeclaration.ts:7](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/stateDeclaration.ts#L7)
[stateDeclaration.ts:7](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/stateDeclaration.ts#L7)

---

Expand Down Expand Up @@ -319,7 +319,7 @@ a next state

#### Defined in

[stateMutation.ts:19](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/stateMutation.ts#L19)
[stateMutation.ts:19](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/stateMutation.ts#L19)

---

Expand All @@ -344,7 +344,7 @@ Provider for a value of a state.

#### Defined in

[stateQuery.ts:8](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/stateQuery.ts#L8)
[stateQuery.ts:9](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/stateQuery.ts#L9)

---

Expand Down Expand Up @@ -375,7 +375,7 @@ Options for processing the query result

#### Defined in

[stateQuery.ts:23](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/stateQuery.ts#L23)
[stateQuery.ts:24](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/stateQuery.ts#L24)

---

Expand All @@ -393,7 +393,7 @@ Read-only type of the state store.

#### Defined in

[store.ts:10](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/store.ts#L10)
[store.ts:10](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/store.ts#L10)

---

Expand All @@ -409,7 +409,7 @@ Read-only type of the state store.

#### Defined in

[store.ts:42](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/store.ts#L42)
[store.ts:42](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/store.ts#L42)

## Functions

Expand All @@ -432,7 +432,7 @@ Makes shallow comparison of two objects.

#### Defined in

[utils.ts:8](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/utils.ts#L8)
[utils.ts:8](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/utils.ts#L8)

---

Expand All @@ -452,7 +452,7 @@ Makes shallow comparison of two objects.

#### Defined in

[action.ts:29](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/action.ts#L29)
[action.ts:29](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/action.ts#L29)

---

Expand Down Expand Up @@ -490,7 +490,7 @@ const sumEffect = createEffect<{ a: number; b: number }, number>((event) => {

#### Defined in

[effect.ts:83](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/effect.ts#L83)
[effect.ts:83](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/effect.ts#L83)

---

Expand All @@ -506,7 +506,7 @@ Creates `Scope` instance.

#### Defined in

[scope.ts:68](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/scope.ts#L68)
[scope.ts:68](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/scope.ts#L68)

---

Expand Down Expand Up @@ -535,7 +535,7 @@ Creates the state store.

#### Defined in

[store.ts:66](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/store.ts#L66)
[store.ts:66](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/store.ts#L66)

---

Expand Down Expand Up @@ -564,7 +564,7 @@ Declares the state.

#### Defined in

[stateDeclaration.ts:29](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/stateDeclaration.ts#L29)
[stateDeclaration.ts:29](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/stateDeclaration.ts#L29)

---

Expand Down Expand Up @@ -596,7 +596,7 @@ This helper creates `Effect` from `handler` and subscribes it to `source`.

#### Defined in

[handleAction.ts:8](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/handleAction.ts#L8)
[handleAction.ts:8](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/handleAction.ts#L8)

---

Expand Down Expand Up @@ -629,7 +629,7 @@ function.

#### Defined in

[stateQuery.ts:40](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/stateQuery.ts#L40)
[stateQuery.ts:41](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/stateQuery.ts#L41)

---

Expand Down Expand Up @@ -662,7 +662,7 @@ and merges them into a single value.

#### Defined in

[stateQuery.ts:63](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/stateQuery.ts#L63)
[stateQuery.ts:66](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/stateQuery.ts#L66)

---

Expand Down Expand Up @@ -692,4 +692,4 @@ You can use this helper to apply multiple changes at the same time.

#### Defined in

[stateMutation.ts:26](https://github.com/mnasyrov/rx-effects/blob/bc29bb5/packages/rx-effects/src/stateMutation.ts#L26)
[stateMutation.ts:26](https://github.com/mnasyrov/rx-effects/blob/ed7b2fc/packages/rx-effects/src/stateMutation.ts#L26)
2 changes: 1 addition & 1 deletion packages/rx-effects/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "rx-effects",
"description": "Reactive state and effects management",
"version": "0.4.0",
"version": "0.4.1",
"license": "MIT",
"author": "Mikhail Nasyrov (https://github.com/mnasyrov)",
"homepage": "https://github.com/mnasyrov/rx-effects",
Expand Down

0 comments on commit 361f9b9

Please sign in to comment.