diff --git a/CHANGELOG.md b/CHANGELOG.md index cff842fc46..3d1ab87a72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,13 @@ ## Parse Dashboard Changelog ### master -[Full Changelog](https://github.com/parse-community/parse-dashboard/compare/2.0.3...master) +[Full Changelog](https://github.com/parse-community/parse-dashboard/compare/2.0.4...master) * _Contributing to this repo? Add info about your change here to be included in next release_ +### 2.0.4 +[Full Changelog](https://github.com/parse-community/parse-dashboard/compare/2.0.3...2.0.4) +* Fix: Restore `ObjectId` to filter ([#1315](https://github.com/parse-community/parse-dashboard/pull/1315)), thanks to [Wolfwood](https://github.com/W0lfw00d) +* Fix: Prevent duplicate entries when sorting by `createdAt` ([#1334](https://github.com/parse-community/parse-dashboard/pull/1334)), thanks to [Wolfwood](https://github.com/W0lfw00d) ### 2.0.3 [Full Changelog](https://github.com/parse-community/parse-dashboard/compare/2.0.2...2.0.3) diff --git a/package-lock.json b/package-lock.json index ed66c8a87d..9e8ff36996 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "parse-dashboard", - "version": "2.0.3", + "version": "2.0.4", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -8732,9 +8732,9 @@ } }, "marked": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/marked/-/marked-0.6.2.tgz", - "integrity": "sha512-LqxwVH3P/rqKX4EKGz7+c2G9r98WeM/SW34ybhgNGhUQNKtf1GmmSkJ6cDGJ/t6tiyae49qRkpyTw2B9HOrgUA==", + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/marked/-/marked-0.7.0.tgz", + "integrity": "sha512-c+yYdCZJQrsRjTPhUx7VKkApw9bwDkNbHUKo1ovgcfDjb2kc8rLuRbIFyXL5WOEUwzSSKo3IXpph2K6DqB/KZg==", "dev": true }, "md5.js": { @@ -10222,37 +10222,37 @@ "dev": true }, "parse-server": { - "version": "github:parseplatform/parse-server#b3270d887beab2c93ce6ef865f494c05e0780e9f", + "version": "github:parseplatform/parse-server#8a543bfda40c8cb5df366e21ff19ee603d37ca2b", "from": "github:parseplatform/parse-server#master", "dev": true, "requires": { "@apollographql/graphql-playground-html": "1.6.24", "@parse/fs-files-adapter": "1.0.1", - "@parse/push-adapter": "3.0.10", + "@parse/push-adapter": "3.1.0", "@parse/s3-files-adapter": "1.3.0", "@parse/simple-mailgun-adapter": "1.1.0", - "apollo-server-express": "2.9.3", + "apollo-server-express": "2.9.6", "bcrypt": "3.0.6", "bcryptjs": "2.4.3", "body-parser": "1.19.0", - "commander": "3.0.1", + "commander": "3.0.2", "cors": "2.8.5", "deepcopy": "2.0.0", "express": "4.17.1", "follow-redirects": "1.9.0", - "graphql": "14.5.6", + "graphql": "14.5.8", "graphql-list-fields": "2.0.2", "graphql-tools": "^4.0.5", - "graphql-upload": "8.0.7", + "graphql-upload": "8.1.0", "intersect": "1.0.1", "jsonwebtoken": "8.5.1", "lodash": "4.17.15", "lru-cache": "5.1.1", "mime": "2.4.4", "mongodb": "3.3.2", - "node-rsa": "1.0.5", - "parse": "2.7.1", - "pg-promise": "9.1.4", + "node-rsa": "1.0.6", + "parse": "2.8.0", + "pg-promise": "9.3.3", "pluralize": "^8.0.0", "redis": "2.8.0", "semver": "6.3.0", diff --git a/package.json b/package.json index cfad266b8d..622563116d 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ ], "homepage": "https://github.com/ParsePlatform/parse-dashboard", "bugs": "https://github.com/ParsePlatform/parse-dashboard/issues", - "version": "2.0.3", + "version": "2.0.4", "repository": { "type": "git", "url": "https://github.com/ParsePlatform/parse-dashboard" @@ -89,7 +89,7 @@ "file-loader": "4.2.0", "http-server": "0.11.1", "jest": "24.8.0", - "marked": "0.6.2", + "marked": "0.7.0", "node-sass": "4.12.0", "null-loader": "^3.0.0", "parse-server": "github:parseplatform/parse-server#master",