Skip to content

Commit 243f819

Browse files
Merge remote-tracking branch 'origin/beta-releases' into ga-releases
2 parents 05d0463 + 218cc7f commit 243f819

File tree

368 files changed

+16829
-12193
lines changed

Some content is hidden

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

368 files changed

+16829
-12193
lines changed

.evergreen/functions.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ variables:
4141
# drop support for some older linux platforms, so we are keeping them out of
4242
# sync for now
4343
# TODO: https://jira.mongodb.org/browse/COMPASS-6915
44-
NODE_JS_VERSION: '16.17.0'
44+
NODE_JS_VERSION: '16.20.2'
4545
NPM_VERSION: '8.19.4'
4646
# secrets
4747
HADRON_METRICS_INTERCOM_APP_ID: ${metrics_intercom_app_id}
@@ -77,6 +77,8 @@ variables:
7777
EVERGREEN_BUCKET_NAME: mciuploads
7878
EVERGREEN_BUCKET_KEY_PREFIX: ${project}/${revision}_${revision_order_id}
7979
MONGODB_RUNNER_LOG_DIR: ${workdir}/src/.testserver/
80+
E2E_TESTS_ATLAS_CS_WITHOUT_SEARCH: ${e2e_tests_atlas_cs_without_search}
81+
E2E_TESTS_ATLAS_CS_WITH_SEARCH: ${e2e_tests_atlas_cs_with_search}
8082

8183
# This is here with the variables because anchors aren't supported across includes
8284
post:
@@ -560,7 +562,11 @@ functions:
560562
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
561563
npm config list
562564
echo "Publishing packages as $(npm whoami)"
563-
git update-index --assume-unchanged .npmrc
565+
npm run version-packages-next
566+
# unstage after lerna staged version
567+
git reset
568+
# mark files as unchanged so that lerna can publish
569+
git update-index --assume-unchanged $(git diff --name-only HEAD)
564570
bash ".evergreen/retry-with-backoff.sh" npm run publish-packages-next
565571
fi
566572

.github/workflows/authors-and-third-party-notices.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- uses: actions/setup-node@v2
2727
with:
28-
node-version: ^16.17.0
28+
node-version: ^16.20.2
2929
cache: 'npm'
3030

3131
- name: Install npm@8

.github/workflows/bump-packages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
2727
- uses: actions/setup-node@v2
2828
with:
29-
node-version: ^16.17.0
29+
node-version: ^16.20.2
3030
cache: 'npm'
3131

3232
- name: Install [email protected]

.github/workflows/publish-compass.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Node.js Environment
2323
uses: actions/setup-node@v2
2424
with:
25-
node-version: ^16.17.0
25+
node-version: ^16.20.2
2626
cache: 'npm'
2727

2828
- name: Install npm@8

.github/workflows/publish-packages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: "Use Node.js 14"
3535
uses: actions/setup-node@v2
3636
with:
37-
node-version: ^16.17.0
37+
node-version: ^16.20.2
3838

3939
- name: Install npm@8
4040
run: npm install -g npm@8

.github/workflows/update-electron.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
2828
- uses: actions/setup-node@v2
2929
with:
30-
node-version: ^16.17.0
30+
node-version: ^16.20.2
3131
cache: 'npm'
3232

3333
- name: Install [email protected]

THIRD-PARTY-NOTICES.md

Lines changed: 1226 additions & 754 deletions
Large diffs are not rendered by default.

configs/eslint-config-compass/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mongodb-js/eslint-config-compass",
3-
"version": "1.0.8",
3+
"version": "1.0.9",
44
"description": "Shared Compass eslint configuration",
55
"license": "SSPL",
66
"main": "index.js",
@@ -16,7 +16,7 @@
1616
"@babel/core": "^7.21.4",
1717
"@babel/eslint-parser": "^7.14.3",
1818
"@mongodb-js/eslint-config-devtools": "^0.9.9",
19-
"@mongodb-js/eslint-plugin-compass": "^1.0.8",
19+
"@mongodb-js/eslint-plugin-compass": "^1.0.9",
2020
"@typescript-eslint/eslint-plugin": "^5.59.0",
2121
"@typescript-eslint/parser": "^5.59.0",
2222
"eslint-config-prettier": "^8.3.0",

configs/eslint-plugin-compass/package.json

Lines changed: 2 additions & 2 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": "1.0.8",
16+
"version": "1.0.9",
1717
"repository": {
1818
"type": "git",
1919
"url": "https://github.com/mongodb-js/compass.git"
@@ -37,7 +37,7 @@
3737
"reformat": "npm run prettier -- --write . && npm run eslint . --fix"
3838
},
3939
"devDependencies": {
40-
"@mongodb-js/mocha-config-compass": "^1.3.0",
40+
"@mongodb-js/mocha-config-compass": "^1.3.1",
4141
"@mongodb-js/prettier-config-compass": "^1.0.1",
4242
"depcheck": "^1.4.1",
4343
"eslint": "^7.25.0",

configs/mocha-config-compass/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mongodb-js/mocha-config-compass",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "Shared mocha mocha configuration for Compass packages",
55
"license": "SSPL",
66
"main": "index.js",

0 commit comments

Comments
 (0)