Skip to content

chore(deps): update dependency @vercel/blob to ^0.27.0#29

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/vercel-blob-0.x
Open

chore(deps): update dependency @vercel/blob to ^0.27.0#29
renovate[bot] wants to merge 1 commit intomainfrom
renovate/vercel-blob-0.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 17, 2024

This PR contains the following updates:

Package Change Age Confidence
@vercel/blob (source) ^0.22.1^0.27.0 age confidence

Release Notes

vercel/storage (@​vercel/blob)

v0.27.3

Compare Source

Patch Changes
  • f88d80b: Fix documentation links in README and types, no functional changes

v0.27.2

Compare Source

Patch Changes
  • 54ce5f8: Allow all special characters to be used as pathname.
    You can now use all the characters you want in pathname even the ones that have
    special meaning in urls like %!'()@​{}[]# and it will work as expected.

v0.27.1

Compare Source

Patch Changes
  • 0c98feb: fix(blob): allow client uploads in web workers

    Before this change, we had guards so client uploads could only be used in
    browser environments, this prevented customers to use Vercel Blob in Web
    Workers, sometimes React Native or in general anywhere window is not really what
    we think it is.

v0.27.0

Compare Source

Minor Changes
  • 7872e61: contentType default is now 'application/octet-stream' instead of undefined

v0.26.0

Compare Source

Minor Changes
  • c3afec3: Add onUploadProgress feature to put/upload

    You can now track the upload progress in Node.js and all major browsers when
    using put/upload in multipart, non-multipart and client upload modes. Basically
    anywhere in our API you can upload a file, then you can follow the upload
    progress.

    Here's a basic usage example:

    const blob = await put('big-file.pdf', file, {
      access: 'public',
      onUploadProgress(event) {
        console.log(event.loaded, event.total, event.percentage);
      }
    });
    

    Fixes #​543
    Fixes #​642

v0.25.1

Compare Source

Patch Changes
  • d58f9de: fix(blob): provide custom errors for expired client tokens and pathname mismatch

v0.25.0

Compare Source

Minor Changes
  • 61b5939: BREAKING CHANGE, we're no more accepting non-encoded versions of ?, # and // in pathnames. If you want to use such characters in your pathnames then you will need to encode them.

v0.24.1

Compare Source

Patch Changes
  • 37d84ef: Throw specific error (BlobContentTypeNotAllowed) when file type doesn't match
  • da87e89: Fix bad detection of Request being a plain object

v0.24.0

Compare Source

Minor Changes
  • 8098803: Add createFolder method. Warning, if you were using the standard put() method to created fodlers, this will now fail and you must move to createFolder() instead.
Patch Changes
  • 8d7e8b9: Limit pathname length to 950 to respect internal limitations and provide better early DX.

v0.23.4

Compare Source

Patch Changes
  • 30401f4: fix(blob): Throw when trying to upload a plain JS object

v0.23.3

Compare Source

Patch Changes
  • c0bdd40: fix(blob): also retry internal_server_error
  • c5d10d7: chore(blob): add observability headers

v0.23.2

Compare Source

Patch Changes
  • e63f125: chore(blob): Allow using the alternative API. No new feature, no bugfix here.

v0.23.1

Compare Source

Patch Changes
  • 1cad24c: fix(blob): export all user facing errors

v0.23.0

Compare Source

Minor Changes
  • 261319e: # Add abortSignal

    Adds abortSignal option to all methods. This allows users to cancel requests using an AbortController and passing its signal to the operation.

    Here's how to use it:

    const abortController = new AbortController();
    
    vercelBlob
      .put("canceled.txt", "test", {
        access: "public",
        abortSignal: abortController.signal,
      })
      .then((blob) => {
        console.log("Blob created:", blob);
      });
    
    setTimeout(function () {
      // Abort the upload
      abortController.abort();
    }, 100);

v0.22.3

Compare Source

Patch Changes
  • 5b9b53d: Remove dependency pins in package.json.

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Apr 17, 2024

⚠️ No Changeset found

Latest commit: 0d8b606

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate Bot changed the title chore(deps): update dependency @vercel/blob to ^0.23.0 chore(deps): update dependency @vercel/blob to ^0.24.0 Sep 16, 2024
@renovate renovate Bot force-pushed the renovate/vercel-blob-0.x branch from 627405f to f60c964 Compare September 16, 2024 14:14
@renovate renovate Bot force-pushed the renovate/vercel-blob-0.x branch from f60c964 to 8fb872a Compare October 8, 2024 11:03
@renovate renovate Bot changed the title chore(deps): update dependency @vercel/blob to ^0.24.0 chore(deps): update dependency @vercel/blob to ^0.25.0 Oct 8, 2024
@renovate renovate Bot changed the title chore(deps): update dependency @vercel/blob to ^0.25.0 chore(deps): update dependency @vercel/blob to ^0.26.0 Nov 6, 2024
@renovate renovate Bot force-pushed the renovate/vercel-blob-0.x branch from 8fb872a to 1635321 Compare November 6, 2024 16:55
@renovate renovate Bot changed the title chore(deps): update dependency @vercel/blob to ^0.26.0 chore(deps): update dependency @vercel/blob to ^0.27.0 Dec 4, 2024
@renovate renovate Bot force-pushed the renovate/vercel-blob-0.x branch from 1635321 to 49b7269 Compare December 4, 2024 17:41
@renovate renovate Bot changed the title chore(deps): update dependency @vercel/blob to ^0.27.0 chore(deps): update dependency @vercel/blob to ^0.27.0 - autoclosed Dec 8, 2024
@renovate renovate Bot closed this Dec 8, 2024
@renovate renovate Bot deleted the renovate/vercel-blob-0.x branch December 8, 2024 18:57
@renovate renovate Bot changed the title chore(deps): update dependency @vercel/blob to ^0.27.0 - autoclosed chore(deps): update dependency @vercel/blob to ^0.27.0 Dec 9, 2024
@renovate renovate Bot reopened this Dec 9, 2024
@renovate renovate Bot force-pushed the renovate/vercel-blob-0.x branch from 9dfcf05 to 49b7269 Compare December 9, 2024 04:59
@renovate renovate Bot force-pushed the renovate/vercel-blob-0.x branch from 49b7269 to 0d8b606 Compare August 10, 2025 14:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants