Skip to content

Commit

Permalink
wip issue #60
Browse files Browse the repository at this point in the history
  • Loading branch information
abudaan committed Mar 4, 2024
1 parent 313fdb6 commit fd8b4c5
Show file tree
Hide file tree
Showing 7 changed files with 1,530 additions and 1,388 deletions.
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 2.1.2

- updated dependencies
- fixed test scripts

# 2.1.1

- fix issue with optional `bucketName` argument
Expand Down
1,712 changes: 920 additions & 792 deletions package-lock.json

Large diffs are not rendered by default.

31 changes: 17 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@tweedegolf/storage-abstraction",
"version": "2.1.1",
"version": "2.1.2",
"description": "Provides an abstraction layer for interacting with a storage; the storage can be local or in the cloud.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/tweedegolf/storage-abstraction/",
"repository": "https://github.com/tweedegolf/storage-abstraction/",
"dependencies": {
"@aws-sdk/client-s3": "^3.503.1",
"@aws-sdk/s3-request-presigner": "^3.503.1",
"@aws-sdk/client-s3": "^3.525.0",
"@aws-sdk/s3-request-presigner": "^3.525.0",
"@azure/identity": "^4.0.1",
"@azure/storage-blob": "^12.17.0",
"@google-cloud/storage": "^7.6.0",
Expand All @@ -19,16 +19,19 @@
"devDependencies": {
"@types/jasmine": "^5.1.2",
"@types/minio": "^7.1.1",
"@types/node": "^20.11.13",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"dotenv": "^16.4.1",
"eslint": "^8.56.0",
"@types/glob": "^8.1.0",
"@types/minimatch": "^5.1.2",
"@types/rimraf": "^4.0.5",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.1.3",
"jasmine": "^5.1.0",
"markdown-toc": "^1.2.0",
"prettier": "^3.2.4",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tsc-watch": "^6.0.4",
"typescript": "^5.0.4"
Expand All @@ -37,11 +40,11 @@
"test-all": "npm run test-local && npm run test-gcs && npm run test-s3 && npm run test-b2 && npm run test-azure",
"test-jasmine": "ts-node ./node_modules/.bin/jasmine --random=false --fail-fast ./tests/test.jasmine.ts",
"test-local": "LOCAL_DIRECTORY='tests/test_directory' npm run test-jasmine 0",
"test-gcs": "ts-node ./node_modules/.bin/jasmine ./tests/test.jasmine.ts 1",
"test-s3": "ts-node ./node_modules/.bin/jasmine ./tests/test.jasmine.ts 2",
"test-b2": "ts-node ./node_modules/.bin/jasmine ./tests/test.jasmine.ts 3",
"test-azure": "ts-node ./node_modules/.bin/jasmine ./tests/test.jasmine.ts 4",
"test-minio": "ts-node ./node_modules/.bin/jasmine ./tests/test.jasmine.ts 5",
"test-s3": "npm run test-jasmine 1",
"test-gcs": "npm run test-jasmine 2",
"test-b2": "npm run test-jasmine 3",
"test-azure": "npm run test-jasmine 4",
"test-minio": "npm run test-jasmine 5",
"test-minio-2": "MINIO_ENDPOINT='play.min.io' MINIO_USE_SSL='true' MINIO_PORT='9000' MINIO_REGION='us-east-1' MINIO_ACCESS_KEY='Q3AM3UQ867SPQQA43P2F' MINIO_SECRET_KEY='zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG' npm run test-jasmine 5",
"test": "ts-node ./tests/test.ts",
"test-urls": "ts-node ./tests/test_urls.ts",
Expand Down
5 changes: 5 additions & 0 deletions publish/AdapterAmazonS3/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.0.14

- fix for issue #60
- updated @aws-sdk to 3.525.0

# 1.0.13

- improved error logging
Expand Down
Loading

0 comments on commit fd8b4c5

Please sign in to comment.