mobx 6.12.1 → 6.12.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # mobx
2
2
 
3
+ ## 6.12.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`61abc53f`](https://github.com/mobxjs/mobx/commit/61abc53ff10554d1d5ce3e85466f6beda4d63fa2) [#3852](https://github.com/mobxjs/mobx/pull/3852) Thanks [@mweststrate](https://github.com/mweststrate)! - Patched the release process, forcing release to get everything in pristine state.
8
+
9
+ * [`b28e0ebb`](https://github.com/mobxjs/mobx/commit/b28e0ebbfc9aa11293bc185216da92997e497fd3) [#3816](https://github.com/mobxjs/mobx/pull/3816) Thanks [@barroij](https://github.com/barroij)! - Fix `IReactionDisposer` and `IIsObservableObject` interface definition so that Typescript knows the property key `$mobx` is a symbol and not a string
10
+
3
11
  ## 6.12.1
4
12
 
5
13
  ### Patch Changes
@@ -1,4 +1,4 @@
1
- import { IDerivation, IDerivationState_, IObservable, Lambda, TraceMode, GenericAbortSignal } from "../internal";
1
+ import { $mobx, IDerivation, IDerivationState_, IObservable, Lambda, TraceMode, GenericAbortSignal } from "../internal";
2
2
  /**
3
3
  * Reactions are a special kind of derivations. Several things distinguishes them from normal reactive computations
4
4
  *
@@ -23,7 +23,7 @@ export interface IReactionPublic {
23
23
  }
24
24
  export interface IReactionDisposer {
25
25
  (): void;
26
- $mobx: Reaction;
26
+ [$mobx]: Reaction;
27
27
  }
28
28
  export declare class Reaction implements IDerivation, IReactionPublic {
29
29
  name_: string;