Skip to content

Commit ef3f819

Browse files
github-actions[bot]devmatteini
authored andcommitted
Version Packages
1 parent 248d95d commit ef3f819

File tree

12 files changed

+36
-46
lines changed

12 files changed

+36
-46
lines changed

.changeset/forty-lemons-fix.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/lovely-dots-lick.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/quiet-lizards-yell.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/red-donkeys-turn.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/six-carrots-suffer.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

.changeset/spicy-comics-rush.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/spotty-hairs-sell.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/effect-mongodb/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# effect-mongodb
22

3+
## 0.1.3
4+
5+
### Patch Changes
6+
7+
- [`f4750b7`](https://github.com/doubleloop-io/effect-mongodb/commit/f4750b7f43f395d137f3d59f4f6e829553475c77) Thanks [@devmatteini](https://github.com/devmatteini)! - Fix `Collection.updateMany` success return type `UpdateResult<I>` to allow custom defined `_id` types
8+
9+
- [`b5469c5`](https://github.com/doubleloop-io/effect-mongodb/commit/b5469c5ce92b40483feff0e3541b0acffcf4db9e) Thanks [@devmatteini](https://github.com/devmatteini)! - Fix `Collection.replaceOne` success return type `UpdateResult<I>` to allow custom defined `_id` types
10+
11+
- [`3f9d487`](https://github.com/doubleloop-io/effect-mongodb/commit/3f9d4877c8dcf1926da175fd6ff5b345d7926591) Thanks [@devmatteini](https://github.com/devmatteini)! - Fix `Collection.insertOne` success return type `InsertOneResult<I>` to allow custom defined `_id` types
12+
13+
- [`8332e0c`](https://github.com/doubleloop-io/effect-mongodb/commit/8332e0c76faf9f7594364ba73b54a37d73f98c79) Thanks [@devmatteini](https://github.com/devmatteini)! - `Collection/DocumentCollection.dropIndex` return type is the same as mongodb driver
14+
15+
- [`891b6bf`](https://github.com/doubleloop-io/effect-mongodb/commit/891b6bf32e3483707166656db1d116e75bd51122) Thanks [@devmatteini](https://github.com/devmatteini)! - Swap `Collection.aggregate` pipeline and schema parameter positions
16+
17+
```typescript
18+
// Before
19+
Collection.aggregate(pipeline, schema)
20+
21+
// After
22+
Collection.aggregate(schema, pipeline)
23+
```
24+
25+
- [`4e17b58`](https://github.com/doubleloop-io/effect-mongodb/commit/4e17b584406669236a0e9c2375749685981e70f0) Thanks [@VenomAV](https://github.com/VenomAV)! - Review all errors, providing contextual information and standardizing error messages
26+
27+
- [`bd026cf`](https://github.com/doubleloop-io/effect-mongodb/commit/bd026cf25fcbbdf3f6ae2fed4f240651626d0b7a) Thanks [@devmatteini](https://github.com/devmatteini)! - Fix `Collection.insertMany` success return type `InsertManyResult<I>` to allow custom defined `_id` types
28+
329
## 0.1.2
430

531
### Patch Changes

packages/effect-mongodb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "effect-mongodb",
33
"author": "doubleloop.io",
4-
"version": "0.1.2",
4+
"version": "0.1.3",
55
"type": "module",
66
"license": "MIT",
77
"description": "A MongoDB toolkit for Effect",

packages/effect-mongodb/src/internal/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
let moduleVersion = "0.1.2"
1+
let moduleVersion = "0.1.3"
22

33
export const getCurrentVersion = () => moduleVersion
44

0 commit comments

Comments
 (0)