Skip to content

Commit 3871611

Browse files
committed
COMPASS-9674: version bump
1 parent 5777542 commit 3871611

File tree

26 files changed

+332
-78
lines changed

26 files changed

+332
-78
lines changed

package-lock.json

Lines changed: 298 additions & 46 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/collection-model/lib/model.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -422,10 +422,7 @@ const CollectionCollection = AmpersandCollection.extend(
422422
// filtering, but for now this preserves the current behavior
423423
// and changing it right away will expand the scope of the
424424
// refactor significantly. We can address this in COMPASS-5211
425-
return (
426-
getNamespaceInfo(coll._id).system === false ||
427-
getNamespaceInfo(coll._id).collection === 'system.profile'
428-
);
425+
return getNamespaceInfo(coll._id).system === false;
429426
})
430427
.map(({ _id, ...rest }) => {
431428
return {

packages/collection-model/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"ampersand-collection": "^2.0.2",
3333
"ampersand-model": "^8.0.1",
3434
"mongodb-data-service": "^22.32.0",
35-
"mongodb-ns": "^2.4.2"
35+
"mongodb-ns": "^3.0.1"
3636
},
3737
"devDependencies": {
3838
"@mongodb-js/eslint-config-compass": "^1.4.9",

packages/compass-aggregations/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"mongodb-data-service": "^22.32.0",
8787
"mongodb-database-model": "^2.33.0",
8888
"mongodb-instance-model": "^12.45.0",
89-
"mongodb-ns": "^2.4.2",
89+
"mongodb-ns": "^3.0.1",
9090
"mongodb-query-parser": "^4.3.0",
9191
"mongodb-schema": "^12.6.2",
9292
"re-resizable": "^6.9.0",

packages/compass-app-stores/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"mongodb-database-model": "^2.33.0",
8181
"mongodb-instance-model": "^12.45.0",
8282
"compass-preferences-model": "^2.53.0",
83-
"mongodb-ns": "^2.4.2",
83+
"mongodb-ns": "^3.0.1",
8484
"react": "^17.0.2"
8585
},
8686
"is_compass_plugin": true

packages/compass-collection/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"hadron-document": "^8.10.1",
6565
"mongodb": "^6.19.0",
6666
"mongodb-collection-model": "^5.33.0",
67-
"mongodb-ns": "^2.4.2",
67+
"mongodb-ns": "^3.0.1",
6868
"mongodb-schema": "^12.6.2",
6969
"react": "^17.0.2",
7070
"react-redux": "^8.1.3",

packages/compass-crud/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
"lodash": "^4.17.21",
9797
"mongodb": "^6.19.0",
9898
"mongodb-data-service": "^22.32.0",
99-
"mongodb-ns": "^2.4.2",
99+
"mongodb-ns": "^3.0.1",
100100
"mongodb-query-parser": "^4.3.0",
101101
"numeral": "^2.0.6",
102102
"react": "^17.0.2",

packages/compass-data-modeling/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"html-to-image": "1.11.11",
7070
"lodash": "^4.17.21",
7171
"mongodb": "^6.19.0",
72-
"mongodb-ns": "^2.4.2",
72+
"mongodb-ns": "^3.0.1",
7373
"mongodb-schema": "^12.6.2",
7474
"react": "^17.0.2",
7575
"react-dom": "^17.0.2",

packages/compass-e2e-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"mongodb-build-info": "^1.7.2",
6363
"mongodb-connection-string-url": "^3.0.1",
6464
"mongodb-log-writer": "^2.3.4",
65-
"mongodb-ns": "^2.4.2",
65+
"mongodb-ns": "^3.0.1",
6666
"mongodb-runner": "^5.8.0",
6767
"node-fetch": "^2.7.0",
6868
"nyc": "^15.1.0",

packages/compass-e2e-tests/tests/instance-databases-tab.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515
createNumbersCollection,
1616
} from '../helpers/insert-data';
1717

18-
const INITIAL_DATABASE_NAMES = ['admin', 'config', 'local', 'test'];
18+
const INITIAL_DATABASE_NAMES = ['admin', 'local', 'test'];
1919

2020
describe('Instance databases tab', function () {
2121
let compass: Compass;

0 commit comments

Comments
 (0)