diff --git a/ChangeLog.md b/ChangeLog.md index d048cf9..8cfa110 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -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. diff --git a/custom-connector-example/pom.xml b/custom-connector-example/pom.xml index 5788d38..aa88e6f 100644 --- a/custom-connector-example/pom.xml +++ b/custom-connector-example/pom.xml @@ -29,14 +29,14 @@ aws-appflow-custom-connector software.amazon.appflow - 1.0.5 + 1.0.6 4.0.0 custom-connector-example - 1.0.5 + 1.0.6 1.0.3 1.0.3 2.9.0 diff --git a/custom-connector-example/template.yml b/custom-connector-example/template.yml index 60a74c1..7f57575 100644 --- a/custom-connector-example/template.yml +++ b/custom-connector-example/template.yml @@ -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 diff --git a/custom-connector-integ-test/pom.xml b/custom-connector-integ-test/pom.xml index 69098fa..07f1bd6 100644 --- a/custom-connector-integ-test/pom.xml +++ b/custom-connector-integ-test/pom.xml @@ -5,7 +5,7 @@ aws-appflow-custom-connector software.amazon.appflow - 1.0.5 + 1.0.6 4.0.0 @@ -20,7 +20,7 @@ 1.89.0 1.12.261 31.0.1-jre - 1.0.5 + 1.0.6 3.2.2 2.8.1 diff --git a/custom-connector-queryfilter/pom.xml b/custom-connector-queryfilter/pom.xml index 165c467..df9a3f7 100644 --- a/custom-connector-queryfilter/pom.xml +++ b/custom-connector-queryfilter/pom.xml @@ -29,7 +29,7 @@ aws-appflow-custom-connector software.amazon.appflow - 1.0.5 + 1.0.6 4.0.0 diff --git a/custom-connector-sdk/pom.xml b/custom-connector-sdk/pom.xml index f0839f0..b7e9dde 100644 --- a/custom-connector-sdk/pom.xml +++ b/custom-connector-sdk/pom.xml @@ -29,7 +29,7 @@ aws-appflow-custom-connector software.amazon.appflow - 1.0.5 + 1.0.6 4.0.0 diff --git a/custom-connector-tests/pom.xml b/custom-connector-tests/pom.xml index f8f5968..a57fa11 100644 --- a/custom-connector-tests/pom.xml +++ b/custom-connector-tests/pom.xml @@ -5,7 +5,7 @@ aws-appflow-custom-connector software.amazon.appflow - 1.0.5 + 1.0.6 4.0.0 @@ -20,7 +20,7 @@ software.amazon.appflow custom-connector-example - 1.0.5 + 1.0.6 diff --git a/pom.xml b/pom.xml index 257226e..e94a891 100644 --- a/pom.xml +++ b/pom.xml @@ -31,7 +31,7 @@ software.amazon.appflow aws-appflow-custom-connector pom - 1.0.5 + 1.0.6 Amazon AppFlow Custom Connector SDK https://github.com/awslabs/aws-appflow-custom-connector-java AppFlow Custom Connector SDK enables customers and third party developers to build custom source