Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2025

Bumps @remix-run/file-storage from 0.12.0 to 0.13.0.

Release notes

Sourced from @​remix-run/file-storage's releases.

route-pattern v0.13.0

  • BREAKING CHANGE: removed createRoutes and corresponding types (RouteMap, RouteDefs, and RouteDef). This functionality will be re-introduced in a future "router" package.
  • BREAKING CHANGE: removed RouteMap from createHrefBuilder generic type.
  • Expose Join type as public API
  • Expose HrefBuilderArgs type as public API
  • Optimization: compile patterns as needed instead of on instantiation

headers v0.13.0

  • Drop support for TypeScript < 5.7

form-data-parser v0.13.0

  • Throw FormDataParseError when the request body is malformed multipart/form-data. The underlying MultipartParseError is its cause.

multipart-parser v0.13.0

  • Build using tsc instead of esbuild. This means modules in the dist directory now mirror the layout of modules in the src directory.

file-storage v0.13.0

  • BREAKING CHANGE: LocalFileStorage class has been replaced with createFsFileStorage(directory)

  • BREAKING CHANGE: MemoryFileStorage class has been replaced with createMemoryFileStorage()

    // before
    import { LocalFileStorage } from '@remix-run/file-storage/local'
    import { MemoryFileStorage } from '@remix-run/file-storage/memory'
    let fsStorage = new LocalFileStorage('./files')
    let memoryStorage = new MemoryFileStorage()
    // after
    import { createFsFileStorage } from '@​remix-run/file-storage/fs'
    import { createMemoryFileStorage } from '@​remix-run/file-storage/memory'
    let fsStorage = createFsFileStorage('./files')
    let memoryStorage = createMemoryFileStorage()

Changelog

Sourced from @​remix-run/file-storage's changelog.

v0.13.0 (2025-11-25)

  • BREAKING CHANGE: LocalFileStorage class has been replaced with createFsFileStorage(directory)

  • BREAKING CHANGE: MemoryFileStorage class has been replaced with createMemoryFileStorage()

    // before
    import { LocalFileStorage } from '@remix-run/file-storage/local'
    import { MemoryFileStorage } from '@remix-run/file-storage/memory'
    let fsStorage = new LocalFileStorage('./files')
    let memoryStorage = new MemoryFileStorage()
    // after
    import { createFsFileStorage } from '@​remix-run/file-storage/fs'
    import { createMemoryFileStorage } from '@​remix-run/file-storage/memory'
    let fsStorage = createFsFileStorage('./files')
    let memoryStorage = createMemoryFileStorage()

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@remix-run/file-storage](https://github.com/remix-run/remix/tree/HEAD/packages/file-storage) from 0.12.0 to 0.13.0.
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/file-storage/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/v0.13.0/packages/file-storage)

---
updated-dependencies:
- dependency-name: "@remix-run/file-storage"
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 1, 2025
@github-actions github-actions bot merged commit dcf7cd5 into main Dec 1, 2025
5 of 6 checks passed
@github-actions github-actions bot deleted the dependabot/bun/remix-run/file-storage-0.13.0 branch December 1, 2025 01:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants