Skip to content

Commit 113cabf

Browse files
committedNov 24, 2024··
Now minimum required version of Deno is 2.0.0
[ci skip]
1 parent 640a7d1 commit 113cabf

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed
 

‎docs/install.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ Fedify is available on [JSR] for [Deno] and on [npm] for [Bun] and [Node.js].
7373
### Deno
7474

7575
[Deno] is the primary runtime for Fedify. As a prerequisite, you need to have
76-
Deno 1.41.0 or later installed on your system. Then you can install Fedify
76+
Deno 2.0.0 or later installed on your system. Then you can install Fedify
7777
via the following command:
7878

7979
~~~~ sh
8080
deno add jsr:@fedify/fedify
8181
~~~~
8282

8383
Since Fedify requires [`Temporal`] API, which is an unstable feature in Deno as
84-
of July 2024, you need to add the `"temporal"` to the `"unstable"` field of
84+
of November 2024, you need to add the `"temporal"` to the `"unstable"` field of
8585
the *deno.json* file:
8686

8787
~~~~ json{5}

‎docs/manual/send.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ Linked Data Signatures
410410
*This API is available since Fedify 1.0.0.*
411411

412412
[Linked Data Signatures] is a more advanced and widely used, but *obsolete*,
413-
mechanism for signing portable ActivityPub activities. As of September 2024,
413+
mechanism for signing portable ActivityPub activities. As of November 2024,
414414
major ActivityPub implementations, such as Mastodon, et al., still rely on
415415
Linked Data Signatures for signing portable activities, despite they declare
416416
that Linked Data Signatures is outdated.

‎docs/tutorial/basics.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ The above commands will create a *deno.json* (in case of Deno) or *package.json*
119119

120120
> [!NOTE]
121121
> The [`"unstable"`] field in the *deno.json* file is required because Fedify
122-
> uses [`Temporal`] API, which is an unstable feature in Deno as of
123-
> July 2024. By adding `"temporal"` to the `"unstable"` field, you can use the
122+
> uses [`Temporal`] API, which is an unstable feature in Deno as of November
123+
> 2024. By adding `"temporal"` to the `"unstable"` field, you can use the
124124
> Fedify framework without any issues.
125125
126126
> [!NOTE]

‎docs/tutorial/microblog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1443,7 +1443,7 @@ tutorial.) Since the primary key is on `(user_id, type)`, there can be a maximum
14431443
of two key pairs for one user.
14441444
14451445
> [!TIP]
1446-
> We can't go into detail in this tutorial, but as of September 2024,
1446+
> We can't go into detail in this tutorial, but as of November 2024,
14471447
> the ActivityPub network is in the process of transitioning from
14481448
> the RSA-PKCS#1-v1.5 type to the Ed25519 type. Some software only
14491449
> accepts the RSA-PKCS#1-v1.5 type, while some software accepts

‎src/dnt.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ await build({
5959
"https://github.com/sponsors/dahlia",
6060
],
6161
engines: {
62-
"deno": ">=1.41.0",
62+
"deno": ">=2.0.0",
6363
"node": ">=20.0.0",
6464
"bun": ">=1.1.0",
6565
},

0 commit comments

Comments
 (0)
Please sign in to comment.