Skip to content

Commit

Permalink
Fix dependabot security alert. (#6073)
Browse files Browse the repository at this point in the history
* Pin set value to greater than 4.0.1 to fix security warning.

* Format the rest of the connectors.
  • Loading branch information
davinchia committed Sep 15, 2021
1 parent 84b3fbd commit 0691e77
Show file tree
Hide file tree
Showing 5 changed files with 86 additions and 22 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Expand Up @@ -8,6 +8,7 @@
"devDependencies": {
"handlebars": "^4.7.7",
"plop": "^2.7.4",
"uuid": "^8.3.2"
"uuid": "^8.3.2",
"set-value": ">=4.0.1"
}
}
Expand Up @@ -7,7 +7,7 @@
"data_source": {
"data_source_type": "S3",
"s3_bucket_name": "required",
"s3_bucket_path":"required",
"s3_bucket_path": "required",
"s3_bucket_region": "required",
"s3_access_key_id": "required",
"s3_secret_access_key": "required"
Expand Down
@@ -1,3 +1,27 @@
/*
* MIT License
*
* Copyright (c) 2020 Airbyte
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

package io.airbyte.integrations.destination.databricks;

import java.util.Set;
Expand Down
Expand Up @@ -24,6 +24,8 @@

package io.airbyte.integrations.destination.s3;

import static io.airbyte.integrations.destination.s3.S3DestinationConstants.NAME_TRANSFORMER;

import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.model.DeleteObjectsRequest;
import com.amazonaws.services.s3.model.DeleteObjectsRequest.KeyVersion;
Expand All @@ -47,8 +49,6 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import static io.airbyte.integrations.destination.s3.S3DestinationConstants.NAME_TRANSFORMER;

/**
* When adding a new S3 destination acceptance test, extend this class and do the following:
* <li>Implement {@link #getFormatConfig} that returns a {@link S3FormatConfig}</li>
Expand Down

0 comments on commit 0691e77

Please sign in to comment.