From b2f9ff2993c9c34900a0a1fd278b46c98722585c Mon Sep 17 00:00:00 2001 From: graemerocher Date: Tue, 12 Feb 2019 11:56:08 +0100 Subject: [PATCH] Release Micronaut 1.1.0.M1 --- bom/profiles.properties | 20 ++++++++++---------- gradle.properties | 2 +- src/main/docs/guide/whatsNew.adoc | 5 +++++ 3 files changed, 16 insertions(+), 11 deletions(-) diff --git a/bom/profiles.properties b/bom/profiles.properties index 3d632ab3fd1..f359e67387e 100644 --- a/bom/profiles.properties +++ b/bom/profiles.properties @@ -1,10 +1,10 @@ -base=1.1.0.BUILD-SNAPSHOT -service=1.1.0.BUILD-SNAPSHOT -kafka=1.1.0.BUILD-SNAPSHOT -grpc=1.1.0.BUILD-SNAPSHOT -cli=1.1.0.BUILD-SNAPSHOT -profile=1.1.0.BUILD-SNAPSHOT -federation=1.1.0.BUILD-SNAPSHOT -function=1.1.0.BUILD-SNAPSHOT -function-aws=1.1.0.BUILD-SNAPSHOT -function-aws-alexa=1.1.0.BUILD-SNAPSHOT +base=1.1.0.M1 +service=1.1.0.M1 +kafka=1.1.0.M1 +grpc=1.1.0.M1 +cli=1.1.0.M1 +profile=1.1.0.M1 +federation=1.1.0.M1 +function=1.1.0.M1 +function-aws=1.1.0.M1 +function-aws-alexa=1.1.0.M1 diff --git a/gradle.properties b/gradle.properties index c4d644800f0..93d70335563 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -projectVersion=1.1.0.BUILD-SNAPSHOT +projectVersion=1.1.0.M1 projectGroupId=io.micronaut title=Micronaut projectDesc=Natively Cloud Native diff --git a/src/main/docs/guide/whatsNew.adoc b/src/main/docs/guide/whatsNew.adoc index 08266f718c4..b2145d83e5f 100644 --- a/src/main/docs/guide/whatsNew.adoc +++ b/src/main/docs/guide/whatsNew.adoc @@ -49,6 +49,11 @@ mn create-app helloworld --profile grpc --lang java --build gradle ---- ==== +=== Cold Start and Performance Improvements + +Micronaut 1.1 cold start performance has been improved through a variety of optimizations including compilation time indexing of common bean types. Users should see superior cold start performance for both Microservices and Functions. + + === AWS API Gateway Proxy Support Support for AWS API Gateway Proxy has been added allowing AWS Lambda's to be defined as regular controllers. See the documentation on https://micronaut-projects.github.io/micronaut-aws/latest/guide/#apiProxy[AWS API Gateway Proxy Support] for more information and links to examples.