Open
Conversation
e3e36c2 to
1f2e665
Compare
1f2e665 to
59ab16e
Compare
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
r2-explorer@1.2.0
Minor Changes
5c52c5dThanks @G4brym! - Add file and folder duplicate/copy operation via context menu. Right-clicking a file or folder and selecting "Duplicate" creates a copy with a " (copy)" suffix in the same directory, preserving all metadata.Patch Changes
#151
67ea55cThanks @G4brym! - AddShareMetadatatype interface for share link metadata, replacing untypedanyingetShareLinkand implicitanyinlistShares. Also fixreadOnlyMiddlewareto use Hono'sNexttype instead ofCallableFunction.#145
c936027Thanks @G4brym! - Fix Content-Disposition header injection in GetObject by sanitizing filenames (replacing non-ASCII with_and double quotes with') and adding RFC 5987filename*=UTF-8''...parameter for proper Unicode support.#147
0109d8cThanks @G4brym! - Fix HeadObject OpenAPI summary from "Get Object" to "Head Object" and align base64 key decoding in HeadObject and PutMetadata with GetObject's three-level fallback to handle edge-case encoded keys consistently across all endpoints.#148
812abd0Thanks @G4brym! - Add missing null check for R2 bucket in email handler to prevent crash when no bucket binding is found#146
66075a5Thanks @G4brym! - Fix share link download counter incrementing before verifying file exists. Previously, if the shared file was deleted from the bucket, accessing the share link would still increment the download counter before returning a 404 error. This could exhaust the download limit without any actual downloads occurring. The counter now only increments after confirming the file exists.#149
06ddecbThanks @G4brym! - Return 400 instead of 500 when upload endpoints receive malformed base64-encoded metadata incustomMetadataorhttpMetadataquery parameters