Skip to content

ci: Prepare for 0.4.0-beta #116

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ Powertools is available in Maven Central. You can use your favourite dependency
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-tracing</artifactId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
</dependency>
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-logging</artifactId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
</dependency>
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-metrics</artifactId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
</dependency>
...
</dependencies>
Expand Down
13 changes: 11 additions & 2 deletions docs/content/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,17 @@ Powertools dependencies are available in Maven Central. You can use your favouri
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-tracing</artifactId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
</dependency>
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-logging</artifactId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
</dependency>
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-metrics</artifactId>
<version>0.4.0-beta</version>
</dependency>
...
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

metrics is not there? normal?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch. I guess we missed updating it when we launched metrics module 😉

</dependencies>
Expand Down Expand Up @@ -50,6 +55,10 @@ And configure the aspectj-maven-plugin to compile-time weave (CTW) the aws-lambd
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-logging</artifactId>
</aspectLibrary>
<aspectLibrary>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-metrics</artifactId>
</aspectLibrary>
</aspectLibraries>
</configuration>
<executions>
Expand Down
12 changes: 12 additions & 0 deletions docs/content/utilities/parameters.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ The parameters utility provides a way to retrieve parameter values from
* Cache parameter values for a given amount of time (defaults to 5 seconds)
* Transform parameter values from JSON or base 64 encoded strings

## Install

To install this utility, add the following dependency to your project.

```xml
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-parameters</artifactId>
<version>0.4.0-beta</version>
</dependency>
```

**IAM Permissions**

This utility requires additional permissions to work as expected. See the table below:
Expand Down
2 changes: 1 addition & 1 deletion docs/content/utilities/sqs_large_message_handling.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ To install this utility, add the following dependency to your project.
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-sqs</artifactId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
</dependency>
```
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

make me think I forgot to add this in the parameters doc (installation step):

<dependency>
    <groupId>software.amazon.lambda</groupId>
    <artifactId>powertools-parameters</artifactId>
    <version>0.4.0-beta</version>
</dependency>

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

aha.. nevermind, I can fix it in same PR


Expand Down
8 changes: 4 additions & 4 deletions example/HelloWorldFunction/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-tracing</artifactId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
</dependency>
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-logging</artifactId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
</dependency>
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-metrics</artifactId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
</dependency>
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-parameters</artifactId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-parent</artifactId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
<packaging>pom</packaging>

<name>AWS Lambda Powertools Java library Parent</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
</parent>

<name>AWS Lambda Powertools Java library Core</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-logging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
</parent>

<name>AWS Lambda Powertools Java library Logging</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-metrics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
</parent>

<name>AWS Lambda Powertools Java library Metrics</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-parameters/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
</parent>

<artifactId>powertools-parameters</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion powertools-sqs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
</parent>

<name>AWS Lambda Powertools Java library SQS</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-tracing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>0.3.1-beta</version>
<version>0.4.0-beta</version>
</parent>

<name>AWS Lambda Powertools Java library Tracing</name>
Expand Down