- Jun 13, 2024
-
-
dependabot[bot] authored
Bumps [tornado](https://github.com/tornadoweb/tornado) from 6.3.2 to 6.4.1. - [Changelog](https://github.com/tornadoweb/tornado/blob/master/docs/releases.rst) - [Commits](https://github.com/tornadoweb/tornado/compare/v6.3.2...v6.4.1 ) --- updated-dependencies: - dependency-name: tornado dependency-type: indirect ... Signed-off-by:
dependabot[bot] <support@github.com> Co-authored-by:
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
- Jun 12, 2024
-
-
Laurel authored
CDRIVER-5303 add code example for projection with aggregation expressions
-
vector-of-bool authored
* New Earthly targets for release artifacts - +release-archive generates an archive of the repository that contains the augmented SBOM downloaded from Silk - +sign-file can sign arbitrary files - +signed-release generates release artifacts using +release-archive and +sign-file to create a release archive and detached signature. * Add documentation on using Earthly and the release targets * Document new release steps for a signed release
-
Julia Garland authored
Optimized trace toggle in mongoc-trace-private.h by updating if (MONGOC_TRACE_ENABLED) to if (MONGOC_TRACE_ENABLED && gLogTrace) and removing static from gLogTrace.
-
- Jun 11, 2024
-
-
Isabel Atkinson authored
-
- Jun 08, 2024
-
-
Julia Garland authored
-
Roberto C. Sánchez authored
-
Julia Garland authored
* Added licensing headers * Channged copyright start to project inception 2009 * Added commas
-
- Jun 07, 2024
-
-
vector-of-bool authored
-
dependabot[bot] authored
updated-dependencies: - dependency-name: requests dependency-type: indirect ... Signed-off-by:
dependabot[bot] <support@github.com> Co-authored-by:
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
dependabot[bot] authored
Bumps [pydantic](https://github.com/pydantic/pydantic) from 1.10.4 to 1.10.13. - [Release notes](https://github.com/pydantic/pydantic/releases) - [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md) - [Commits](https://github.com/pydantic/pydantic/compare/v1.10.4...v1.10.13 ) --- updated-dependencies: - dependency-name: pydantic dependency-type: direct:production ... Signed-off-by:
dependabot[bot] <support@github.com> Co-authored-by:
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
vector-of-bool authored
-
- Jun 06, 2024
-
-
vector-of-bool authored
* Add a script and Earthly target to create a Silk asset group * Define new EVG tasks: - Add a "Miscellaneous" "variant" to group one-off tasks that don't vary. - Add a "create-silk-asset-group" task that creates a Silk asset group for the current branch if it does not already exist. * Ignore a `.secret` file in the repo directory * Run the asset group creation on all builds
-
- Jun 05, 2024
-
-
Adrian Dole authored
-
Kevin Albertson authored
-
- Jun 04, 2024
-
-
Kevin Albertson authored
Check for the environment variable `MONGOC_EXPERIMENTAL_SRV_PREFER_TCP`. Option is documented as experimental and subject to change. This option is not portable among drivers. This option does not apply to the implementation using `res_search`
-
Laurel authored
CDRIVER-4162 remove remaining solaris workarounds
-
Adrian Dole authored
-
vector-of-bool authored
New docs pages for project developers: - Can be rendered and viewed with `make -C docs/dev serve`. - Imported much of the C driver release process instructions.
-
- Jun 03, 2024
-
-
Roberto C. Sánchez authored
* Prevent integer overflow Coverity CID: 138996 Co-authored-by:Ezra Chung <88335979+eramongodb@users.noreply.github.com>
-
- May 31, 2024
-
-
Roberto C. Sánchez authored
-
Kevin Albertson authored
* add regression test: check connection counts of servers removed by SRV polling * prune clients on push Track last known server IDs in the client pool. Before doing an expensive prune, do a cheaper check to see if server IDs changed. * test direct topology changes Servers may be removed from the topology in other scenarios aside from SRV polling (e.g. during SDAM) * document expected use of pop/push --------- Co-authored-by:Ezra Chung <88335979+eramongodb@users.noreply.github.com>
-
- May 30, 2024
-
-
Roman-Koshelev authored
Propagate error in `bson_iter_visit_all` when initializing subdocument with `bson_init_static` fails.
-
- May 22, 2024
-
-
Roberto C. Sánchez authored
-
Roberto C. Sánchez authored
-
Roberto C. Sánchez authored
* fix debian-package-build task, use debian12-latest-small distro * don't try to install _images dir which is no longer present Follow-up for 151975f9
-
Kevin Albertson authored
Fixes local rendering of libbson link
-
- May 21, 2024
-
-
Roberto C. Sánchez authored
* sync RPM spec file from downstream * use F40 for RPM build
-
- May 18, 2024
-
-
Kevin Albertson authored
* update config generator scripts copy `7.0` tasks to `8.0` * update legacy config generator scripts copy `7.0` tasks to `8.0` * regenerate evergreen config Pulls in prior changes. Removes `-x` from `sh` invocation. * regenerate evergreen config * skip `/bulkwrite/server_id/on_retry` if no retryable writes To address failure observed on a "nossl" task * add API Version to `/crud/prose_test_5` To address observed failure in `test-versioned-api-8.0` task
-
Kevin Albertson authored
* deprecate `*_hint` functions for newly added `*_server_id` functions * call `*_server_id` functions from `*_hint` * update calls to use new `*_server_id` functions * update docs * update NEWS
-
- May 17, 2024
-
-
Kevin Albertson authored
* document `mongoc_bulkwrite_t` * rename `set_hint_opt` to `set_bson_value_opt` To reuse for the `comment` option * use `bson_value_t` for `comment`, not `bson_t` Matches the spec, and existing C driver representation of `comment` for other functions. --------- Co-authored-by:Roberto C. Sánchez <roberto@connexer.com>
-
- May 16, 2024
-
-
Roman-Koshelev authored
-
Kevin Albertson authored
* fix comment in `_mongoc_write_opmsg` This is a drive-by fix to fix the referenced payload numbers. * quote key in match error * propagate error for numeric mismatch Otherwise, if the type mismatches, the test runner aborts with an error: "expected int64, int32, or double [...]" that does not identify the field. * add `ASSERT_EQUAL_BSON` To do exact BSON matches * align print on match failure To ease reading error message * implement client bulk write include some tests of basic usage and libmongoc-specific behavior. Specification and prose tests test driver-agnostic behavior. * add example use * add prose tests * add specification tests * support string `w` URI option in test runner To support `w=majority` * update unified test runner * add `BSON_OPTIONAL_PARAM` macro * replace `BSON_ASSERT (X || true)` with `BSON_OPTIONAL_PARAM (X)`
-
Kevin Albertson authored
* libmongoc: remove links to content moved to mongodb.com The API and APM docs are linked to from mongodb.com. * libmongoc: remove no-longer-referenced files * libmongoc: remove `genindex` The index page only shows one entry for `mongoc_kms_credentials_provider_callback_fn`. * libmongoc: link to `MongoDB C Driver` page * libmongoc: fix links to `queryable-encryption` * libmongoc: fix links to `authentication` * libmongoc: fix links to `bulk` * libmongoc: fix links to `client-side-field-level-encryption` * libmongoc: fix links to `configuring_tls` * libmongoc: fix links to `connection-pooling` * libmongoc: fix links to `in-use-encryption` * libmongoc: fix links to `manage-collection-indexes` * libmongoc: fix links to ``setting_collation_order` * libmongoc: fix links to `tutorial_crud_operations` * libmongoc: fix link to `bulk_operation_bypassing_document_validation` * libmongoc: fix links to `cursors_tailable` * libbson: remove links to content moved to mongodb.com The API docs are linked to from mongodb.com. * libbson: link to `MongoDB C Driver` page * libbson: remove no-longer-referenced files * libbson: fix links to `errors` * libmongoc: fix links to `bson:errors` * libmongoc: fix links to `bson:lifetimes` * homepage: link to `MongoDB C Driver` page * libmongoc: remove no-longer-used images * libmongoc: remove unreferenced include * update links in README * update link in CONTRIBUTING.md * fix links to community forums * add missing "the" Co-authored-by:
Roberto C. Sánchez <roberto@connexer.com> * fix `setting_collation_order_` links Co-authored-by:
Roberto C. Sánchez <roberto@connexer.com> * fix `setting_collation_order_` in `generate-opts.py` --------- Co-authored-by:
Roberto C. Sánchez <roberto@connexer.com>
-
- May 08, 2024
-
-
dependabot[bot] authored
Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.2 to 3.1.4. - [Release notes](https://github.com/pallets/jinja/releases) - [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst) - [Commits](https://github.com/pallets/jinja/compare/3.1.2...3.1.4 ) --- updated-dependencies: - dependency-name: jinja2 dependency-type: direct:production ... Signed-off-by:
dependabot[bot] <support@github.com> Co-authored-by:
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
dependabot[bot] authored
Bumps [pydantic](https://github.com/pydantic/pydantic) from 1.10.7 to 1.10.13. - [Release notes](https://github.com/pydantic/pydantic/releases) - [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md) - [Commits](https://github.com/pydantic/pydantic/compare/v1.10.7...v1.10.13 ) --- updated-dependencies: - dependency-name: pydantic dependency-type: indirect ... Signed-off-by:
dependabot[bot] <support@github.com> Co-authored-by:
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
Kevin Albertson authored
-
- May 07, 2024
-
-
dependabot[bot] authored
* Bump idna from 3.4 to 3.7 Bumps [idna](https://github.com/kjd/idna) from 3.4 to 3.7. - [Release notes](https://github.com/kjd/idna/releases) - [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst) - [Commits](https://github.com/kjd/idna/compare/v3.4...v3.7 ) --- updated-dependencies: - dependency-name: idna dependency-type: indirect ... Signed-off-by:
dependabot[bot] <support@github.com> * Bump Poetry and idna version --------- Signed-off-by:
dependabot[bot] <support@github.com> Co-authored-by:
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by:
vector-of-bool <vectorofbool@gmail.com>
-
vector-of-bool authored
Add files and an Earthly target for an SBOM-lite via SilkBomb
-
- May 04, 2024
-
-
Roberto C. Sánchez authored
Co-authored-by:Kevin Albertson <kevin.albertson@10gen.com>
-