- Added: support for MongoDB 3.6
- Changed: config file format, see new example-config.js for reference. Use
aliases
to keep old URLs working
- Changed: design rework
- Added: select field in find()
- Added: copy query button
- Changed: improved field suggestions
- Changed: respect date, id and binary display settings on "Show content"
- Added: auto completion \o/
- Added: prompt mode and API
- Fixed: context menu sometimes not showing
- Added: support for mongodb 3.2 new aggregation stages
- Changed: use
PM2
instead offorever
innpm start
- Changed: dropped support for node v0.10
- Added: option to display object ids as timestamps
- Added: plot data (beta) (supported chart types: area, bar, column, line, histogram)
- Fixed: #19
- Fixed: remove some clutter from the UI
- Fixed:
json.preParse
- Added: support for GeoJSON
- Added: support for count queries
- Changed: custom input elements
- Added: support for multiple users in basic http auth
- Added: allow a users to use only some connections
basicAuth
field in config is now an array. If you're using basic auth, change from:
basicAuth: {
user: 'x',
password: 'pass'
}
to
basicAuth: [{
user: 'x',
password: 'pass'
}]