chore: document how to find changed API (#5435)

This commit is contained in:
Asher Gomez 2024-07-16 14:12:17 +10:00 committed by GitHub
parent 83fe1f754f
commit e68eaf70eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

10
.github/FAQ.md vendored
View File

@ -95,6 +95,16 @@ import { bar } from "jsr:@std/foo@^0/bar";
This is possible thanks to JSR being immutable. For more information, see JSR's
[Immutability](https://jsr.io/docs/immutability) documentation.
## An API I was using is no longer available in the Standard Library. What happened to it?
It's most likely API has been moved, removed or renamed. These changes are
always noted in, and most easily found in the
[release notes](https://github.com/denoland/deno_std/releases). To find how an
API's been modified, search for your API in the **Find a release** search bar.
If you still cannot find the API you're looking for, please
[open an issue](https://github.com/denoland/deno_std/issues/new?assignees=&labels=bug%2C+needs+triage&projects=&template=bug_report.md&title=).
## How can I contribute to the Standard Library?
Check out the contributing guidelines [here](CONTRIBUTING.md).