question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Deprecate and remove std/mime/multipart

See original GitHub issue

We have FormData that has all the same functionality as std/mime/multipart as far as I can tell.

Let’s deprecate this module for 1.18, and remove it for 1.19.

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Reactions:3
  • Comments:8 (8 by maintainers)

github_iconTop GitHub Comments

2reactions
lucacasonatocommented, Jan 2, 2022

You call Request.form on the incoming request. This will give you a Promise<FormData>

1reaction
lucacasonatocommented, Apr 13, 2022

@ry How do you write multipart data using FormData?

const form = new FormData();
form.set("foo", "bar");
const req = new Request("https://google.com", { body: form });
Read more comments on GitHub >

github_iconTop Results From Across the Web

Why is std::iterator deprecated? - c++ - Stack Overflow
Template class std::iterator is set to be deprecated in C++17. Why so? It has been a handy way to make sure std::iterator_traits works, ......
Read more >
deno_std/Releases.md at main - GitHub
Deno standard library. ... BREAKING: remove deprecated std/hash module (#2786) ... BREAKING(mime/multipart): deprecate mime/multipart module (#2105) ...
Read more >
C++17 removed and deprecated features
The following table lists features that were removed in C++17. ... For more information see std::random_shuffle is deprecated in C++14.
Read more >
email.message: Representing an email ... - Python Docs
Use of the requote parameter with EmailMessage objects is deprecated. Note that existing parameter values of headers may be accessed through the params ......
Read more >
Go 1.17 Release Notes - The Go Programming Language
The go get -insecure flag is deprecated and has been removed. To permit the use of insecure schemes when fetching dependencies, please use...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found