Skip to content

Commit d2951a4

Browse files
committed
Merge branch 'master' into retry-inplace
2 parents 7e44b5f + adb9ea6 commit d2951a4

File tree

8 files changed

+13
-11
lines changed

8 files changed

+13
-11
lines changed

.evergreen/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ tasks:
559559
- name: "release-python-linux"
560560
tags: ["release_python_tag"]
561561
run_on: ubuntu2004-large
562-
exec_timeout_secs: 216000 # 60 minutes (manylinux task is slow).
562+
exec_timeout_secs: 3600 # 60 minutes (manylinux task is slow).
563563
commands:
564564
- func: "fetch source"
565565
- func: "build python release"

.github/dependabot.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,8 @@ updates:
99
actions:
1010
patterns:
1111
- "*"
12-
assignees:
13-
- "@mongodb/dbx-python"
1412
# Python
1513
- package-ecosystem: "pip"
1614
directory: "/bindings/python"
1715
schedule:
1816
interval: "weekly"
19-
assignees:
20-
- "@mongodb/dbx-python"

.github/workflows/codeql-actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ jobs:
3737

3838
# Initializes the CodeQL tools for scanning.
3939
- name: Initialize CodeQL
40-
uses: github/codeql-action/init@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3
40+
uses: github/codeql-action/init@39edc492dbe16b1465b0cafca41432d857bdb31a # v3
4141
with:
4242
languages: actions
4343
build-mode: none
4444
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
4545
queries: security-extended
4646

4747
- name: Perform CodeQL Analysis
48-
uses: github/codeql-action/analyze@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3
48+
uses: github/codeql-action/analyze@39edc492dbe16b1465b0cafca41432d857bdb31a # v3
4949
with:
5050
category: "/language:actions"

.github/workflows/codeql-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3
45+
uses: github/codeql-action/init@39edc492dbe16b1465b0cafca41432d857bdb31a # v3
4646
with:
4747
languages: python
4848
build-mode: none
@@ -61,6 +61,6 @@ jobs:
6161
pip install dist/*.whl
6262
6363
- name: Perform CodeQL Analysis
64-
uses: github/codeql-action/analyze@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3
64+
uses: github/codeql-action/analyze@39edc492dbe16b1465b0cafca41432d857bdb31a # v3
6565
with:
6666
category: "/language:python"

.github/workflows/zizmor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919
with:
2020
persist-credentials: false
2121
- name: Setup Rust
22-
uses: actions-rust-lang/setup-rust-toolchain@9d7e65c320fdb52dcd45ffaa68deb6c02c8754d9 # v1
22+
uses: actions-rust-lang/setup-rust-toolchain@fb51252c7ba57d633bc668f941da052e410add48 # v1
2323
- name: Get zizmor
2424
run: cargo install zizmor
2525
- name: Run zizmor
2626
run: zizmor --format sarif . > results.sarif
2727
env:
2828
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
- name: Upload SARIF file
30-
uses: github/codeql-action/upload-sarif@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3
30+
uses: github/codeql-action/upload-sarif@39edc492dbe16b1465b0cafca41432d857bdb31a # v3
3131
with:
3232
sarif_file: results.sarif
3333
category: zizmor

CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@
55

66
# Python Bindings
77
bindings/python @mongodb/dbx-python
8+
9+
# GitHub actions (currently only used by Python Bindings)
10+
.github @mongodb/dbx-python

src/mongocrypt-ctx-encrypt.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2186,6 +2186,8 @@ _check_cmd_for_auto_encrypt(mongocrypt_binary_t *cmd, bool *bypass, char **targe
21862186
*bypass = true;
21872187
} else if (0 == strcmp(cmd_name, "updateSearchIndex")) {
21882188
*bypass = true;
2189+
} else if (0 == strcmp(cmd_name, "serverStatus")) {
2190+
*bypass = true;
21892191
}
21902192

21912193
/* database/client commands are ineligible. */

test/test-mongocrypt-ctx-encrypt.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -990,6 +990,7 @@ static void _test_encrypt_init_each_cmd(_mongocrypt_tester_t *tester) {
990990
_init_bypass(tester, "{'createSearchIndexes': 'coll' }");
991991
_init_bypass(tester, "{'dropSearchIndex': 'coll' }");
992992
_init_bypass(tester, "{'updateSearchIndex': 'coll' }");
993+
_init_bypass(tester, "{'serverStatus': 1 }");
993994
}
994995

995996
static void _test_encrypt_invalid_siblings(_mongocrypt_tester_t *tester) {

0 commit comments

Comments
 (0)