Changesets: Versioning & Publication - #87
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
3 times, most recently
from
August 21, 2026 07:41
04e10d2 to
78dbbf6
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 21, 2026 07:47
78dbbf6 to
82ac27b
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
@imgproxy/imgproxy-js-core@1.9.0
Minor Changes
bypass_cacheis set to1,tortrue, imgproxy bypasses the internal cache and does all the processing and fetching from the source image.cache_tagsaccepts a list of strings that imgproxy adds to the cache entry and the response headers. Both options are supported in processing and image info URLs. The short formsbcandctare also supported.sigmais greater than0, imgproxy applies a progressive Gaussian blur filter that transitions from no blur at thestartposition to the specifiedsigmaat thestopposition. The option acceptssigma, an optionaldirection(down,up,right,left, or an angle in degrees), and optionalstartandstopfloats between0and1. The short formpblis also supported.1,tortrue, imgproxy uses the latest keyframe before the requested second for video thumbnail generation, redefining theIMGPROXY_VIDEO_THUMBNAIL_KEYFRAMESconfig. The option is supported in processing and image info URLs. The short formvtkis also supported.Patch Changes
c124469: Fix
video_thumbnail_animationgenerating URLs containing the literal stringundefinedwhenframe_widthorframe_heightwas omitted. Both arguments are required by imgproxy and by the option's type, so they are now validated likestep,delayandframes, and a missing value raises an error instead of producing a broken URL.Fix
zoomsilently ignoring azoomvalue of0. The option was dropped before validation, so no error was raised. imgproxy requires zoom factors to be greater than0, so0is now rejected forzoom,zoom_xandzoom_y. Note that this changes the error message for non-positive values from "can't be less than 0" to "can't be less or equal than 0".a97d0ef: Fix the
gradientoption dropping optional arguments explicitly set to0.color,direction,startandstopwere checked for truthiness, so{ gradient: { opacity: 0.5, stop: 0 } }producedgr:0.5and imgproxy fell back to the defaultstopof1.0instead of the requested0. The same applied tostart: 0and to adirectionangle of0. These values are now rendered explicitly, and invalid falsy values (such asnullor an emptycolor) are reported instead of being silently ignored.