@fedify/fedify 1.3.10 → 1.3.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGES.md +127 -0
- package/esm/deno.js +2 -2
- package/esm/vocab/application.yaml +1 -0
- package/esm/vocab/group.yaml +1 -0
- package/esm/vocab/organization.yaml +1 -0
- package/esm/vocab/person.yaml +1 -0
- package/esm/vocab/service.yaml +1 -0
- package/esm/vocab/vocab.js +183 -173
- package/package.json +2 -2
- package/types/vocab/vocab.d.ts.map +1 -1
package/CHANGES.md
CHANGED
@@ -3,6 +3,35 @@
|
|
3
3
|
Fedify changelog
|
4
4
|
================
|
5
5
|
|
6
|
+
Version 1.3.12
|
7
|
+
--------------
|
8
|
+
|
9
|
+
Released on February 28, 2025.
|
10
|
+
|
11
|
+
- Made `fedify init` to install *@fedify/h3* 0.1.2 which is compatible with
|
12
|
+
Fedify 1.0.0 or later versions when `--web-framework nitro` option is
|
13
|
+
provided. [[#213]]
|
14
|
+
|
15
|
+
- Fixed a bug where `fedify init` had failed to initialize a project with
|
16
|
+
the `--runtime node --package-manager pnpm --web-framework nitro` option.
|
17
|
+
[[#213]]
|
18
|
+
|
19
|
+
|
20
|
+
Version 1.3.11
|
21
|
+
--------------
|
22
|
+
|
23
|
+
Released on February 25, 2025.
|
24
|
+
|
25
|
+
- Added the following default context to `Application`, `Group`,
|
26
|
+
`Organization`, `Person`, and `Service` classes:
|
27
|
+
|
28
|
+
~~~~ json
|
29
|
+
{
|
30
|
+
"Emoji": "http://joinmastodon.org/ns#Emoji"
|
31
|
+
}
|
32
|
+
~~~~
|
33
|
+
|
34
|
+
|
6
35
|
Version 1.3.10
|
7
36
|
--------------
|
8
37
|
|
@@ -243,6 +272,38 @@ Released on November 30, 2024.
|
|
243
272
|
[#193]: https://github.com/fedify-dev/fedify/issues/193
|
244
273
|
|
245
274
|
|
275
|
+
Version 1.2.16
|
276
|
+
--------------
|
277
|
+
|
278
|
+
Released on February 28, 2025.
|
279
|
+
|
280
|
+
- Made `fedify init` to install *@fedify/h3* 0.1.2 which is compatible with
|
281
|
+
Fedify 1.0.0 or later versions when `--web-framework nitro` option is
|
282
|
+
provided. [[#213]]
|
283
|
+
|
284
|
+
- Fixed a bug where `fedify init` had failed to initialize a project with
|
285
|
+
the `--runtime node --package-manager pnpm --web-framework nitro` option.
|
286
|
+
[[#213]]
|
287
|
+
|
288
|
+
- Made `fedify init` to install *@logtape/logtape* 0.7.2 which is the version
|
289
|
+
used in Fedify 1.2.x.
|
290
|
+
|
291
|
+
|
292
|
+
Version 1.2.15
|
293
|
+
--------------
|
294
|
+
|
295
|
+
Released on February 25, 2025.
|
296
|
+
|
297
|
+
- Added the following default context to `Application`, `Group`,
|
298
|
+
`Organization`, `Person`, and `Service` classes:
|
299
|
+
|
300
|
+
~~~~ json
|
301
|
+
{
|
302
|
+
"Emoji": "http://joinmastodon.org/ns#Emoji"
|
303
|
+
}
|
304
|
+
~~~~
|
305
|
+
|
306
|
+
|
246
307
|
Version 1.2.14
|
247
308
|
--------------
|
248
309
|
|
@@ -529,6 +590,38 @@ Released on October 31, 2024.
|
|
529
590
|
[#118]: https://github.com/fedify-dev/fedify/issues/118
|
530
591
|
|
531
592
|
|
593
|
+
Version 1.1.16
|
594
|
+
--------------
|
595
|
+
|
596
|
+
Released on February 28, 2025.
|
597
|
+
|
598
|
+
- Made `fedify init` to install *@fedify/h3* 0.1.2 which is compatible with
|
599
|
+
Fedify 1.0.0 or later versions when `--web-framework nitro` option is
|
600
|
+
provided. [[#213]]
|
601
|
+
|
602
|
+
- Fixed a bug where `fedify init` had failed to initialize a project with
|
603
|
+
the `--runtime node --package-manager pnpm --web-framework nitro` option.
|
604
|
+
[[#213]]
|
605
|
+
|
606
|
+
- Made `fedify init` to install *@logtape/logtape* 0.6.5 which is the version
|
607
|
+
used in Fedify 1.1.x.
|
608
|
+
|
609
|
+
|
610
|
+
Version 1.1.15
|
611
|
+
--------------
|
612
|
+
|
613
|
+
Released on February 25, 2025.
|
614
|
+
|
615
|
+
- Added the following default context to `Application`, `Group`,
|
616
|
+
`Organization`, `Person`, and `Service` classes:
|
617
|
+
|
618
|
+
~~~~ json
|
619
|
+
{
|
620
|
+
"Emoji": "http://joinmastodon.org/ns#Emoji"
|
621
|
+
}
|
622
|
+
~~~~
|
623
|
+
|
624
|
+
|
532
625
|
Version 1.1.14
|
533
626
|
--------------
|
534
627
|
|
@@ -856,6 +949,40 @@ Released on October 20, 2024.
|
|
856
949
|
[#150]: https://github.com/fedify-dev/fedify/issues/150
|
857
950
|
|
858
951
|
|
952
|
+
Version 1.0.19
|
953
|
+
--------------
|
954
|
+
|
955
|
+
Released on February 28, 2025.
|
956
|
+
|
957
|
+
- Made `fedify init` to install *@fedify/h3* 0.1.2 which is compatible with
|
958
|
+
Fedify 1.0.0 or later versions when `--web-framework nitro` option is
|
959
|
+
provided. [[#213]]
|
960
|
+
|
961
|
+
- Fixed a bug where `fedify init` had failed to initialize a project with
|
962
|
+
the `--runtime node --package-manager pnpm --web-framework nitro` option.
|
963
|
+
[[#213]]
|
964
|
+
|
965
|
+
- Made `fedify init` to install *@logtape/logtape* 0.6.5 which is the version
|
966
|
+
used in Fedify 1.0.x.
|
967
|
+
|
968
|
+
[#213]: https://github.com/fedify-dev/fedify/issues/213
|
969
|
+
|
970
|
+
|
971
|
+
Version 1.0.18
|
972
|
+
--------------
|
973
|
+
|
974
|
+
Released on February 25, 2025.
|
975
|
+
|
976
|
+
- Added the following default context to `Application`, `Group`,
|
977
|
+
`Organization`, `Person`, and `Service` classes:
|
978
|
+
|
979
|
+
~~~~ json
|
980
|
+
{
|
981
|
+
"Emoji": "http://joinmastodon.org/ns#Emoji"
|
982
|
+
}
|
983
|
+
~~~~
|
984
|
+
|
985
|
+
|
859
986
|
Version 1.0.17
|
860
987
|
--------------
|
861
988
|
|
package/esm/deno.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
export default {
|
2
2
|
"name": "@fedify/fedify",
|
3
|
-
"version": "1.3.
|
3
|
+
"version": "1.3.12",
|
4
4
|
"license": "MIT",
|
5
5
|
"exports": {
|
6
6
|
".": "./mod.ts",
|
@@ -32,7 +32,7 @@ export default {
|
|
32
32
|
"@fedify/fedify/x/sveltekit": "./x/sveltekit.ts",
|
33
33
|
"@hongminhee/aitertools": "jsr:@hongminhee/aitertools@^0.6.0",
|
34
34
|
"@hugoalh/http-header-link": "jsr:@hugoalh/http-header-link@^1.0.2",
|
35
|
-
"@logtape/logtape": "jsr:@logtape/logtape@^0.8.
|
35
|
+
"@logtape/logtape": "jsr:@logtape/logtape@^0.8.2",
|
36
36
|
"@opentelemetry/api": "npm:@opentelemetry/api@^1.9.0",
|
37
37
|
"@opentelemetry/semantic-conventions": "npm:@opentelemetry/semantic-conventions@^1.27.0",
|
38
38
|
"@phensley/language-tag": "npm:@phensley/language-tag@^1.9.0",
|
package/esm/vocab/group.yaml
CHANGED
package/esm/vocab/person.yaml
CHANGED