Skip to content

Commit

Permalink
Merge branch 'main' into bump-docker
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekSi authored May 23, 2022
2 parents d29580d + d80126f commit ce5d238
Show file tree
Hide file tree
Showing 23 changed files with 1,212 additions and 144 deletions.
52 changes: 52 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,57 @@
# Changelog

## [v0.2.1](https://github.com/FerretDB/FerretDB/releases/tag/v0.2.1) (2022-05-17)

### New Features 🎉
* Support `$slice` projection query operator by @GinGin3203 in https://github.com/FerretDB/FerretDB/pull/518
* Support `$comment` query operator by @ribaraka in https://github.com/FerretDB/FerretDB/pull/563
* Support basic `connectionStatus` diagnostic command by @fenogentov in https://github.com/FerretDB/FerretDB/pull/572
* Support `$regex` evaluation query operator by @w84thesun in https://github.com/FerretDB/FerretDB/pull/588

### Enhancements 🛠
* Support querying documents by @w84thesun in https://github.com/FerretDB/FerretDB/pull/573
* Improve comparison of arrays and documents by @ribaraka in https://github.com/FerretDB/FerretDB/pull/589
* Support `getParameter`'s parameters by @fenogentov in https://github.com/FerretDB/FerretDB/pull/535
* Add stubs to make VSCode plugin work by @AlekSi in https://github.com/FerretDB/FerretDB/pull/603

### Documentation 📄
* Add conform CI workflow, improve docs by @AlekSi in https://github.com/FerretDB/FerretDB/pull/566
* Update CONTRIBUTING.md with typo fix and a tiny correction by @rumyantseva in https://github.com/FerretDB/FerretDB/pull/574
* Add note about forks by @AlekSi in https://github.com/FerretDB/FerretDB/pull/575

### Other Changes 🤖
* Bump go.mongodb.org/mongo-driver from 1.9.0 to 1.9.1 in /integration by @dependabot in https://github.com/FerretDB/FerretDB/pull/555
* Add missing `//nolint` by @AlekSi in https://github.com/FerretDB/FerretDB/pull/556
* Set the handler to use via a command-line flag and remove debug handlers from interface by @seeforschauer in https://github.com/FerretDB/FerretDB/pull/534
* Add tests for `RemoveByPath` by @seeforschauer in https://github.com/FerretDB/FerretDB/pull/549
* Add `altMessage` to `AssertEqualError` by @w84thesun in https://github.com/FerretDB/FerretDB/pull/550
* Add documentation for values comparision by @AlekSi in https://github.com/FerretDB/FerretDB/pull/559
* Add `debug` and `panic` msg handlers to `Command` map by @seeforschauer in https://github.com/FerretDB/FerretDB/pull/561
* Add `RemoveByPath` for `Array` and `CompositeTypeInterface` by @seeforschauer in https://github.com/FerretDB/FerretDB/pull/560
* Bump docker/login-action from 1 to 2 by @dependabot in https://github.com/FerretDB/FerretDB/pull/565
* Bump pgx version by @AlekSi in https://github.com/FerretDB/FerretDB/pull/570
* Use `float64(x)` for `ok` everywhere by @AlekSi in https://github.com/FerretDB/FerretDB/pull/577
* Improve `AssertEqualAltError` documentation by @AlekSi in https://github.com/FerretDB/FerretDB/pull/578
* Remove `types.MustNewDocument` in some places by @AlekSi in https://github.com/FerretDB/FerretDB/pull/579
* Remove `MustNewDocument` by @AlekSi in https://github.com/FerretDB/FerretDB/pull/581
* Remove `MustNewArray` by @AlekSi in https://github.com/FerretDB/FerretDB/pull/582
* Remove `MustConvertDocument` by @AlekSi in https://github.com/FerretDB/FerretDB/pull/583
* Enable `staticcheck` by @AlekSi in https://github.com/FerretDB/FerretDB/pull/580
* Enable `gosimple` by @AlekSi in https://github.com/FerretDB/FerretDB/pull/584
* Change the way linters work by @AlekSi in https://github.com/FerretDB/FerretDB/pull/586
* Merge `BigNumbersData` into `Scalars` by @AlphaB in https://github.com/FerretDB/FerretDB/pull/595
* Set `GOLANGCI_LINT_CACHE` by @AlekSi in https://github.com/FerretDB/FerretDB/pull/597
* Increase `golangci-lint` timeout by @AlekSi in https://github.com/FerretDB/FerretDB/pull/598
* Bump deps by @AlekSi in https://github.com/FerretDB/FerretDB/pull/604

## New Contributors
* @rumyantseva made their first contribution in https://github.com/FerretDB/FerretDB/pull/574
* @AlphaB made their first contribution in https://github.com/FerretDB/FerretDB/pull/595

[All closed issues and pull requests](https://github.com/FerretDB/FerretDB/milestone/16?closed=1).
[All commits](https://github.com/FerretDB/FerretDB/compare/v0.2.0...v0.2.1).


## [v0.2.0](https://github.com/FerretDB/FerretDB/releases/tag/v0.2.0) (2022-05-04)

### What's Changed
Expand Down
3 changes: 2 additions & 1 deletion integration/basic_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ func TestInsertFind(t *testing.T) {

for _, expected := range docs {
expected := expected
id := expected.Map()["_id"]
id, ok := expected.Map()["_id"]
require.True(t, ok)

t.Run(fmt.Sprint(id), func(t *testing.T) {
t.Parallel()
Expand Down
Loading

0 comments on commit ce5d238

Please sign in to comment.