diff options
| author | Andrej Kozemcak <andrej.kozemcak@siemens.com> | 2026-03-10 07:50:48 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2026-03-17 13:25:20 -0700 |
| commit | 2273ed31cf01a2fb7b20ebe9b21d04256205a922 (patch) | |
| tree | 56a4be37e8dda84965abd95cdd3182d4f735aeb2 /meta-oe/recipes-devtools | |
| parent | 4f28b16eddbf31a06511669d4df0be42d4c874eb (diff) | |
| download | meta-openembedded-2273ed31cf01a2fb7b20ebe9b21d04256205a922.tar.gz | |
grpc: upgrade 1.76.0 -> 1.78.1
Removed patch included in this release
Changelogs
v1.78.1:
https://github.com/grpc/grpc/releases/tag/v1.78.1
v1.78.0:
https://github.com/grpc/grpc/releases/tag/v1.78.0
C++:
- adding address_sorting dep in naming test build
Signed-off-by: Andrej Kozemcak <andrej.kozemcak@siemens.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools')
| -rw-r--r-- | meta-oe/recipes-devtools/grpc/grpc/0001-build-add-missing-includes-41351.patch | 58 | ||||
| -rw-r--r-- | meta-oe/recipes-devtools/grpc/grpc_1.78.1.bb (renamed from meta-oe/recipes-devtools/grpc/grpc_1.76.0.bb) | 5 |
2 files changed, 2 insertions, 61 deletions
diff --git a/meta-oe/recipes-devtools/grpc/grpc/0001-build-add-missing-includes-41351.patch b/meta-oe/recipes-devtools/grpc/grpc/0001-build-add-missing-includes-41351.patch deleted file mode 100644 index bf1f22b906..0000000000 --- a/meta-oe/recipes-devtools/grpc/grpc/0001-build-add-missing-includes-41351.patch +++ /dev/null | |||
| @@ -1,58 +0,0 @@ | |||
| 1 | From a976f66ac7d1b9f43a3071e22b5014fcfeab04b3 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: "Mark D. Roth" <roth@google.com> | ||
| 3 | Date: Tue, 6 Jan 2026 10:09:45 -0800 | ||
| 4 | Subject: [PATCH] [build] add missing includes (#41351) | ||
| 5 | |||
| 6 | Fixes #41305. | ||
| 7 | |||
| 8 | Closes #41351 | ||
| 9 | |||
| 10 | COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/41351 from markdroth:add_missing_includes 223be6932adb00d085149c53167c1b0318745f6c | ||
| 11 | PiperOrigin-RevId: 852829597 | ||
| 12 | |||
| 13 | Upstream-Status: Backport [https://github.com/grpc/grpc/commit/d54219b508423f0a2ff6a0b98c16fb6dafd44b84] | ||
| 14 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 15 | --- | ||
| 16 | include/grpc/event_engine/memory_request.h | 2 ++ | ||
| 17 | src/core/channelz/v2tov1/property_list.cc | 1 + | ||
| 18 | src/core/util/glob.cc | 2 ++ | ||
| 19 | 3 files changed, 5 insertions(+) | ||
| 20 | |||
| 21 | diff --git a/include/grpc/event_engine/memory_request.h b/include/grpc/event_engine/memory_request.h | ||
| 22 | index 76bcbb2036..ad8cab842e 100644 | ||
| 23 | --- a/include/grpc/event_engine/memory_request.h | ||
| 24 | +++ b/include/grpc/event_engine/memory_request.h | ||
| 25 | @@ -17,6 +17,8 @@ | ||
| 26 | #include <grpc/support/port_platform.h> | ||
| 27 | #include <stddef.h> | ||
| 28 | |||
| 29 | +#include <string> | ||
| 30 | + | ||
| 31 | #include "absl/strings/string_view.h" | ||
| 32 | |||
| 33 | namespace grpc_event_engine { | ||
| 34 | diff --git a/src/core/channelz/v2tov1/property_list.cc b/src/core/channelz/v2tov1/property_list.cc | ||
| 35 | index 64bbb6307c..03367cce7c 100644 | ||
| 36 | --- a/src/core/channelz/v2tov1/property_list.cc | ||
| 37 | +++ b/src/core/channelz/v2tov1/property_list.cc | ||
| 38 | @@ -15,6 +15,7 @@ | ||
| 39 | #include "src/core/channelz/v2tov1/property_list.h" | ||
| 40 | |||
| 41 | #include <cstdint> | ||
| 42 | +#include <limits> | ||
| 43 | #include <optional> | ||
| 44 | #include <string> | ||
| 45 | |||
| 46 | diff --git a/src/core/util/glob.cc b/src/core/util/glob.cc | ||
| 47 | index 1b1c16e23d..22e54259f0 100644 | ||
| 48 | --- a/src/core/util/glob.cc | ||
| 49 | +++ b/src/core/util/glob.cc | ||
| 50 | @@ -12,6 +12,8 @@ | ||
| 51 | // See the License for the specific language governing permissions and | ||
| 52 | // limitations under the License. | ||
| 53 | |||
| 54 | +#include <algorithm> | ||
| 55 | + | ||
| 56 | #include "absl/strings/string_view.h" | ||
| 57 | |||
| 58 | namespace grpc_core { | ||
diff --git a/meta-oe/recipes-devtools/grpc/grpc_1.76.0.bb b/meta-oe/recipes-devtools/grpc/grpc_1.78.1.bb index 39c9fb98de..6739c659d3 100644 --- a/meta-oe/recipes-devtools/grpc/grpc_1.76.0.bb +++ b/meta-oe/recipes-devtools/grpc/grpc_1.78.1.bb | |||
| @@ -23,11 +23,10 @@ RDEPENDS:${PN}-dev:append:class-native = " ${PN}-compiler" | |||
| 23 | # Both dependencies are mutually exclusive | 23 | # Both dependencies are mutually exclusive |
| 24 | # RDEPENDS:${PN}-dev += "${PN}-compiler" | 24 | # RDEPENDS:${PN}-dev += "${PN}-compiler" |
| 25 | 25 | ||
| 26 | SRCREV = "f5ffb68d8a2fd603dff16287e90a4ac571e1fec6" | 26 | SRCREV = "5b6492ea90b2b867a6adad1b10a6edda28e860d1" |
| 27 | BRANCH = "v1.76.x" | 27 | BRANCH = "v1.78.x" |
| 28 | SRC_URI = "gitsm://github.com/grpc/grpc.git;protocol=https;branch=${BRANCH};tag=v${PV} \ | 28 | SRC_URI = "gitsm://github.com/grpc/grpc.git;protocol=https;branch=${BRANCH};tag=v${PV} \ |
| 29 | file://0001-cmake-Link-with-libatomic-on-rv32-rv64.patch \ | 29 | file://0001-cmake-Link-with-libatomic-on-rv32-rv64.patch \ |
| 30 | file://0001-build-add-missing-includes-41351.patch \ | ||
| 31 | " | 30 | " |
| 32 | 31 | ||
| 33 | inherit cmake pkgconfig | 32 | inherit cmake pkgconfig |
