Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(archive): update @std/archive deprecation notices #6028

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions archive/_common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import type { Reader } from "@std/io/types";
* Base interface for {@linkcode TarMeta}.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*/
Expand Down Expand Up @@ -48,7 +48,7 @@ export interface TarInfo {
* Base interface for {@linkcode TarMetaWithLinkName}.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*/
Expand Down
2 changes: 1 addition & 1 deletion archive/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
* ```
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*
Expand Down
8 changes: 4 additions & 4 deletions archive/tar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export type { TarInfo, TarMeta };
* Options for {@linkcode Tar.append}.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*/
Expand Down Expand Up @@ -126,7 +126,7 @@ function formatHeader(data: TarData): Uint8Array {
* Base interface for {@linkcode TarDataWithSource}.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*/
Expand Down Expand Up @@ -180,7 +180,7 @@ export interface TarData {
* Tar data interface for {@linkcode Tar.data}.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*/
Expand All @@ -202,7 +202,7 @@ export interface TarDataWithSource extends TarData {
* have the '.tar' extension.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* ### Usage
* The workflow is to create a Tar instance, append files to it, and then write the
Expand Down
10 changes: 5 additions & 5 deletions archive/untar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export type { Reader, Seeker };
* symbolic link values without polluting the world of archive writers.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*/
Expand All @@ -60,7 +60,7 @@ export interface TarMetaWithLinkName extends TarMeta {
* Tar header with raw, unprocessed bytes as values.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*/
Expand Down Expand Up @@ -103,7 +103,7 @@ function parseHeader(buffer: Uint8Array): TarHeader {
* Tar entry
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*
Expand Down Expand Up @@ -134,7 +134,7 @@ export interface TarEntry extends TarMetaWithLinkName {}
* Contains tar header metadata and a reader to the entry's body.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*
Expand Down Expand Up @@ -338,7 +338,7 @@ export class TarEntry implements Reader {
* archives typically have the '.tar' extension.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* ### Supported file formats
* Only the ustar file format is supported. This is the most common format. The
Expand Down