Revert to snapshots and add whats new
This commit is contained in:
@@ -193,7 +193,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t
|
||||
<dependency>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc-dependencies</artifactId>
|
||||
<version>0.3.0</version>
|
||||
<version>0.4.0-SNAPSHOT</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
@@ -208,7 +208,7 @@ As shown in the snippet below this can then be followed by version-less declarat
|
||||
[source,gradle]
|
||||
----
|
||||
dependencies {
|
||||
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.3.0")
|
||||
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.4.0-SNAPSHOT")
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
@@ -1,8 +1,24 @@
|
||||
= What's new?
|
||||
|
||||
:page-section-summary-toc: 1
|
||||
|
||||
[[what-s-new-in-0-4-0-since-0-3-0]]
|
||||
== What's New in 0.4.0 Since 0.3.0
|
||||
|
||||
This section covers the changes made from version 0.2.0 to version 0.3.0.
|
||||
|
||||
=== Channel Factory
|
||||
The `GrpcChannelFactory` has a new interface and its methods now return a `Channel` (instead of a `ChannelBuilder`).
|
||||
The `createChannel()` method is overloaded with a new method that accepts a `ChannelBuilderOptions` which can be used to configure the channel before it is created.
|
||||
|
||||
=== Client Side Observability
|
||||
A gRPC client will generate a new span for each RPC call. The span will be automatically closed when the call is completed.
|
||||
|
||||
=== Security in Servlet Containers
|
||||
Spring Security works with gRPC servers running in servlet containers. You can use all your favourite Spring Security features to secure your gRPC services.
|
||||
|
||||
[[what-s-new-in-0-3-0-since-0-2-0]]
|
||||
== What's New in 0.3.0 Since 0.2.0
|
||||
:page-section-summary-toc: 1
|
||||
|
||||
This section covers the changes made from version 0.2.0 to version 0.3.0.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user