Skip to content

Commit ad8e2ff

Browse files
committed
Merge remote-tracking branch 'origin/main' into 1.32-releases
2 parents 4a80207 + c5b0910 commit ad8e2ff

File tree

357 files changed

+11829
-9304
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

357 files changed

+11829
-9304
lines changed

.depalignrc.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@
133133
"style-loader": ["^3.2.1"],
134134
"postcss-loader": ["^6.1.1"],
135135
"node-loader": ["^2.0.0"],
136-
"less-loader": ["^10.0.1"]
136+
"less-loader": ["^10.0.1"],
137+
"babel-loader": ["^7.1.5"],
138+
"@babel/core": ["7.16.0"]
137139
}
138140
}

.depcheckrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ ignores:
1010
# bumped higher than the version that breaks depcheck package
1111
- '@babel/core'
1212
- '@babel/parser'
13+
- 'babel-loader'
1314
# npm picks up the node-gyp installation in this repository rather than the
1415
# one it ships with, so we install one of our own to get the version right
1516
# (because we need one with vscode 2022 support for github actions CI)

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,4 @@ Rohan Antony <[email protected]>
6363
6464
Abraham Egnor <[email protected]>
6565
Preston Vasquez <[email protected]>
66+
Aleksandr Rudo <[email protected]>

THIRD-PARTY-NOTICES.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The following third-party software is used by and included in **compass**.
2-
This document was automatically generated on Tue Jun 21 2022.
2+
This document was automatically generated on Sun Jul 10 2022.
33

44
## List of dependencies
55

