Skip to content

Commit

Permalink
Upgrading pom version from 1.0.5 to 1.0.6 (#33)
Browse files Browse the repository at this point in the history
* Upgrading version to 1.0.6

* Modifying changelog.md

* Modifying changelog.txt
  • Loading branch information
gashutos authored Aug 16, 2022
1 parent 7603ad5 commit f47a751
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 10 deletions.
8 changes: 8 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [1.0.6] - 2022-08-16
### Added
- Basic auth support for OAuth2. We need to add Base64 encoded Basic Auth header while making OAuth2 request in OAuth2 retrieve token scheme.
- Removed ConnectorContext from validate creds request
- Made api version nullable
- Removed api version from connector runtime settings
- Allowed hypen to be present in field names while generating the filter query

## [1.0.5] - 2022-05-27
### Added
- Added OAuth2 enhancements like connector can define the EntityType and MethodType to get the token.
Expand Down
4 changes: 2 additions & 2 deletions custom-connector-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@
<parent>
<artifactId>aws-appflow-custom-connector</artifactId>
<groupId>software.amazon.appflow</groupId>
<version>1.0.5</version>
<version>1.0.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>custom-connector-example</artifactId>

<properties>
<aws-custom-connector-sdk.version>1.0.5</aws-custom-connector-sdk.version>
<aws-custom-connector-sdk.version>1.0.6</aws-custom-connector-sdk.version>
<aws-custom-connector-queryfilter.version>1.0.3</aws-custom-connector-queryfilter.version>
<aws-custom-connector-integ-test.version>1.0.3</aws-custom-connector-integ-test.version>
<gson.version>2.9.0</gson.version>
Expand Down
2 changes: 1 addition & 1 deletion custom-connector-example/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Resources:
Type: 'AWS::Serverless::Function'
Properties:
Handler: "com.amazonaws.appflow.custom.connector.example.handler.SalesforceLambdaHandler::handleRequest"
CodeUri: "./target/custom-connector-example-1.0.5.jar"
CodeUri: "./target/custom-connector-example-1.0.6.jar"
Description: "Example for writing and deploying your AppFlow connector"
Runtime: java8
Timeout: 30
Expand Down
4 changes: 2 additions & 2 deletions custom-connector-integ-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>aws-appflow-custom-connector</artifactId>
<groupId>software.amazon.appflow</groupId>
<version>1.0.5</version>
<version>1.0.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -20,7 +20,7 @@
<aws-cdk.version>1.89.0</aws-cdk.version>
<aws-sdk.version>1.12.261</aws-sdk.version>
<guava.version>31.0.1-jre</guava.version>
<aws-custom-connector-sdk.version>1.0.5</aws-custom-connector-sdk.version>
<aws-custom-connector-sdk.version>1.0.6</aws-custom-connector-sdk.version>
<maven-shade-plugin.version>3.2.2</maven-shade-plugin.version>
<log4j2-cachefile-transformer.version>2.8.1</log4j2-cachefile-transformer.version>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion custom-connector-queryfilter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<parent>
<artifactId>aws-appflow-custom-connector</artifactId>
<groupId>software.amazon.appflow</groupId>
<version>1.0.5</version>
<version>1.0.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion custom-connector-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<parent>
<artifactId>aws-appflow-custom-connector</artifactId>
<groupId>software.amazon.appflow</groupId>
<version>1.0.5</version>
<version>1.0.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions custom-connector-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>aws-appflow-custom-connector</artifactId>
<groupId>software.amazon.appflow</groupId>
<version>1.0.5</version>
<version>1.0.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -20,7 +20,7 @@
<dependency>
<groupId>software.amazon.appflow</groupId>
<artifactId>custom-connector-example</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-cli/commons-cli -->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<groupId>software.amazon.appflow</groupId>
<artifactId>aws-appflow-custom-connector</artifactId>
<packaging>pom</packaging>
<version>1.0.5</version>
<version>1.0.6</version>
<name>Amazon AppFlow Custom Connector SDK</name>
<url>https://github.com/awslabs/aws-appflow-custom-connector-java</url>
<description>AppFlow Custom Connector SDK enables customers and third party developers to build custom source
Expand Down

0 comments on commit f47a751

Please sign in to comment.