orhun / rustypaste

A minimal file upload/pastebin service.
https://blog.orhun.dev/blazingly-fast-file-sharing
MIT License
760 stars 47 forks source link

chore(deps): bump actix-multipart from 0.6.2 to 0.7.2 #322

Closed tessus closed 1 month ago

tessus commented 1 month ago

Bumps actix-multipart from 0.6.2 to 0.7.2.

Release notes

Sourced from actix-multipart's releases.

actix-multipart: v0.7.2

  • Fix re-exported version of actix-multipart-derive.

actix-multipart: v0.7.1

  • Expose LimitExceeded error type.

actix-multipart-derive: v0.7.0

  • Minimum supported Rust version (MSRV) is now 1.72.

actix-multipart: v0.7.0

  • Add MultipartError::ContentTypeIncompatible variant.
  • Add MultipartError::ContentDispositionNameMissing variant.
  • Add Field::bytes() method.
  • Rename MultipartError::{NoContentDisposition => ContentDispositionMissing} variant.
  • Rename MultipartError::{NoContentType => ContentTypeMissing} variant.
  • Rename MultipartError::{ParseContentType => ContentTypeParse} variant.
  • Rename MultipartError::{Boundary => BoundaryMissing} variant.
  • Rename MultipartError::{UnsupportedField => UnknownField} variant.
  • Remove top-level re-exports of test utilities.

actix-files: v0.6.6

  • Update tokio-uring dependency to 0.4.
  • Minimum supported Rust version (MSRV) is now 1.72.

actix-files: v0.6.5

  • Fix handling of special characters in filenames.

actix-files: v0.6.4

  • Fix handling of newlines in filenames.
  • Minimum supported Rust version (MSRV) is now 1.68 due to transitive time dependency.

actix-files: v0.6.3

  • XHTML files now use Content-Disposition: inline instead of attachment. #2903
  • Minimum supported Rust version (MSRV) is now 1.59 due to transitive time dependency.
  • Update tokio-uring dependency to 0.4.

#2903: actix/actix-web#2903

Changelog

Sourced from actix-multipart's changelog.

[0.7.2] - 2018-07-26

Added

  • Add implementation of FromRequest<S> for Option<T> and Result<T, Error>

  • Allow to handle application prefix, i.e. allow to handle /app path for application with /app prefix. Check App::prefix() api doc.

  • Add CookieSessionBackend::http_only method to set HttpOnly directive of cookies

Changed

  • Upgrade to cookie 0.11

  • Removed the timestamp from the default logger middleware

Fixed

  • Missing response header "content-encoding" #421

  • Fix stream draining for http/2 connections #290

[0.7.1] - 2018-07-21

Fixed

  • Fixed default_resource 'not yet implemented' panic #410

[0.7.0] - 2018-07-21

Added

  • Add fs::StaticFileConfig to provide means of customizing static file services. It allows to map mime to Content-Disposition, specify whether to use ETag and Last-Modified and allowed methods.

  • Add .has_prefixed_resource() method to router::ResourceInfo for route matching with prefix awareness

  • Add HttpMessage::readlines() for reading line by line.

  • Add ClientRequestBuilder::form() for sending application/x-www-form-urlencoded requests.

  • Add method to configure custom error handler to Form extractor.

... (truncated)

Commits