Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into buffer-pool
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanReece committed Dec 12, 2024
2 parents 9bc7c1e + 26549d9 commit 783ed87
Show file tree
Hide file tree
Showing 27 changed files with 1,773 additions and 2,249 deletions.
5 changes: 0 additions & 5 deletions .evergreen/run-big-endian-test.sh

This file was deleted.

4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@

version: 2
updates:
- package-ecosystem: "github-actions" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "monthly"
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "6.9.0"
".": "6.10.1"
}
24 changes: 24 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,30 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [6.10.1](https://github.com/mongodb/js-bson/compare/v6.10.0...v6.10.1) (2024-11-27)


### Bug Fixes

* **NODE-6552:** remove cache and use toStringTag in type helpers ([#740](https://github.com/mongodb/js-bson/issues/740)) ([3ede13e](https://github.com/mongodb/js-bson/commit/3ede13e4ff551785af3d459d62c854605fe8b154))


### Performance Improvements

* **NODE-6450:** Lazy objectId hex string cache ([#722](https://github.com/mongodb/js-bson/issues/722)) ([7c37580](https://github.com/mongodb/js-bson/commit/7c37580c139608d7926d464efa2bb318877104ba))

## [6.10.0](https://github.com/mongodb/js-bson/compare/v6.9.0...v6.10.0) (2024-11-18)


### Features

* **NODE-6537:** add support for binary vectors ([#730](https://github.com/mongodb/js-bson/issues/730)) ([d7bdcec](https://github.com/mongodb/js-bson/commit/d7bdcec04349af697ead5655d14c4494f307b6a1))


### Bug Fixes

* **NODE-6536:** Binary.read never returns number[] and reads beyond content ([#727](https://github.com/mongodb/js-bson/issues/727)) ([f99fdfd](https://github.com/mongodb/js-bson/commit/f99fdfdb088ebfef115a9740ac4aed65fabf8a2a))

## [6.9.0](https://github.com/mongodb/js-bson/compare/v6.8.0...v6.9.0) (2024-10-15)


Expand Down
10 changes: 10 additions & 0 deletions etc/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM node:22 AS build

WORKDIR /bson
COPY . .

RUN rm -rf node_modules && npm install && npm test

FROM scratch

COPY --from=build /bson/docs/ /
Loading

0 comments on commit 783ed87

Please sign in to comment.