Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mongodb/mongo-php-driver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.21.0
Choose a base ref
...
head repository: mongodb/mongo-php-driver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.x
Choose a head ref
  • 10 commits
  • 17 files changed
  • 5 contributors

Commits on Feb 28, 2025

  1. Back to -dev

    Signed-off-by: mongodb-dbx-release-bot[bot] <167856002+mongodb-dbx-release-bot[bot]@users.noreply.github.com>
    mongodb-dbx-release-bot[bot] committed Feb 28, 2025
    Copy the full SHA
    cdca8be View commit details
  2. 1.x is now 1.22.0dev

    alcaeus committed Feb 28, 2025
    Copy the full SHA
    5160a8c View commit details

Commits on Mar 13, 2025

  1. Copy the full SHA
    89c2be0 View commit details
  2. PHPC-2536: Remove run-ocsp-responder.sh (#1802)

    This was missed in 89c2be0
    jmikola authored Mar 13, 2025
    Copy the full SHA
    e0440f0 View commit details

Commits on Apr 9, 2025

  1. Copy the full SHA
    930cf0e View commit details
  2. Copy the full SHA
    8a0f3f7 View commit details

Commits on Apr 11, 2025

  1. Add CODEOWNERS for 1.21+ (#1810)

    With the new code ownership initiative, we're required to have ownership for all files in the repository. This adds the corresponding code ownership file from PHPLIB
    alcaeus authored Apr 11, 2025
    Copy the full SHA
    741e691 View commit details
  2. Copy the full SHA
    dab02e5 View commit details
  3. PHPC-2537 Update to newer Ubuntu version in GitHub Actions workflows (#…

    …1814)
    
    * PHPC-2537 Update to newer Ubuntu version in GitHub Actions workflows
    
    * Fix clang-format script for ubuntu 24.04
    GromNaN authored Apr 11, 2025
    Copy the full SHA
    94b1dd1 View commit details

Commits on Apr 14, 2025

  1. Copy the full SHA
    0629d11 View commit details
1 change: 1 addition & 0 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
@@ -23,6 +23,7 @@ post:
- func: "upload test results"
- func: "stop mongo-orchestration"
- func: "stop load balancer"
- func: "stop OCSP responder"
- func: "cleanup"

# These aliases define the default variant/tasks to test for pull requests and merge queue
20 changes: 13 additions & 7 deletions .evergreen/config/functions.yml
Original file line number Diff line number Diff line change
@@ -192,17 +192,23 @@ functions:
${PREPARE_SHELL}
bash ${DRIVERS_TOOLS}/.evergreen/stop-orchestration.sh
"run OCSP responder":
- command: shell.exec
"start OCSP responder":
- command: subprocess.exec
params:
binary: bash
background: true
include_expansions_in_env:
- TEST_COLUMN
- CERT_TYPE
- USE_DELEGATE
shell: bash
- SERVER_TYPE
- OCSP_ALGORITHM
args:
- ${DRIVERS_TOOLS}/.evergreen/ocsp/setup.sh

"stop OCSP responder":
- command: shell.exec
params:
script: |
${PREPARE_SHELL}
bash ${PROJECT_DIRECTORY}/.evergreen/run-ocsp-responder.sh
bash ${DRIVERS_TOOLS}/.evergreen/ocsp/teardown.sh
"run tests":
- command: shell.exec
Loading