1# wonka
2
3## 6.3.5
4
5### Patch Changes
6
7- Exclude `sourcesContent` from published sourcemaps
8 Submitted by [@kitten](https://github.com/kitten) (See [`68e608f`](https://github.com/0no-co/wonka/commit/68e608f46244e82d41c952ecfa1d7f0096e168f6))
9
10## 6.3.4
11
12### Patch Changes
13
14- Add missing `Symbol.observable` global declaration back to typings
15 Submitted by [@kitten](https://github.com/kitten) (See [#168](https://github.com/0no-co/wonka/pull/168))
16
17## 6.3.3
18
19### Patch Changes
20
21- Improve compatibility of `fromAsyncIterable` and `toAsyncIterable`. The `toAsyncIterable` will now output an object that's both an `AsyncIterator` and an `AsyncIterable`. Both helpers will now use a polyfill for `Symbol.asyncIterator` to improve compatibility with the Hermes engine and Babel transpilation
22 Submitted by [@kitten](https://github.com/kitten) (See [#165](https://github.com/0no-co/wonka/pull/165))
23
24## 6.3.2
25
26### Patch Changes
27
28- Publish with npm provenance
29 Submitted by [@kitten](https://github.com/kitten) (See [#161](https://github.com/0no-co/wonka/pull/161))
30
31## 6.3.1
32
33### Patch Changes
34
35- 鈿狅笍 Fix missing `declare` keyword on internal ambient enums
36 Submitted by [@kitten](https://github.com/kitten) (See [#159](https://github.com/0no-co/wonka/pull/159))
37
38## 6.3.0
39
40### Minor Changes
41
42- Add `addOne` argument to `takeWhile`, allowing an additional value to be issued
43 Submitted by [@kitten](https://github.com/kitten) (See [#156](https://github.com/0no-co/wonka/pull/156))
44
45### Patch Changes
46
47- Convert `Push<T>` and `Start<T>` signals to `{ tag, 0: value }` objects, which are sufficiently backwards compatible and result in slightly faster execution in v8
48 Submitted by [@kitten](https://github.com/kitten) (See [#155](https://github.com/0no-co/wonka/pull/155))
49
50## 6.2.6
51
52### Patch Changes
53
54- 鈿狅笍 Fix missing source contents in Wonka sourcemaps
55 Submitted by [@kitten](https://github.com/kitten) (See [`56d9708`](https://github.com/0no-co/wonka/commit/56d970861424fddd403262bf85d7e1e3572b15e2))
56- 鈿狅笍 Fix internal `SignalKind` and `TalkbackKind` enums not compiling away
57 Submitted by [@kitten](https://github.com/kitten) (See [#154](https://github.com/0no-co/wonka/pull/154))
58
59## 6.2.5
60
61### Patch Changes
62
63- Make `closed: boolean` on `ObservableSubscription`s a required field to comply with the Observable proposal's type spec
64 Submitted by [@naporin0624](https://github.com/naporin0624) (See [#151](https://github.com/0no-co/wonka/pull/151))
65
66## 6.2.4
67
68### Patch Changes
69
70- Add missing overload definition for `filter`, which allows types to be narrowed, e.g. by specifying a type predicate return type
71 Submitted by [@kitten](https://github.com/kitten) (See [#149](https://github.com/0no-co/wonka/pull/149))
72
73## 6.2.3
74
75### Patch Changes
76
77- 鈿狅笍 Fix overload of `pipe` type not being applied in bundled `d.ts` file, by [@kitten](https://github.com/kitten) (See [#144](https://github.com/0no-co/wonka/pull/144))
78
79## 6.2.2
80
81### Patch Changes
82
83- 鈿狅笍 Fix missing `Symbol.observable` typings and remove `const enum` exports, which aren't usable in isolated modules, by [@kitten](https://github.com/kitten) (See [#141](https://github.com/0no-co/wonka/pull/141))
84
85## 6.2.1
86
87### Patch Changes
88
89- 鈿狅笍 Fix accidental addition of `postinstall` script rather than `prepare` script, by [@kitten](https://github.com/kitten) (See [#138](https://github.com/0no-co/wonka/pull/138))
90
91## 6.2.0
92
93### Minor Changes
94
95- Implement `toAsyncIterable`, converting a Wonka source to a JS Async Iterable, by [@kitten](https://github.com/kitten) (See [#133](https://github.com/0no-co/wonka/pull/133))
96- Implement `d.ts` bundling. Only a single `wonka.d.ts` typings file will now be available to TypeScript, by [@kitten](https://github.com/kitten) (See [#135](https://github.com/0no-co/wonka/pull/135))
97- Add extensive TSDoc documentation for all `wonka` internals and exports. This will replace the documentation and give consumers more guidance on each of the library's extensive utilities, by [@kitten](https://github.com/kitten) (See [#136](https://github.com/0no-co/wonka/pull/136))
98
99### Patch Changes
100
101- 鈿狅笍 Fix promise timing by adding missing `Promise.resolve()` tick to `toPromise` sink function, by [@kitten](https://github.com/kitten) (See [#131](https://github.com/0no-co/wonka/pull/131))
102- 鈿狅笍 Fix implementation of Observable spec as such that Observable.subscribe(onNext, onError, onComplete) becomes valid, by [@kitten](https://github.com/kitten) (See [#132](https://github.com/0no-co/wonka/pull/132))