Skip to content

Commit 8e48bd1

Browse files
authored
Update NEWS and release process (#1687)
* specify platform for `snyk` target The target downloads an amd64 binary. Intended to fix an error if the target is run on arm64. * update NEWS for 1.27.5 * remove Homebrew steps
1 parent fd469de commit 8e48bd1

File tree

4 files changed

+23
-20
lines changed

4 files changed

+23
-20
lines changed

Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ create-silk-asset-group:
355355

356356

357357
snyk:
358-
FROM ubuntu:24.04
358+
FROM --platform=linux/amd64 ubuntu:24.04
359359
RUN apt-get update && apt-get -y install curl
360360
RUN curl --location https://github.com/snyk/cli/releases/download/v1.1291.1/snyk-linux -o /usr/local/bin/snyk
361361
RUN chmod a+x /usr/local/bin/snyk

NEWS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,18 @@ Deprecated:
2727

2828
* A future minor release plans to drop support for Visual Studio 2013.
2929

30+
libmongoc 1.27.5
31+
================
32+
33+
Fixes:
34+
35+
* Fix possible build error in environments where `bool` or `_Bool` is a macro.
36+
37+
Thanks to everyone who contributed to the development of this release.
38+
39+
* Kevin Albertson
40+
41+
3042
libmongoc 1.27.4
3143
================
3244

docs/dev/releasing.rst

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ process.
5050
- [ ] Update the EVG Project
5151
- [ ] Stop the Release Stopwatch (end time: HH:MM)
5252
- [ ] Record the Release
53-
- [ ] Homebrew Release
5453
- [ ] vcpkg
5554
- [ ] Conan
5655
@@ -533,24 +532,6 @@ details in the `C/C++ Release Info`__ sheet.
533532
__ https://docs.google.com/spreadsheets/d/1yHfGmDnbA5-Qt8FX4tKWC5xk9AhzYZx1SKF4AD36ecY/edit#gid=0
534533

535534

536-
Homebrew Release
537-
################
538-
539-
.. note::
540-
541-
This step requires a macOS machine. If you are not using macOS, ask in the
542-
``#dbx-c-cxx`` channel for someone to do this step on your behalf.
543-
544-
**If this is a stable release**, update `the mongo-c-driver homebew formula`__. Let
545-
`$ARCHIVE_URL` be the URL to the release tag's source archive on GitHub\ [#tar-url]_::
546-
547-
$ brew bump-formula-pr mongo-c-driver --url $ARCHIVE_URL
548-
549-
__ https://github.com/Homebrew/homebrew-core/blob/master/Formula/m/mongo-c-driver.rb
550-
551-
.. [#tar-url] For example, the tagged archive for ``1.25.0`` is at https://github.com/mongodb/mongo-c-driver/archive/refs/tags/1.25.0.tar.gz
552-
553-
554535
Linux Distribution Packages
555536
###########################
556537

src/libbson/NEWS

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
libbson 1.27.5
2+
==============
3+
4+
* Fix large string handling in `bson_append_utf8`.
5+
6+
Thanks to everyone who contributed to the development of this release.
7+
8+
* Roberto C. Sánchez
9+
10+
111
libbson 1.27.4
212
==============
313

0 commit comments

Comments
 (0)