Releases: florianholzapfel/express-restify-mongoose
Releases · florianholzapfel/express-restify-mongoose
9.0.5
What's Changed
- Restore original allowRegex behavior by @T-vK in #463
- chore(deps): bump rollup from 3.29.4 to 3.29.5 by @dependabot in #467
- chore(deps-dev): bump express from 4.19.2 to 4.20.0 by @dependabot in #466
- chore(deps): bump micromatch from 4.0.5 to 4.0.8 by @dependabot in #464
- chore(deps-dev): bump body-parser from 1.20.2 to 1.20.3 by @dependabot in #465
- chore(deps): bump braces from 3.0.2 to 3.0.3 by @dependabot in #470
- Enable nested populate query again. by @leemin0830 in #469
New Contributors
- @leemin0830 made their first contribution in #469
Full Changelog: 9.0.4...9.0.5
9.0.4
What's Changed
- Added option updateDeep by @CyberT33N in #461
- chore(deps-dev): bump express from 4.18.3 to 4.19.2 by @dependabot in #460
New Contributors
- @CyberT33N made their first contribution in #461
Full Changelog: 9.0.3...9.0.4
9.0.3
9.0.2
9.0.1
9.0.0
v8.0.0
Re-written in TypeScript, hopefully with very few disruptive breaking changes.
Build output is ESM first (import { serve } from "express-restify-mongoose"
) but CJS is also supported (const { serve } = require("express-restify-mongoose/cjs")
)
Breaking changes
allowRegex
now defaults tofalse
and returns an error when the query includes$regex
options.access
no longer accepts a callback and be can anasync
function instead (or a function that returns aPromise
)- Removed
defaults
method: apps should define default options and spread them intoserve
options