Skip to content

Commit 3387653

Browse files
committed
Merge branch 'master' into idempotency_timeout
2 parents a751eaa + c556e38 commit 3387653

File tree

4 files changed

+76
-12
lines changed

4 files changed

+76
-12
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
name: Support Lambda Powertools (become a reference)
2+
description: Add your organization's name or logo to the Lambda Powertools documentation
3+
title: "[Support Lambda Powertools]: <your organization name>"
4+
labels: ["customer_reference"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you for becoming a reference customer. Your support means a lot to us. It also helps new customers to know who's using it.
10+
11+
If you would like us to also display your organization's logo, please share a link in the `Company logo` field.
12+
- type: input
13+
id: organization
14+
attributes:
15+
label: Organization Name
16+
description: Please share the name of your organization
17+
placeholder: ACME
18+
validations:
19+
required: true
20+
- type: input
21+
id: name
22+
attributes:
23+
label: Your Name
24+
description: Please share your name
25+
validations:
26+
required: true
27+
- type: input
28+
id: job
29+
attributes:
30+
label: Your current position
31+
description: Please share your current position at your company
32+
validations:
33+
required: true
34+
- type: input
35+
id: logo
36+
attributes:
37+
label: (Optional) Company logo
38+
description: Company logo you want us to display. You also allow us to resize for optimal placement in the documentation.
39+
validations:
40+
required: false
41+
- type: textarea
42+
id: use_case
43+
attributes:
44+
label: (Optional) Use case
45+
description: How are you using Lambda Powertools today? *features, etc.*
46+
validations:
47+
required: false
48+
- type: checkboxes
49+
id: other_languages
50+
attributes:
51+
label: Also using other Lambda Powertools languages?
52+
options:
53+
- label: Python
54+
required: false
55+
- label: TypeScript
56+
required: false
57+
- label: .NET
58+
required: false
59+
- type: markdown
60+
attributes:
61+
value: |
62+
*By raising a Support Lambda Powertools issue, you are granting AWS permission to use your company's name (and/or logo) for the limited purpose described here. You are also confirming that you have authority to grant such permission.*
63+
64+
*You can opt-out at any time by commenting or reopening this issue.*

pom.xml

+10-10
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@
5555
<properties>
5656
<maven.compiler.source>1.8</maven.compiler.source>
5757
<maven.compiler.target>1.8</maven.compiler.target>
58-
<log4j.version>2.18.0</log4j.version>
59-
<jackson.version>2.13.3</jackson.version>
58+
<log4j.version>2.19.0</log4j.version>
59+
<jackson.version>2.13.4.2</jackson.version>
6060
<aspectj.version>1.9.7</aspectj.version>
61-
<aws.sdk.version>2.17.239</aws.sdk.version>
62-
<aws.xray.recorder.version>2.11.2</aws.xray.recorder.version>
61+
<aws.sdk.version>2.18.4</aws.sdk.version>
62+
<aws.xray.recorder.version>2.12.0</aws.xray.recorder.version>
6363
<payloadoffloading-common.version>2.1.2</payloadoffloading-common.version>
6464
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6565
<lambda.core.version>1.2.1</lambda.core.version>
@@ -71,10 +71,10 @@
7171
<jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version>
7272
<cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version>
7373
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
74-
<maven-javadoc-plugin.version>3.4.0</maven-javadoc-plugin.version>
74+
<maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version>
7575
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
7676
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
77-
<junit-jupiter.version>5.8.2</junit-jupiter.version>
77+
<junit-jupiter.version>5.9.1</junit-jupiter.version>
7878
<aws-embedded-metrics.version>1.0.6</aws-embedded-metrics.version>
7979
<jmespath.version>0.5.1</jmespath.version>
8080
</properties>
@@ -244,13 +244,13 @@
244244
<dependency>
245245
<groupId>org.mockito</groupId>
246246
<artifactId>mockito-core</artifactId>
247-
<version>4.6.0</version>
247+
<version>4.8.1</version>
248248
<scope>test</scope>
249249
</dependency>
250250
<dependency>
251251
<groupId>org.mockito</groupId>
252252
<artifactId>mockito-inline</artifactId>
253-
<version>4.6.1</version>
253+
<version>4.8.1</version>
254254
<scope>test</scope>
255255
</dependency>
256256
<dependency>
@@ -262,7 +262,7 @@
262262
<dependency>
263263
<groupId>org.assertj</groupId>
264264
<artifactId>assertj-core</artifactId>
265-
<version>3.23.0</version>
265+
<version>3.23.1</version>
266266
<scope>test</scope>
267267
</dependency>
268268
<dependency>
@@ -457,7 +457,7 @@
457457
<plugin>
458458
<groupId>com.github.spotbugs</groupId>
459459
<artifactId>spotbugs-maven-plugin</artifactId>
460-
<version>4.6.0.0</version>
460+
<version>4.7.2.1</version>
461461
<executions>
462462
<execution>
463463
<id>test</id>

powertools-idempotency/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@
171171
<plugin>
172172
<groupId>org.apache.maven.plugins</groupId>
173173
<artifactId>maven-jar-plugin</artifactId>
174-
<version>3.2.2</version>
174+
<version>3.3.0</version>
175175
<configuration>
176176
<archive>
177177
<manifestEntries>

powertools-validation/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
<dependency>
7474
<groupId>com.networknt</groupId>
7575
<artifactId>json-schema-validator</artifactId>
76-
<version>1.0.70</version>
76+
<version>1.0.73</version>
7777
</dependency>
7878

7979
<!-- Test dependencies -->

0 commit comments

Comments
 (0)