Skip to content

Commit

Permalink
fix(query-history, aggregations): regex and number long query history…
Browse files Browse the repository at this point in the history
  • Loading branch information
Anemy authored Jun 10, 2024
1 parent 7eebbfb commit 13c4c63
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 31 deletions.
44 changes: 22 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/compass-aggregations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
"mongodb-database-model": "^2.20.0",
"mongodb-instance-model": "^12.21.0",
"mongodb-ns": "^2.4.2",
"mongodb-query-parser": "^4.1.0",
"mongodb-query-parser": "^4.1.2",
"mongodb-schema": "^12.2.0",
"prop-types": "^15.7.2",
"re-resizable": "^6.9.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/compass-crud/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
"lodash": "^4.17.21",
"mongodb-data-service": "^22.20.0",
"mongodb-ns": "^2.4.2",
"mongodb-query-parser": "^4.1.0",
"mongodb-query-parser": "^4.1.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"reflux": "^0.4.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/compass-import-export/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"mongodb": "^6.6.2",
"mongodb-data-service": "^22.20.0",
"mongodb-ns": "^2.4.2",
"mongodb-query-parser": "^4.1.0",
"mongodb-query-parser": "^4.1.2",
"mongodb-schema": "^12.2.0",
"papaparse": "^5.3.2",
"react": "^17.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/compass-indexes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"lodash": "^4.17.21",
"mongodb": "^6.6.2",
"mongodb-data-service": "^22.20.0",
"mongodb-query-parser": "^4.1.0",
"mongodb-query-parser": "^4.1.2",
"numeral": "^2.0.6",
"react": "^17.0.2",
"react-redux": "^8.1.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/compass-query-bar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"mongodb": "^6.6.2",
"mongodb-instance-model": "^12.21.0",
"mongodb-ns": "^2.4.2",
"mongodb-query-parser": "^4.1.0",
"mongodb-query-parser": "^4.1.2",
"mongodb-query-util": "^2.2.2",
"mongodb-schema": "^12.2.0",
"react": "^17.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/compass-query-bar/src/utils/format-query.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ describe('formatQuery [Utils]', function () {
describe('when the property has a Long', function () {
const value = bson.Long.fromNumber(1);
const filter = { field: value };
const expected = '{\n field: NumberLong(1)\n}';
const expected = "{\n field: NumberLong('1')\n}";

it('returns the shell syntax string', function () {
expect(formatQuery(filter)).to.equal(expected);
Expand Down
2 changes: 1 addition & 1 deletion packages/compass-schema-validation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"javascript-stringify": "^2.0.1",
"lodash": "^4.17.21",
"mongodb-ns": "^2.4.2",
"mongodb-query-parser": "^4.1.0",
"mongodb-query-parser": "^4.1.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-redux": "^8.1.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/connection-form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"mongodb-build-info": "^1.7.2",
"mongodb-connection-string-url": "^3.0.1",
"mongodb-data-service": "^22.20.0",
"mongodb-query-parser": "^4.1.0",
"mongodb-query-parser": "^4.1.2",
"react": "^17.0.2"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/databases-collections/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"mongodb-database-model": "^2.20.0",
"mongodb-instance-model": "^12.21.0",
"mongodb-ns": "^2.4.2",
"mongodb-query-parser": "^4.1.0",
"mongodb-query-parser": "^4.1.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-redux": "^8.1.3",
Expand Down

0 comments on commit 13c4c63

Please sign in to comment.