Skip to content

Commit 657795e

Browse files
authored
Merge branch 'main' into report-artifacts-size
2 parents a060b3e + 967cb71 commit 657795e

File tree

22 files changed

+144
-94
lines changed

22 files changed

+144
-94
lines changed

.github/auto_assign-issues.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ addAssignees: true
33
# The list of users to assign to new issues.
44
# If empty or not provided, the repository owner is assigned
55
assignees:
6+
- scottgerring
7+
- jeromevdl
8+
- mriccia
69
- msailes
7-
- pankajagrawal16
8-
- stevehouel

.github/workflows/run-e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ jobs:
4545
role-to-assume: ${{ secrets.AWS_ROLE_ARN_TO_ASSUME }}
4646
aws-region: ${{ env.AWS_DEFAULT_REGION }}
4747
- name: Run e2e test with Maven
48-
run: mvn -Pe2e -B verify --file powertools-e2e-tests/pom.xml
48+
run: mvn -Pbuild-without-spotbugs -DskipTests install --file pom.xml && mvn -Pe2e -B verify --file powertools-e2e-tests/pom.xml

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Powertools for AWS Lambda (Java)
22

3-
![aws provider](https://img.shields.io/badge/provider-AWS-orange?logo=amazon-aws&color=ff9900) ![Build status](https://github.com/aws-powertools/powertools-lambda-java/actions/workflows/build.yml/badge.svg) ![Maven Central](https://img.shields.io/maven-central/v/software.amazon.lambda/powertools-parent) [![codecov.io](https://codecov.io/github/aws-powertools/lambda-java/branch/main/graphs/badge.svg)](https://app.codecov.io/gh/aws-powertools/lambda-java)
3+
![aws provider](https://img.shields.io/badge/provider-AWS-orange?logo=amazon-aws&color=ff9900) ![Build status](https://github.com/aws-powertools/powertools-lambda-java/actions/workflows/build.yml/badge.svg) ![Maven Central](https://img.shields.io/maven-central/v/software.amazon.lambda/powertools-parent) [![codecov.io](https://codecov.io/github/aws-powertools/powertools-lambda-java/branch/main/graphs/badge.svg)](https://app.codecov.io/gh/aws-powertools/powertools-lambda-java)
44

55

66
Powertools for AWS Lambda (Java) is a developer toolkit to implement Serverless best practices and increase developer velocity.

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: Powertools for AWS Lambda (Java)
88
Powertools for AWS Lambda (Java) is a suite of utilities for AWS Lambda Functions that makes tracing with AWS X-Ray, structured logging and creating custom metrics asynchronously easier.
99

1010
???+ tip
11-
Powertools for AWS Lambda is also available for [Python](https://awslabs.github.io/aws-lambda-powertools-python/){target="_blank"}, [TypeScript](https://awslabs.github.io/aws-lambda-powertools-typescript/){target="_blank"}, and [.NET](https://awslabs.github.io/aws-lambda-powertools-dotnet/){target="_blank"}
11+
Powertools for AWS Lambda is also available for [Python](https://docs.powertools.aws.dev/lambda/python/latest/){target="_blank"}, [TypeScript](https://docs.powertools.aws.dev/lambda/typescript/latest/){target="_blank"}, and [.NET](https://docs.powertools.aws.dev/lambda/dotnet/){target="_blank"}
1212

1313

1414
!!! tip "Looking for a quick run through of the core utilities?"
@@ -142,4 +142,4 @@ For more information about the project and available options refer to this [repo
142142
| **POWERTOOLS_LOGGER_SAMPLE_RATE** | Debug log sampling | [Logging](./core/logging) |
143143
| **POWERTOOLS_LOG_LEVEL** | Sets logging level | [Logging](./core/logging) |
144144
| **POWERTOOLS_TRACER_CAPTURE_RESPONSE** | Enables/Disables tracing mode to capture method response | [Tracing](./core/tracing) |
145-
| **POWERTOOLS_TRACER_CAPTURE_ERROR** | Enables/Disables tracing mode to capture method error | [Tracing](./core/tracing) |
145+
| **POWERTOOLS_TRACER_CAPTURE_ERROR** | Enables/Disables tracing mode to capture method error | [Tracing](./core/tracing) |

docs/javascript/extra.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const awsconfig = {
1010
};
1111

1212
const RUNTIME = "java"
13-
const BASE_ORIGIN = "awslabs.github.io"
13+
const BASE_ORIGIN = "docs.powertools.aws.dev"
1414

1515
function enableSearchOnBlurElement() {
1616
if (document.location.hostname != BASE_ORIGIN) return // prevent unnecessary data
@@ -73,4 +73,4 @@ const recordPageView = ({prevLocation, searchPattern}) => {
7373
}, 'AWSKinesisFirehose')
7474
}
7575

76-
init()
76+
init()

examples/powertools-examples-core/template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Globals:
1212
Tracing: Active # https://docs.aws.amazon.com/lambda/latest/dg/lambda-x-ray.html
1313
Environment:
1414
Variables:
15-
# Powertools for AWS Lambda (Java) env vars: https://awslabs.github.io/aws-lambda-powertools-python/#environment-variables
15+
# Powertools for AWS Lambda (Java) env vars: https://docs.powertools.aws.dev/lambda/java/#environment-variables
1616
POWERTOOLS_LOG_LEVEL: INFO
1717
POWERTOOLS_LOGGER_SAMPLE_RATE: 0.1
1818
POWERTOOLS_LOGGER_LOG_EVENT: true

examples/powertools-examples-sqs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<dependency>
2626
<groupId>software.amazon.awssdk</groupId>
2727
<artifactId>url-connection-client</artifactId>
28-
<version>2.20.88</version>
28+
<version>2.20.91</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>com.amazonaws</groupId>

examples/powertools-examples-sqs/template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Globals:
1111
Tracing: Active
1212
Environment:
1313
Variables:
14-
# Powertools for AWS Lambda (Java) env vars: https://awslabs.github.io/aws-lambda-powertools-python/#environment-variables
14+
# Powertools for AWS Lambda (Java) env vars: https://docs.powertools.aws.dev/lambda/java/#environment-variables
1515
POWERTOOLS_LOG_LEVEL: INFO
1616
POWERTOOLS_LOGGER_SAMPLE_RATE: 0.1
1717
POWERTOOLS_LOGGER_LOG_EVENT: true

pom.xml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<log4j.version>2.20.0</log4j.version>
6161
<jackson.version>2.15.2</jackson.version>
6262
<aspectj.version>1.9.7</aspectj.version>
63-
<aws.sdk.version>2.20.88</aws.sdk.version>
63+
<aws.sdk.version>2.20.91</aws.sdk.version>
6464
<aws.xray.recorder.version>2.14.0</aws.xray.recorder.version>
6565
<payloadoffloading-common.version>2.1.3</payloadoffloading-common.version>
6666
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -71,7 +71,7 @@
7171
<aspectj-maven-plugin.version>1.13.1</aspectj-maven-plugin.version>
7272
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
7373
<jacoco-maven-plugin.version>0.8.10</jacoco-maven-plugin.version>
74-
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
74+
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
7575
<maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version>
7676
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>
7777
<maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version>
@@ -183,7 +183,7 @@
183183
</dependency>
184184
<dependency>
185185
<groupId>org.apache.logging.log4j</groupId>
186-
<artifactId>log4j-slf4j-impl</artifactId>
186+
<artifactId>log4j-slf4j2-impl</artifactId>
187187
<version>${log4j.version}</version>
188188
</dependency>
189189
<dependency>
@@ -293,12 +293,6 @@
293293
<version>1.1.1</version>
294294
<scope>test</scope>
295295
</dependency>
296-
<dependency>
297-
<groupId>ch.qos.logback</groupId>
298-
<artifactId>logback-classic</artifactId>
299-
<version>1.3.8</version>
300-
<scope>test</scope>
301-
</dependency>
302296
<dependency>
303297
<groupId>com.github.tomakehurst</groupId>
304298
<artifactId>wiremock-jre8</artifactId>
@@ -472,7 +466,7 @@
472466
<plugin>
473467
<groupId>com.github.spotbugs</groupId>
474468
<artifactId>spotbugs-maven-plugin</artifactId>
475-
<version>4.7.3.4</version>
469+
<version>4.7.3.5</version>
476470
<executions>
477471
<execution>
478472
<id>test</id>

powertools-cloudformation/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,6 @@
9898
<artifactId>wiremock-jre8</artifactId>
9999
<scope>test</scope>
100100
</dependency>
101-
<dependency>
102-
<groupId>ch.qos.logback</groupId>
103-
<artifactId>logback-classic</artifactId>
104-
<scope>test</scope>
105-
</dependency>
106101
</dependencies>
107102

108103
</project>

0 commit comments

Comments
 (0)