Skip to content

Commit

Permalink
ARSN-360 bump package version
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas2bert committed Aug 11, 2023
1 parent f03f049 commit 4d6b03b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"engines": {
"node": ">=16"
},
"version": "8.1.107",
"version": "8.1.108",
"description": "Common utilities for the S3 project components",
"main": "build/index.js",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,8 @@ describe('MongoClientInterface::metadata.listLifecycleObject::current', () => {
deletedVersionId = JSON.parse(res).versionId;
return next(null);
}),
next => metadata.deleteObjectMD(BUCKET_NAME, objVal.key, { versionId: deletedVersionId }, logger, next),
next => metadata.deleteObjectMD(BUCKET_NAME, objVal.key,
{ versionId: deletedVersionId }, logger, next),
next => metadata.listLifecycleObject(BUCKET_NAME, params, logger, (err, data) => {
assert.ifError(err);
assert.strictEqual(data.Contents.length, 3);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,7 @@ describe('MongoClientInterface::metadata.listLifecycleObject::noncurrent', () =>
});
});


it('Should return trucated list of non-current versions excluding keys stored in location1', done => {
it('Should return trucated list of non-current versions excluding keys stored in location1', done => {
const params = {
listingType: 'DelimiterNonCurrent',
excludedDataStoreName: location1,
Expand Down

0 comments on commit 4d6b03b

Please sign in to comment.