This repository has been archived by the owner on Sep 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
fix(deps): update grpc packages #63
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/grpc-packages
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
2 times, most recently
from
August 3, 2022 23:10
3068737
to
1a5c83e
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
from
August 9, 2022 06:35
1a5c83e
to
4095f33
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
from
August 21, 2022 22:04
4095f33
to
d41d0d0
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
3 times, most recently
from
September 27, 2022 07:20
9de1bf1
to
e0d12f9
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
from
October 14, 2022 00:02
e0d12f9
to
45fe8c2
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
3 times, most recently
from
October 22, 2022 23:12
9bc614d
to
7ccf42a
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
from
November 24, 2022 07:04
7ccf42a
to
f28ff9c
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
4 times, most recently
from
December 27, 2022 06:29
43d372d
to
147e51a
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
10 times, most recently
from
March 29, 2023 05:50
0fd2791
to
dde9a41
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
from
March 31, 2023 19:12
dde9a41
to
8c75a25
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
from
December 23, 2023 04:46
b18aa2c
to
e9c5b77
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
2 times, most recently
from
January 6, 2024 06:59
78ec30d
to
50eab3e
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
3 times, most recently
from
January 27, 2024 00:54
56c59cd
to
fd282a7
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
from
February 8, 2024 16:39
fd282a7
to
fe59e54
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
4 times, most recently
from
February 22, 2024 04:24
2d3fa6c
to
0c510ea
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
from
February 29, 2024 02:05
0c510ea
to
0cefd13
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
from
March 29, 2024 01:28
0cefd13
to
0ab33c1
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
2 times, most recently
from
April 18, 2024 01:09
623e6ef
to
2c6f03d
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
4 times, most recently
from
May 2, 2024 11:20
8843ba6
to
e5dd2be
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
from
May 5, 2024 10:49
e5dd2be
to
8fa48f2
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
2 times, most recently
from
May 19, 2024 20:16
566fa63
to
222c25c
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
5 times, most recently
from
July 9, 2024 17:15
5d0a442
to
a652cf1
Compare
renovate
bot
force-pushed
the
renovate/grpc-packages
branch
from
September 2, 2024 22:05
a652cf1
to
6b04c96
Compare
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.10
->0.13
0.10
->0.13
0.7
->0.12
0.7
->0.12
0.5
->0.12
Release Notes
tokio-rs/prost (prost)
v0.13.1
Compare Source
PROST! is a Protocol Buffers implementation for the Rust Language.
prost
generates simple, idiomatic Rust code fromproto2
andproto3
files.Bug fixes
v0.13.0
Compare Source
note: this version was yanked in favor of 0.13.1
PROST! is a Protocol Buffers implementation for the Rust Language.
prost
generates simple, idiomatic Rust code fromproto2
andproto3
files.This major update brings new features and fixes:
Breaking changes
derive Copy trait for messages where possible (#950)
prost-build
will automatically derivetrait Copy
for some messages. If you manually implementCopy
you should remove your implementation.Change generated functions signatures to remove type parameters (#1045)
The function signature of
trait Message
is changed to useimpl Buf
instead of a named generic type. If you implementtrait Message
, you should change the function signature.Lightweight error value in TryFrom for enums (#1010)
When a
impl TryFrom<i32>
is generated byprost
derive macros, it will now return the error typeUnknownEnumValue
instead ofDecodeError
. The new error can be used to retreive the integer value that failed to convert.Features
fix: Only touch include file if contents is changed (#1058)
Most generated files are untouched when the contents doesn't change. Use the same mechanism for include file as well.
Dependencies
Documentation
Internal
v0.12.6
Compare Source
PROST! is a Protocol Buffers implementation for the Rust Language.
prost
generates simple, idiomatic Rust code fromproto2
andproto3
files.This patch update fixes a regression:
error_message_protoc_not_found
,protoc_from_env
&protoc_include_from_env
(#1063)v0.12.5
Compare Source
PROST! is a Protocol Buffers implementation for the Rust Language.
prost
generates simple, idiomatic Rust code fromproto2
andproto3
files.This patch update brings new fixes:
Self
after stripping enum type prefix (#998)Documentation
Internal
Syntax
to a separate file (#1029)CodeGenerator::boxed
method (#1019)BytesType and MapType
into acollections
module. (#1030)Config
andModule
into a separate module and files (#1020)taplo
(#1034)v0.12.4
Compare Source
PROST! is a Protocol Buffers implementation for the Rust Language.
prost
generates simple, idiomatic Rust code fromproto2
andproto3
files.This patch update brings new features and fixes:
prost-derive
toderive
(#992)Dependencies
Documentation
Internal
v0.12.3
Compare Source
PROST! is a Protocol Buffers implementation for the Rust Language.
prost
generates simple, idiomatic Rust code fromproto2
andproto3
files.This patch updates brings a few new fixes:
v0.12.2
Compare Source
PROST! is a Protocol Buffers implementation for the Rust Language.
prost
generates simple, idiomatic Rust code fromproto2
andproto3
files.This patch updates brings a few new features and fixes:
v0.12.1
Compare Source
v0.12.0
Compare Source
PROST! is a Protocol Buffers implementation for the Rust Language.
prost
generates simple, idiomatic Rust code fromproto2
andproto3
files.This patch updates brings a few new features and fixes:
syn
to version 2TryFrom<i32>
for enumsAny
andName
impl/traits.v0.11.9
Compare Source
PROST! is a Protocol Buffers implementation for the Rust Language.
prost
generates simple, idiomatic Rust code fromproto2
andproto3
files.This patch updates brings a few new features and fixes:
Config::boxed
(#802)v0.11.8
Compare Source
PROST! is a Protocol Buffers implementation for the Rust Language.
prost
generates simple, idiomatic Rust code fromproto2
andproto3
files.This patch updates brings a few new features and fixes:
prost-types
0.11.7 was yanked due to the above unintentional semver breakage.v0.11.7
Compare Source
v0.11.6
Compare Source
PROST! is a Protocol Buffers implementation for the Rust Language.
prost
generates simple, idiomatic Rust code fromproto2
andproto3
files.This patch updates brings a few new features and fixes:
v0.11.5
Compare Source
PROST! is a Protocol Buffers implementation for the Rust Language.
prost
generates simple, idiomatic Rust code fromproto2
andproto3
files.This patch updates brings a few new features and fixes:
v0.11.3
Compare Source
PROST! is a Protocol Buffers implementation for the Rust Language.
prost
generates simple, idiomatic Rust code fromproto2
andproto3
files.This patch updates brings a few new features and fixes:
log
to print error logs.v0.11.2
Compare Source
PROST! is a Protocol Buffers implementation for the Rust Language.
prost
generates simple, idiomatic Rust code fromproto2
andproto3
files.This patch updates brings a few new features and fixes:
protoc
sourcing instructions in error messages.Clone
toService
types.v0.11.0
Compare Source
PROST! is a Protocol Buffers implementation for the Rust Language.
prost
generates simple, idiomatic Rust code fromproto2
andproto3
files.Relase 0.11 brings a few breaking changes and changes to how prost sources protoc.
prost-build
now requiresprotoc
to be available in the path or setvia the
PROTOC
env var.prost-types
now contains newTimestamp
/Duration
FromStr
implementations.1.56
and all crates have been moved to edition 2021Notible changes that are not breaking:
prost-build
now has acleanup-markdown
feature for cleaining upcode blocks from protobuf files so that they work under rustdoc tests.
prost-build
now generatesas_str_name
for message types.hyperium/tonic (tonic)
v0.12.2
Compare Source
Features
Bug Fixes
v0.12.1
Compare Source
Bug Fixes
v0.12.0
Compare Source
This breaking release updates tonic to the hyper
1.0
ecosystem and also updatesto prost
v0.13.0
.Features
Bug Fixes
BREAKING CHANGES
tonic
and crates updated to hyper 1.0 (#1670)tonic
and crates updated to prost 0.13 (#1779)tonic_reflection::server
is updated to use the generatedtonic_reflection::pb::v1
code.v0.11.0
Compare Source
BREAKING CHANGES:
NamedService
from thetransport
module, please import it viatonic::server::NamedService
.1.70
.Features
zstd
compression support.connecto_with_connector_lazy
.v0.22
tonic-reflection
.v0.10.2
Compare Source
Bug Fixes
v0.10.1
Compare Source
Bug Fixes
v0.10.0
Compare Source
Bug Fixes
http
scheme (#1454) (95e81f5)Features
google.rpc.Status
(#1430) (5fd635a)Router::into_router
(#1442) (ea06a1b)GrpcWebClientService
(#1472) (dc29c17)0.9.2 (2023-04-17)
0.9.1 (2023-04-03)
v0.9.2
Compare Source
v0.9.1
Compare Source
v0.9.0
Compare Source
Bug Fixes
enable
and update docs (#1326) (a9db219)Features
local_addr
toRequest o
(#1327) (b54ce23)DebugInfo
error message type (#1179) (3076e82)0.8.4 (2022-11-29)
Bug Fixes
0.8.3 (2022-11-28)
Bug Fixes
Features
build_transport
builder option (#1130) (1f5bc9b)CodeGenBuilder
(#1154) (c4525ba)Request#into_parts
andRequest#from_parts
(#1118) (b409ddd)from_listener
forTcpIncoming
(#1093) (0b03b30)0.8.2 (2022-09-28)
Bug Fixes
Features
Result<T>
type alias forstd::result::Result<T, tonic::Status>
(#1085) (56ff45d)cleanup-markdown
feature flag (#1086) (c1b08df)Clone
forStatus
usingArc
(#1076) (ee3d0df)v0.8.3
Compare Source
Bug Fixes
Features
build_transport
builder option (#1130) (1f5bc9b)CodeGenBuilder
(#1154) (c4525ba)Request#into_parts
andRequest#from_parts
(#1118) (b409ddd)from_listener
forTcpIncoming
(#1093) (0b03b30)v0.8.2
Compare Source
Bug Fixes
Features
Result<T>
type alias forstd::result::Result<T, tonic::Status>
(#1085) (56ff45d)cleanup-markdown
feature flag (#1086) (c1b08df)Clone
forStatus
usingArc
(#1076) (ee3d0df)v0.8.1
Compare Source
v0.8.0
Compare Source
Features
Grpc::with_origin
for clients (#1017) (10f6d2f)NamedService
from thetransport
feature (#969) (feae96c)BREAKING CHANGES
CODEC_PATH
moved from const to fn0.7.2 (2022-05-05)
Bug Fixes
Default
bound requirement (#974) (4533a6e)HttpsUriWithoutTlsSupport
only w/ tls feat (#996) (1dd5ad2)Features
0.7.1 (2022-04-04)
Features
channel
feature flag (#960) (f1ca90f)Configuration
📅 Schedule: Branch creation - "after 9pm,before 6am" in timezone Europe/Zurich, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.