fix(dependencies): Update dependencies and improve bucket retrieval logging
This commit is contained in:
		
							
								
								
									
										10
									
								
								changelog.md
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								changelog.md
									
									
									
									
									
								
							| @@ -1,5 +1,15 @@ | ||||
| # Changelog | ||||
|  | ||||
| ## 2024-07-28 - 3.0.22 - fix(dependencies) | ||||
| Update dependencies and improve bucket retrieval logging | ||||
|  | ||||
| - Updated @aws-sdk/client-s3 to ^3.620.0 | ||||
| - Updated @git.zone/tsbuild to ^2.1.84 | ||||
| - Updated @git.zone/tsrun to ^1.2.49 | ||||
| - Updated @push.rocks/smartpromise to ^4.0.4 | ||||
| - Updated @tsclass/tsclass to ^4.1.2 | ||||
| - Added a log for when a bucket is not found by name in getBucketByName method | ||||
|  | ||||
| ## 2024-07-04 - 3.0.21 - fix(test) | ||||
| Update endpoint configuration in tests to use environment variable | ||||
|  | ||||
|   | ||||
							
								
								
									
										10
									
								
								package.json
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								package.json
									
									
									
									
									
								
							| @@ -12,22 +12,22 @@ | ||||
|     "build": "(tsbuild --web --allowimplicitany)" | ||||
|   }, | ||||
|   "devDependencies": { | ||||
|     "@git.zone/tsbuild": "^2.1.80", | ||||
|     "@git.zone/tsrun": "^1.2.46", | ||||
|     "@git.zone/tsbuild": "^2.1.84", | ||||
|     "@git.zone/tsrun": "^1.2.49", | ||||
|     "@git.zone/tstest": "^1.0.90", | ||||
|     "@push.rocks/qenv": "^6.0.5", | ||||
|     "@push.rocks/tapbundle": "^5.0.23" | ||||
|   }, | ||||
|   "dependencies": { | ||||
|     "@aws-sdk/client-s3": "^3.600.0", | ||||
|     "@aws-sdk/client-s3": "^3.620.0", | ||||
|     "@push.rocks/smartmime": "^2.0.2", | ||||
|     "@push.rocks/smartpath": "^5.0.18", | ||||
|     "@push.rocks/smartpromise": "^4.0.3", | ||||
|     "@push.rocks/smartpromise": "^4.0.4", | ||||
|     "@push.rocks/smartrx": "^3.0.7", | ||||
|     "@push.rocks/smartstream": "^3.0.44", | ||||
|     "@push.rocks/smartstring": "^4.0.15", | ||||
|     "@push.rocks/smartunique": "^3.0.9", | ||||
|     "@tsclass/tsclass": "^4.0.60" | ||||
|     "@tsclass/tsclass": "^4.1.2" | ||||
|   }, | ||||
|   "private": false, | ||||
|   "files": [ | ||||
|   | ||||
							
								
								
									
										1620
									
								
								pnpm-lock.yaml
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										1620
									
								
								pnpm-lock.yaml
									
									
									
										generated
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -3,6 +3,6 @@ | ||||
|  */ | ||||
| export const commitinfo = { | ||||
|   name: '@push.rocks/smartbucket', | ||||
|   version: '3.0.21', | ||||
|   version: '3.0.22', | ||||
|   description: 'A TypeScript library offering simple and cloud-agnostic object storage with advanced features like bucket creation, file and directory management, and data streaming.' | ||||
| } | ||||
|   | ||||
| @@ -24,6 +24,7 @@ export class Bucket { | ||||
|       console.log(`Taking this as base for new Bucket instance`); | ||||
|       return new this(smartbucketRef, bucketNameArg); | ||||
|     } else { | ||||
|       console.log(`did not find bucket by name: ${bucketNameArg}`); | ||||
|       return null; | ||||
|     } | ||||
|   } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user