chore(release): bump versions and update changelogs#167
Merged
Conversation
f0fe4a8 to
426ac02
Compare
426ac02 to
2e9a0c5
Compare
designcode
approved these changes
Jun 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@tigrisdata/iam@2.2.0
Minor Changes
#166
263e952Thanks @designcode! - AddcreateTeam,editTeam, andlistTeamsfor managing teams within an organization.createTeam(team, options?)creates a team from aCreateTeamInput(namerequired, optionaldescriptionandmembers) and returns the newteamId.editTeam(teamId, team, options?)applies a partial update (Partial<CreateTeamInput>); it errors withNo fields to updatewhen no fields are provided.listTeams(options?)returns the organization's teams, each mapped to aTeam(id,name,description,members,createdAt,updatedAt).Also exports the
CreateTeamInput,CreateTeamOptions,CreateTeamResponse,EditTeamOptions,EditTeamResponse,ListTeamsOptions,ListTeamsResponse, andTeamtypes.@tigrisdata/storage@3.16.0
Minor Changes
#168
4790e55Thanks @designcode! - Support theallowObjectAclandenableDirectoryListingoptions increateBucket.allowObjectAcl: trueapplies the object ACL setting via a follow-upupdateBucketcall once the bucket exists (the S3CreateBucketcommand can't carry it). If the bucket is created but the ACL update fails — whether it returns an error or throws — the returned error makes the partial state explicit.enableDirectoryListing: trueenables object listing for the bucket at creation time (relevant for public buckets). It defaults tofalse(listing disabled).#169
f6dade9Thanks @designcode! - AddrestoreObjectandgetRestoreInfofor working with archived objects.restoreObject(path, options?)restores an archived object (e.g. one in theGLACIERtier) back into an actively-readable copy for a number ofdays(defaults to1).getRestoreInfo(path, options?)reports an object's restore state from itsHEADheaders as aRestoreInfo({ status, expiresAt? }), using theRestoreStatusenum (Archived,InProgress,Restored). It resolves toundefinedwhen there is no restore information — for a non-archived object or one that does not exist.Note
Low Risk
Release-only version and changelog updates with no runtime code changes; risk is limited to publishing the wrong versions if merged incorrectly.
Overview
This is a Changesets “Version Packages” release PR: it applies pending changesets, bumps package versions, and moves their notes into each package’s
CHANGELOG.md. No SDK source changes are in this diff—only release metadata.@tigrisdata/iamgoes from 2.1.1 → 2.2.0 (minor). A newCHANGELOG.mddocuments the 2.2.0 release (team management APIs from [#166]).@tigrisdata/storagegoes from 3.15.0 → 3.16.0 (minor).CHANGELOG.mdgains 3.16.0 entries forcreateBucketallowObjectAcl/enableDirectoryListing([#168]) andrestoreObject/getRestoreInfo([#169]).The three consumed changeset files under
.changeset/(create-bucket-acl-and-listing.md,iam-teams.md,restore-object.md) are removed after being applied.Reviewed by Cursor Bugbot for commit 2e9a0c5. Bugbot is set up for automated code reviews on this repo. Configure here.