@fedify/fedify 1.5.0-dev.656 → 1.5.0-dev.667
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 +67 -0
- package/esm/deno.js +1 -1
- package/esm/runtime/key.js +1 -1
- package/esm/vocab/vocab.js +176 -176
- package/package.json +1 -1
package/CHANGES.md
CHANGED
@@ -29,6 +29,19 @@ To be released.
|
|
29
29
|
[#209]: https://github.com/fedify-dev/fedify/issues/209
|
30
30
|
|
31
31
|
|
32
|
+
Version 1.4.2
|
33
|
+
-------------
|
34
|
+
|
35
|
+
Released on February 19, 2025.
|
36
|
+
|
37
|
+
- Fixed a bug where the `fedify init` command had failed to locate package
|
38
|
+
managers on Windows. [[#210]]
|
39
|
+
|
40
|
+
- The `fedify` command became aware of `FEDIFY_LOG_FILE` environment variable
|
41
|
+
to log messages to a file. If the variable is set, the command logs
|
42
|
+
messages to the file specified by the variable.
|
43
|
+
|
44
|
+
|
32
45
|
Version 1.4.1
|
33
46
|
-------------
|
34
47
|
|
@@ -127,6 +140,19 @@ Released on February 5, 2025.
|
|
127
140
|
[#195]: https://github.com/fedify-dev/fedify/issues/195
|
128
141
|
|
129
142
|
|
143
|
+
Version 1.3.9
|
144
|
+
-------------
|
145
|
+
|
146
|
+
Released on February 19, 2025.
|
147
|
+
|
148
|
+
- Fixed a bug where the `fedify init` command had failed to locate package
|
149
|
+
managers on Windows. [[#210]]
|
150
|
+
|
151
|
+
- The `fedify` command became aware of `FEDIFY_LOG_FILE` environment variable
|
152
|
+
to log messages to a file. If the variable is set, the command logs
|
153
|
+
messages to the file specified by the variable.
|
154
|
+
|
155
|
+
|
130
156
|
Version 1.3.8
|
131
157
|
-------------
|
132
158
|
|
@@ -341,6 +367,19 @@ Released on November 30, 2024.
|
|
341
367
|
[#193]: https://github.com/fedify-dev/fedify/issues/193
|
342
368
|
|
343
369
|
|
370
|
+
Version 1.2.13
|
371
|
+
--------------
|
372
|
+
|
373
|
+
Released on February 19, 2025.
|
374
|
+
|
375
|
+
- Fixed a bug where the `fedify init` command had failed to locate package
|
376
|
+
managers on Windows. [[#210]]
|
377
|
+
|
378
|
+
- The `fedify` command became aware of `FEDIFY_LOG_FILE` environment variable
|
379
|
+
to log messages to a file. If the variable is set, the command logs
|
380
|
+
messages to the file specified by the variable.
|
381
|
+
|
382
|
+
|
344
383
|
Version 1.2.12
|
345
384
|
--------------
|
346
385
|
|
@@ -601,6 +640,19 @@ Released on October 31, 2024.
|
|
601
640
|
[#118]: https://github.com/fedify-dev/fedify/issues/118
|
602
641
|
|
603
642
|
|
643
|
+
Version 1.1.13
|
644
|
+
--------------
|
645
|
+
|
646
|
+
Released on February 19, 2025.
|
647
|
+
|
648
|
+
- Fixed a bug where the `fedify init` command had failed to locate package
|
649
|
+
managers on Windows. [[#210]]
|
650
|
+
|
651
|
+
- The `fedify` command became aware of `FEDIFY_LOG_FILE` environment variable
|
652
|
+
to log messages to a file. If the variable is set, the command logs
|
653
|
+
messages to the file specified by the variable.
|
654
|
+
|
655
|
+
|
604
656
|
Version 1.1.12
|
605
657
|
--------------
|
606
658
|
|
@@ -902,6 +954,21 @@ Released on October 20, 2024.
|
|
902
954
|
[#150]: https://github.com/fedify-dev/fedify/issues/150
|
903
955
|
|
904
956
|
|
957
|
+
Version 1.0.16
|
958
|
+
--------------
|
959
|
+
|
960
|
+
Released on February 19, 2025.
|
961
|
+
|
962
|
+
- Fixed a bug where the `fedify init` command had failed to locate package
|
963
|
+
managers on Windows. [[#210]]
|
964
|
+
|
965
|
+
- The `fedify` command became aware of `FEDIFY_LOG_FILE` environment variable
|
966
|
+
to log messages to a file. If the variable is set, the command logs
|
967
|
+
messages to the file specified by the variable.
|
968
|
+
|
969
|
+
[#210]: https://github.com/fedify-dev/fedify/issues/210
|
970
|
+
|
971
|
+
|
905
972
|
Version 1.0.15
|
906
973
|
--------------
|
907
974
|
|
package/esm/deno.js
CHANGED
package/esm/runtime/key.js
CHANGED
@@ -95,7 +95,7 @@ export async function importMultibaseKey(key) {
|
|
95
95
|
type: "pkcs1",
|
96
96
|
});
|
97
97
|
const spki = keyObject.export({ type: "spki", format: "der" }).buffer;
|
98
|
-
return await dntShim.crypto.subtle.importKey("spki", spki, { name: "RSASSA-PKCS1-v1_5", hash: "SHA-256" }, true, ["verify"]);
|
98
|
+
return await dntShim.crypto.subtle.importKey("spki", new Uint8Array(spki), { name: "RSASSA-PKCS1-v1_5", hash: "SHA-256" }, true, ["verify"]);
|
99
99
|
}
|
100
100
|
else if (code === 0xed) { // ed25519-pub
|
101
101
|
return await dntShim.crypto.subtle.importKey("raw", content, "Ed25519", true, ["verify"]);
|