@@ -74,7 +74,7 @@ Package|Version|License
7474
**[safe-buffer](#952cf236ee56e7de5ea7e772caf3e256866f9dbdffc492539c48cd8c15ac9674)**|5.2.1|MIT
7575
**[safe-buffer](#115052870841b125f6e9deb1b800b99ed9c660f269050eafb32c84bdd9211f12)**|5.1.2|MIT
7676
**[select](#12d30053a00882385c42a50004536696d477e8e694b047d6d39513947e5a39e9)**|1.1.2|MIT
77-
**[semver](#e2f1c7bd615a3b61317d37fe215dc55bcd042a778ca15ab45bda8d9c8c39d54e)**|7.3.5|ISC
77+
**[semver](#4bed5cd5bcb541cb0c5c45e33f4b082818b19f6e916d1badfad14f9d3fb5132d)**|7.3.7|ISC
7878
**[semver](#e166af9700b507cf6e45c57af6bf29f9ba7059e4535e65fac0f3d5c37970544d)**|5.7.1|ISC
7979
**[set-blocking](#d10823126ec31b1e665e321d110e1fde8413f70e2df17b24b0c71c43fe2c0558)**|2.0.0|ISC
8080
**[signal-exit](#5ad551060d44370794e770309e198719e94f939e46a3ea537b776c9c4fdad9e4)**|3.0.7|ISC
@@ -4137,8 +4137,8 @@ Authors:
41374137
License tags: MIT
41384138

41394139

4140-
<a id="e2f1c7bd615a3b61317d37fe215dc55bcd042a778ca15ab45bda8d9c8c39d54e"></a>
4141-
### [semver](https://www.npmjs.com/package/semver) (version 7.3.5)
4140+
<a id="4bed5cd5bcb541cb0c5c45e33f4b082818b19f6e916d1badfad14f9d3fb5132d"></a>
4141+
### [semver](https://www.npmjs.com/package/semver) (version 7.3.7)
41424142
<!-- initially found at node_modules/semver -->
41434143
> The semantic version parser used by npm.
41444144
@@ -4164,6 +4164,9 @@ License files:
41644164
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
41654165
41664166

4167+
Authors:
4168+
* GitHub Inc.
4169+
41674170

41684171
<a id="e166af9700b507cf6e45c57af6bf29f9ba7059e4535e65fac0f3d5c37970544d"></a>
41694172
### [semver](https://www.npmjs.com/package/semver) (version 5.7.1)

configs/eslint-config-compass/index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ const tsRules = {
1818
'error',
1919
{ prefer: 'type-imports' },
2020
],
21+
// Newly converted plugins use `any` quite a lot, we can't enable the rule,
22+
// but we can warn so we can eventually address this
23+
'@typescript-eslint/no-unsafe-argument': 'warn',
2124
};
2225

2326
const reactConfigurations = [
@@ -34,6 +37,8 @@ const testRules = {
3437
'mocha/no-setup-in-describe': 'off',
3538
'@typescript-eslint/no-explicit-any': 'off',
3639
'@typescript-eslint/no-empty-function': 'off',
40+
'@typescript-eslint/no-unsafe-argument': 'off',
41+
'@typescript-eslint/restrict-template-expressions': 'off',
3742
};
3843

3944
const javascriptParserOptions = {

configs/eslint-config-compass/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mongodb-js/eslint-config-compass",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"description": "Shared Compass eslint configuration",
55
"license": "SSPL",
66
"main": "index.js",
@@ -15,9 +15,9 @@
1515
"dependencies": {
1616
"@babel/core": "^7.14.3",
1717
"@babel/eslint-parser": "^7.14.3",
18-
"@mongodb-js/eslint-plugin-compass": "^0.2.0",
19-
"@typescript-eslint/eslint-plugin": "^4.28.4",
20-
"@typescript-eslint/parser": "^4.28.4",
18+
"@mongodb-js/eslint-plugin-compass": "^0.3.0",
19+
"@typescript-eslint/eslint-plugin": "^5.30.5",
20+
"@typescript-eslint/parser": "^5.30.5",
2121
"eslint-config-prettier": "^8.3.0",
2222
"eslint-plugin-filename-rules": "^1.2.0",
2323
"eslint-plugin-jsx-a11y": "^6.4.1",
@@ -26,7 +26,7 @@
2626
"eslint-plugin-react-hooks": "^4.2.0"
2727
},
2828
"devDependencies": {
29-
"prettier": "2.3.2"
29+
"prettier": "^2.7.1"
3030
},
3131
"scripts": {
3232
"check": "npm run lint",

configs/eslint-plugin-compass/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"email": "[email protected]"
1414
},
1515
"homepage": "https://github.com/mongodb-js/compass",
16-
"version": "0.2.0",
16+
"version": "0.3.0",
1717
"repository": {
1818
"type": "git",
1919
"url": "https://github.com/mongodb-js/compass.git"
@@ -37,12 +37,12 @@
3737
"reformat": "npm run prettier -- --write ."
3838
},
3939
"devDependencies": {
40-
"@mongodb-js/mocha-config-compass": "^0.10.0",
40+
"@mongodb-js/mocha-config-compass": "^0.11.0",
4141
"@mongodb-js/prettier-config-compass": "^0.5.0",
4242
"depcheck": "^1.4.1",
4343
"eslint": "^7.25.0",
4444
"mocha": "^8.4.0",
4545
"nyc": "^15.1.0",
46-
"prettier": "2.3.2"
46+
"prettier": "^2.7.1"
4747
}
4848
}

configs/mocha-config-compass/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "@mongodb-js/mocha-config-compass",
3-
"version": "0.10.0",
3+
"version": "0.11.0",
44
"description": "Shared mocha mocha configuration for Compass packages",
55
"license": "SSPL",
66
"main": "index.js",
77
"devDependencies": {
88
"@mongodb-js/prettier-config-compass": "^0.5.0",
9-
"prettier": "2.3.2"
9+
"prettier": "^2.7.1"
1010
},
1111
"scripts": {
1212
"prettier": "prettier",
@@ -32,6 +32,6 @@
3232
"global-jsdom": "^8.3.0",
3333
"identity-obj-proxy": "^3.0.0",
3434
"sinon-chai": "^3.7.0",
35-
"ts-node": "^10.4.0"
35+
"ts-node": "^10.8.2"
3636
}
3737
}

configs/prettier-config-compass/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"license": "SSPL",
66
"main": "index.json",
77
"peerDependencies": {
8-
"prettier": "2.3.2"
8+
"prettier": "^2.7.1"
99
},
1010
"devDependencies": {
11-
"prettier": "2.3.2"
11+
"prettier": "^2.7.1"
1212
},
1313
"scripts": {
1414
"check": "npm run lint",

configs/tsconfig-compass/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"devDependencies": {
1414
"@mongodb-js/prettier-config-compass": "^0.5.0",
15-
"prettier": "2.3.2"
15+
"prettier": "^2.7.1"
1616
},
1717
"scripts": {
1818
"check": "npm run lint",

0 commit comments

Comments
 (0)