Releases: poki/mongodb-filter-to-postgres
Releases · poki/mongodb-filter-to-postgres
v1.0.4
What's Changed
- Access Control Options 🔒 by @koenbollen in #29
Migration notice! ⚠️
This is a breaking change!
The constructor filter.NewConverter()
can now returns an error (when no access control option has been passed).
Please make sure to add filter.WithAllowAllColumns()
as option to filter.NewConverter()
to maintain the same behavior as before (unless you are already using filter.WithNestedJSONB()
).
v1.0.3
What's Changed
- Set up dependabot by @getkey in #25
- Bump golangci/golangci-lint-action from 5 to 6 in the github-actions group by @dependabot in #26
- Bump github.com/docker/docker from 26.1.0+incompatible to 26.1.5+incompatible in /integration by @dependabot in #27
- Bump github.com/opencontainers/runc from 1.1.12 to 1.1.14 in /integration by @dependabot in #28
New Contributors
Full Changelog: v1.0.2...v1.0.3
v1.0.2
What's Changed
- Add $field operator to compare fields by @erikdubbelboer in #23
v1.0.1
What's Changed
- Fix comparison of numeric jsonb columns by @erikdubbelboer in #22
v1.0.0
This is the first stable release of mongodb-filter-to-postgres. The API is now stable, providing a reliable and simple way to convert MongoDB query filters into PostgreSQL WHERE clauses. This package supports basic operators, logical operators, and array operators, ensuring robust and intuitive data filtering. More functionality (new operators) may be added in the future.