Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #23

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/breezy-cheetahs-juggle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dull-icons-nail.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shaggy-bats-smell.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/shiny-tables-decide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/two-scissors-impress.md

This file was deleted.

15 changes: 15 additions & 0 deletions packages/effect-mongodb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# effect-mongodb

## 0.0.4

### Patch Changes

- [`a8530e7`](https://github.com/doubleloop-io/effect-mongodb/commit/a8530e703a9b065f660f31db5cf9ea9dca12bd69) Thanks [@devmatteini](https://github.com/devmatteini)! - Add dropIndex function in Collection and DocumentCollection

- [`6cc9c61`](https://github.com/doubleloop-io/effect-mongodb/commit/6cc9c6108cab2d4c8ed2555fb603df5791f75f1c) Thanks [@devmatteini](https://github.com/devmatteini)! - Add createIndex function in Collection and DocumentCollection

- [`16c906a`](https://github.com/doubleloop-io/effect-mongodb/commit/16c906af4ef5afc5b62522c73c9f571176ee5048) Thanks [@devmatteini](https://github.com/devmatteini)! - Add findOneAndReplace function in Collection and DocumentCollection

- [`6f0a8d4`](https://github.com/doubleloop-io/effect-mongodb/commit/6f0a8d4404a74238fbc901fae5a212c1c7c6b2bc) Thanks [@devmatteini](https://github.com/devmatteini)! - Use Filter type in FindCursor and DocumentFindCursor filter function.
Add optional filter parameter to find functions in Collection and DocumentCollection

- [`d50d85d`](https://github.com/doubleloop-io/effect-mongodb/commit/d50d85db297b5d6e8e4b7db2f151c64bf9ac3c9e) Thanks [@devmatteini](https://github.com/devmatteini)! - Add drop function in Collection and DocumentCollection

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/effect-mongodb/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "effect-mongodb",
"author": "doubleloop.io",
"version": "0.0.3",
"version": "0.0.4",
"type": "module",
"license": "MIT",
"description": "A MongoDB toolkit for Effect",
Expand Down
2 changes: 1 addition & 1 deletion packages/effect-mongodb/src/internal/version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
let moduleVersion = "0.0.3"
let moduleVersion = "0.0.4"

export const getCurrentVersion = () => moduleVersion

Expand Down