@mongosh/autocomplete 3.2.0 → 3.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/AUTHORS CHANGED
@@ -15,3 +15,4 @@ Nate Eagleson <nate@nateeag.com>
15
15
  pulkitkalra-mdb <156152710+pulkitkalra-mdb@users.noreply.github.com>
16
16
  Gagik Amaryan <me@gagik.co>
17
17
  mongodb-devtools-bot[bot] <189715634+mongodb-devtools-bot[bot]@users.noreply.github.com>
18
+ Ubuntu <ubuntu@ip-10-0-5-160.ec2.internal>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mongosh/autocomplete",
3
- "version": "3.2.0",
3
+ "version": "3.4.0",
4
4
  "description": "MongoDB Shell Autocomplete Package",
5
5
  "homepage": "https://github.com/mongodb-js/mongosh",
6
6
  "license": "Apache-2.0",
@@ -44,8 +44,8 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "@mongodb-js/mongodb-constants": "^0.10.1",
47
- "@mongosh/shell-api": "3.2.0",
47
+ "@mongosh/shell-api": "3.4.0",
48
48
  "semver": "^7.5.4"
49
49
  },
50
- "gitHead": "032d3b89b55f9ddeac19afad76e7c9218a4a83f2"
50
+ "gitHead": "468893e60021bc9fa68288ef0db7646f8e87fe70"
51
51
  }
package/src/index.spec.ts CHANGED
@@ -818,8 +818,8 @@ describe('completer.completer', function () {
818
818
  ]);
819
819
  });
820
820
 
821
- it('does not complete unsupported methods like db.test.renameCollection', async function () {
822
- const i = 'db.test.renameC';
821
+ it('does not complete unsupported methods like db.test.compactStructuredEncryptionData', async function () {
822
+ const i = 'db.test.compactS';
823
823
  expect(await completer(apiStrictParams, i)).to.deep.equal([[], i]);
824
824
  });
825
825