From 73ce75e01bb89376336893ff46bb56fc3c159442 Mon Sep 17 00:00:00 2001 From: Laurent Broudoux Date: Thu, 26 Oct 2023 11:50:24 +0200 Subject: [PATCH] chore: #8 Prepare 0.1.2 release Signed-off-by: Laurent Broudoux --- README.md | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1c35516..4e718f5 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,9 @@ Want to see this extension in action? Check out our [sample application](https:/ ## Build Status -Latest released version is `0.1.1`. +Latest released version is `0.1.2`. -Current development version is `0.1.2-SNAPSHOT`. +Current development version is `0.1.3-SNAPSHOT`. #### Sonarcloud Quality metrics @@ -34,7 +34,7 @@ If you're using Maven: io.github.microcks.quarkus quarkus-microcks - 0.1.1 + 0.1.2 provided ``` @@ -55,6 +55,7 @@ quarkus.microcks.devservices.enabled=false The local URL exposed by the Microcks container Http port is automatically stored into the `quarkus.microcks.default.http` property. Microcks container also exposes a gRPC URL for gRPC services, it is store into the `quarkus.microcks.default.grpc` property. +For convenient usage of the Quarkus gRPC client, we also provide `quarkus.microcks.default.grpc.host` and `quarkus.microcks.default.grpc.port` properties. Exposed URL is visible in the Quarkus startup logs: @@ -128,4 +129,15 @@ public void testOpenAPIContract() throws Exception { The `TestResult` gives you access to all details regarding success of failure on different test cases. -A comprehensive Quarkus demo application illustrating both usages is available here: [quarkus-order-service](https://github.com/microcks/api-lifecycle/tree/master/shift-left-demo/quarkus-order-service). \ No newline at end of file +A comprehensive Quarkus demo application illustrating both usages is available here: [quarkus-order-service](https://github.com/microcks/api-lifecycle/tree/master/shift-left-demo/quarkus-order-service). + + +### Configure your Microcks image + +By default, Microcks DevService will use the `quay.io/microcks/microcks-uber:latest` image that is the latest stable one. +However, you can specify a compatible image of your choice using the following property: + +```properties +# Specify here the Microcks-uber image you want to use. +quarkus.microcks.devservices.image-name=quay.io/microcks/microcks-uber:nightly +``` \ No newline at end of file