feat: add forcePathStyle config, default to true#21
Merged
designcode merged 2 commits intomainfrom Apr 23, 2026
Merged
Conversation
All SDK calls use path-style URLs (endpoint/bucket/key) by default. Bump @tigrisdata/storage to ^3.2.0, playground to ^0.5.1. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 8a9c2ce. Configure here.
MantasMiksys
approved these changes
Apr 23, 2026
Replace applyConfigDefaults with withConfigDefaults that returns a new config object instead of mutating the input. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
🎉 This PR is included in version 0.6.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
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.

Summary
forcePathStyleoption toTigrisConfig— uses path-style URLs (endpoint/bucket/key) instead of virtual-hosted (bucket.endpoint/key)truefor all SDK calls@tigrisdata/storageto^3.2.0@tigrisdata/agent-shell@^0.5.1Test plan
npm testpassesforcePathStyle: falseoverrides the default🤖 Generated with Claude Code
Note
Medium Risk
Changes default storage URL style via a new
forcePathStyleconfig default, which can affect all S3/Tigris requests and presigned URLs. Also bumps the storage SDK, so compatibility/regression risk is moderate despite small code changes.Overview
Adds
forcePathStyletoTigrisConfigand applies defaults across the shell/REPL. A newwithConfigDefaults()helper now defaultsforcePathStyle: true, andTigrisShellplus REPL bucket listing resolve configs through it so SDK calls/presign/snapshot/fork commands consistently use path-style URLs unless explicitly overridden.Dependency + packaging updates. Bumps
@tigrisdata/storageto^3.2.0, updates the playground to@tigrisdata/agent-shell@^0.5.1, and adjusts published CLI bin names (addsagent-shelland keepstigris-agent-shell).Reviewed by Cursor Bugbot for commit efcd104. Bugbot is set up for automated code reviews on this repo. Configure here.