@fedify/fedify 1.6.0-dev.813 → 1.6.0-experiment.0

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.
Files changed (1249) hide show
  1. package/dist/_virtual/rolldown_runtime.js +15 -0
  2. package/dist/codegen/fs.js +23 -0
  3. package/dist/codegen/schema.js +87 -0
  4. package/dist/codegen/type.js +394 -0
  5. package/dist/compat/mod.d.ts +5 -0
  6. package/dist/compat/mod.js +7 -0
  7. package/dist/compat/transformers.d.ts +101 -0
  8. package/dist/compat/transformers.js +98 -0
  9. package/dist/compat/transformers.test.d.ts +2 -0
  10. package/dist/compat/transformers.test.js +69 -0
  11. package/dist/compat/types.d.ts +18 -0
  12. package/dist/deno.js +109 -0
  13. package/dist/federation/builder.d.ts +19 -0
  14. package/dist/federation/builder.js +491 -0
  15. package/dist/federation/builder.test.d.ts +2 -0
  16. package/dist/federation/builder.test.js +123 -0
  17. package/dist/federation/callback.d.ts +211 -0
  18. package/dist/federation/collection.d.ts +36 -0
  19. package/dist/federation/collection.js +48 -0
  20. package/dist/federation/collection.test.d.ts +2 -0
  21. package/dist/federation/collection.test.js +25 -0
  22. package/dist/federation/context.d.ts +724 -0
  23. package/dist/federation/federation.d.ts +689 -0
  24. package/dist/federation/handler.d.ts +44 -0
  25. package/dist/federation/handler.js +543 -0
  26. package/dist/federation/handler.test.d.ts +2 -0
  27. package/dist/federation/handler.test.js +1186 -0
  28. package/dist/federation/inbox.js +165 -0
  29. package/dist/federation/inbox.test.d.ts +2 -0
  30. package/dist/federation/inbox.test.js +88 -0
  31. package/dist/federation/keycache.js +47 -0
  32. package/dist/federation/keycache.test.d.ts +2 -0
  33. package/dist/federation/keycache.test.js +55 -0
  34. package/dist/federation/kv.d.ts +74 -0
  35. package/dist/federation/kv.js +51 -0
  36. package/dist/federation/kv.test.d.ts +2 -0
  37. package/dist/federation/kv.test.js +25 -0
  38. package/dist/federation/middleware.d.ts +101 -0
  39. package/dist/federation/middleware.js +1775 -0
  40. package/dist/federation/middleware.test.d.ts +2 -0
  41. package/dist/federation/middleware.test.js +1491 -0
  42. package/dist/federation/mod.d.ts +15 -0
  43. package/dist/federation/mod.js +14 -0
  44. package/dist/federation/mq.d.ts +127 -0
  45. package/dist/federation/mq.js +147 -0
  46. package/dist/federation/mq.test.d.ts +2 -0
  47. package/dist/federation/mq.test.js +124 -0
  48. package/dist/federation/negotiation.js +63 -0
  49. package/dist/federation/retry.d.ts +71 -0
  50. package/dist/federation/retry.js +36 -0
  51. package/dist/federation/retry.test.d.ts +2 -0
  52. package/dist/federation/retry.test.js +44 -0
  53. package/dist/federation/router.d.ts +91 -0
  54. package/dist/federation/router.js +99 -0
  55. package/dist/federation/router.test.d.ts +2 -0
  56. package/dist/federation/router.test.js +78 -0
  57. package/dist/federation/send.d.ts +29 -0
  58. package/dist/federation/send.js +127 -0
  59. package/dist/federation/send.test.d.ts +2 -0
  60. package/dist/federation/send.test.js +214 -0
  61. package/dist/mod.d.ts +36 -0
  62. package/dist/mod.js +33 -0
  63. package/dist/node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js +101 -0
  64. package/dist/node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/router.js +93 -0
  65. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert.js +26 -0
  66. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_equals.js +49 -0
  67. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_exists.js +32 -0
  68. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_false.js +26 -0
  69. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_greater.js +34 -0
  70. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_greater_or_equal.js +34 -0
  71. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_instance_of.js +40 -0
  72. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_is_error.js +48 -0
  73. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_not_equals.js +36 -0
  74. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_object_match.js +4 -0
  75. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_rejects.js +42 -0
  76. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_strict_equals.js +53 -0
  77. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_string_includes.js +32 -0
  78. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_throws.js +38 -0
  79. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assertion_error.js +33 -0
  80. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/equal.js +79 -0
  81. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/mod.js +19 -0
  82. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/assertion_state.js +177 -0
  83. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/build_message.js +101 -0
  84. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/diff.js +274 -0
  85. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/diff_str.js +148 -0
  86. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/format.js +37 -0
  87. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/mod.js +10 -0
  88. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/styles.js +172 -0
  89. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/assert_path.js +11 -0
  90. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/constants.js +16 -0
  91. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/dirname.js +14 -0
  92. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/from_file_url.js +13 -0
  93. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/normalize.js +14 -0
  94. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/normalize_string.js +60 -0
  95. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/strip_trailing_separators.js +15 -0
  96. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_os.js +9 -0
  97. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/basename.js +4 -0
  98. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/common.js +4 -0
  99. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/constants.js +4 -0
  100. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/dirname.js +35 -0
  101. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/extname.js +4 -0
  102. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/format.js +4 -0
  103. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/from_file_url.js +34 -0
  104. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/glob_to_regexp.js +4 -0
  105. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/is_absolute.js +4 -0
  106. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/join.js +35 -0
  107. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/join_globs.js +4 -0
  108. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/mod.js +7 -0
  109. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/normalize.js +4 -0
  110. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/normalize_glob.js +4 -0
  111. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/parse.js +4 -0
  112. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/_util.js +13 -0
  113. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/dirname.js +54 -0
  114. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/from_file_url.js +27 -0
  115. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/join.js +47 -0
  116. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/normalize.js +59 -0
  117. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/relative.js +4 -0
  118. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/resolve.js +4 -0
  119. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/to_file_url.js +4 -0
  120. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/to_namespaced_path.js +4 -0
  121. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/_util.js +19 -0
  122. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/dirname.js +75 -0
  123. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/from_file_url.js +31 -0
  124. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/join.js +54 -0
  125. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/normalize.js +87 -0
  126. package/dist/node_modules/.pnpm/@jsr_std__url@1.0.0-rc.3/node_modules/@jsr/std__url/_strip.js +17 -0
  127. package/dist/node_modules/.pnpm/@jsr_std__url@1.0.0-rc.3/node_modules/@jsr/std__url/dirname.js +38 -0
  128. package/dist/node_modules/.pnpm/@jsr_std__url@1.0.0-rc.3/node_modules/@jsr/std__url/join.js +36 -0
  129. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_chars.js +47 -0
  130. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_dumper_state.js +4 -0
  131. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_loader_state.js +884 -0
  132. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_schema.js +120 -0
  133. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/binary.js +92 -0
  134. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/bool.js +41 -0
  135. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/float.js +58 -0
  136. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/int.js +118 -0
  137. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/map.js +18 -0
  138. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/merge.js +14 -0
  139. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/nil.js +23 -0
  140. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/omap.js +31 -0
  141. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/pairs.js +22 -0
  142. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/regexp.js +29 -0
  143. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/seq.js +14 -0
  144. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/set.js +17 -0
  145. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/str.js +14 -0
  146. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/timestamp.js +57 -0
  147. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/undefined.js +24 -0
  148. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_utils.js +17 -0
  149. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/mod.js +5 -0
  150. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/parse.js +54 -0
  151. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/stringify.js +4 -0
  152. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/AlwaysShrinkableArbitrary.js +30 -0
  153. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/ArrayArbitrary.js +203 -0
  154. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/ArrayInt64Arbitrary.js +122 -0
  155. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/BigIntArbitrary.js +63 -0
  156. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/ConstantArbitrary.js +58 -0
  157. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/FrequencyArbitrary.js +136 -0
  158. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/IntegerArbitrary.js +64 -0
  159. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/LazyArbitrary.js +29 -0
  160. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/StringUnitArbitrary.js +45 -0
  161. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/TupleArbitrary.js +74 -0
  162. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/WithShrinkFromOtherArbitrary.js +40 -0
  163. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/AnyArbitraryBuilder.js +97 -0
  164. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/BoxedArbitraryBuilder.js +13 -0
  165. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/CharacterArbitraryBuilder.js +17 -0
  166. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/RestrictedIntegerArbitraryBuilder.js +23 -0
  167. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/TypedIntArrayArbitraryBuilder.js +32 -0
  168. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/data/GraphemeRanges.js +990 -0
  169. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/ArrayInt64.js +98 -0
  170. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/BiasNumericRange.js +53 -0
  171. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/BuildSlicedGenerator.js +15 -0
  172. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/CustomEqualSet.js +27 -0
  173. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/DepthContext.js +24 -0
  174. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/DoubleHelpers.js +96 -0
  175. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/DoubleOnlyHelpers.js +25 -0
  176. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/FloatHelpers.js +57 -0
  177. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/FloatOnlyHelpers.js +26 -0
  178. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/FloatingOnlyHelpers.js +26 -0
  179. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/GraphemeRangesHelpers.js +58 -0
  180. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/MaxLengthFromMinLength.js +72 -0
  181. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/NoUndefinedAsContext.js +16 -0
  182. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/QualifiedObjectConstraints.js +58 -0
  183. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/SameValueSet.js +41 -0
  184. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/SameValueZeroSet.js +33 -0
  185. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/ShrinkBigInt.js +37 -0
  186. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/ShrinkInteger.js +41 -0
  187. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/SlicesForStringBuilder.js +74 -0
  188. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/StrictlyEqualSet.js +38 -0
  189. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/TokenizeString.js +47 -0
  190. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/implementations/NoopSlicedGenerator.js +21 -0
  191. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/implementations/SlicedBasedGenerator.js +53 -0
  192. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/ArrayToMap.js +16 -0
  193. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/ArrayToSet.js +16 -0
  194. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/CodePointsToString.js +17 -0
  195. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/IndexToCharString.js +20 -0
  196. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/IndexToMappedConstant.js +69 -0
  197. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/IndexToPrintableIndex.js +18 -0
  198. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/KeyValuePairsToObject.js +42 -0
  199. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/PatternsToString.js +32 -0
  200. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/TimeToDate.js +30 -0
  201. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/UnboxedToBoxed.js +22 -0
  202. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/anything.js +14 -0
  203. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/array.js +22 -0
  204. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/bigInt.js +38 -0
  205. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/boolean.js +24 -0
  206. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/constant.js +13 -0
  207. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/constantFrom.js +14 -0
  208. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/date.js +30 -0
  209. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/dictionary.js +27 -0
  210. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/double.js +54 -0
  211. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/float.js +60 -0
  212. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/float32Array.js +22 -0
  213. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/float64Array.js +22 -0
  214. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/fullUnicode.js +24 -0
  215. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/fullUnicodeString.js +20 -0
  216. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/int16Array.js +15 -0
  217. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/int32Array.js +15 -0
  218. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/int8Array.js +15 -0
  219. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/integer.js +26 -0
  220. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/letrec.js +28 -0
  221. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/mapToConstant.js +26 -0
  222. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/maxSafeInteger.js +15 -0
  223. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/nat.js +17 -0
  224. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/noBias.js +11 -0
  225. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/oneof.js +31 -0
  226. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/sparseArray.js +68 -0
  227. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/string.js +32 -0
  228. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/tuple.js +13 -0
  229. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uint16Array.js +15 -0
  230. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uint32Array.js +15 -0
  231. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uint8Array.js +15 -0
  232. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uint8ClampedArray.js +15 -0
  233. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uniqueArray.js +47 -0
  234. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/arbitrary/definition/Arbitrary.js +184 -0
  235. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/arbitrary/definition/Value.js +31 -0
  236. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/precondition/PreconditionFailure.js +19 -0
  237. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/IRawProperty.js +12 -0
  238. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/IgnoreEqualValuesProperty.js +52 -0
  239. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/Property.generic.js +77 -0
  240. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/Property.js +22 -0
  241. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/SkipAfterProperty.js +61 -0
  242. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/TimeoutProperty.js +52 -0
  243. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/UnbiasedProperty.js +29 -0
  244. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/DecorateProperty.js +26 -0
  245. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/Runner.js +61 -0
  246. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/RunnerIterator.js +47 -0
  247. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/SourceValuesIterator.js +35 -0
  248. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/Tosser.js +33 -0
  249. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/configuration/GlobalParameters.js +12 -0
  250. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/configuration/QualifiedParameters.js +121 -0
  251. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/configuration/VerbosityLevel.js +14 -0
  252. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/reporter/ExecutionStatus.js +14 -0
  253. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/reporter/RunExecution.js +116 -0
  254. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/utils/PathWalker.js +24 -0
  255. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/utils/RunDetailsFormatter.js +135 -0
  256. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/symbols.js +15 -0
  257. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/random/generator/Random.js +48 -0
  258. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/stream/LazyIterableIterator.js +24 -0
  259. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/stream/Stream.js +84 -0
  260. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/stream/StreamHelpers.js +50 -0
  261. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/utils/apply.js +28 -0
  262. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/utils/globals.js +309 -0
  263. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/utils/stringify.js +217 -0
  264. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UniformArrayIntDistribution.js +20 -0
  265. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UniformBigIntDistribution.js +20 -0
  266. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UniformIntDistribution.js +20 -0
  267. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UnsafeUniformArrayIntDistribution.js +20 -0
  268. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UnsafeUniformBigIntDistribution.js +32 -0
  269. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UnsafeUniformIntDistribution.js +43 -0
  270. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/internals/ArrayInt.js +139 -0
  271. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/internals/UnsafeUniformArrayIntDistributionInternal.js +26 -0
  272. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/internals/UnsafeUniformIntDistributionInternal.js +14 -0
  273. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/LinearCongruential.js +53 -0
  274. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/MersenneTwister.js +114 -0
  275. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/RandomGenerator.js +26 -0
  276. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/XorShift.js +83 -0
  277. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/XoroShiro.js +83 -0
  278. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/pure-rand-default.js +44 -0
  279. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/pure-rand.js +22 -0
  280. package/dist/nodeinfo/client.d.ts +96 -0
  281. package/dist/nodeinfo/client.js +272 -0
  282. package/dist/nodeinfo/client.test.d.ts +2 -0
  283. package/dist/nodeinfo/client.test.js +968 -0
  284. package/dist/nodeinfo/handler.js +46 -0
  285. package/dist/nodeinfo/handler.test.d.ts +2 -0
  286. package/dist/nodeinfo/handler.test.js +94 -0
  287. package/dist/nodeinfo/mod.d.ts +6 -0
  288. package/dist/nodeinfo/mod.js +9 -0
  289. package/dist/nodeinfo/semver.d.ts +78 -0
  290. package/dist/nodeinfo/semver.js +148 -0
  291. package/dist/nodeinfo/semver.test.d.ts +2 -0
  292. package/dist/nodeinfo/semver.test.js +134 -0
  293. package/dist/nodeinfo/types.d.ts +140 -0
  294. package/dist/nodeinfo/types.js +50 -0
  295. package/dist/nodeinfo/types.test.d.ts +2 -0
  296. package/dist/nodeinfo/types.test.js +197 -0
  297. package/dist/runtime/authdocloader.d.ts +56 -0
  298. package/dist/runtime/authdocloader.js +52 -0
  299. package/dist/runtime/authdocloader.test.d.ts +2 -0
  300. package/dist/runtime/authdocloader.test.js +54 -0
  301. package/dist/runtime/contexts.js +4116 -0
  302. package/dist/runtime/docloader.d.ts +211 -0
  303. package/dist/runtime/docloader.js +291 -0
  304. package/dist/runtime/docloader.test.d.ts +2 -0
  305. package/dist/runtime/docloader.test.js +428 -0
  306. package/dist/runtime/key.d.ts +66 -0
  307. package/dist/runtime/key.js +156 -0
  308. package/dist/runtime/key.test.d.ts +2 -0
  309. package/dist/runtime/key.test.js +93 -0
  310. package/dist/runtime/langstr.d.ts +24 -0
  311. package/dist/runtime/langstr.js +32 -0
  312. package/dist/runtime/langstr.test.d.ts +2 -0
  313. package/dist/runtime/langstr.test.js +31 -0
  314. package/dist/runtime/mod.d.ts +7 -0
  315. package/dist/runtime/mod.js +10 -0
  316. package/dist/runtime/multibase/base.js +32 -0
  317. package/dist/runtime/multibase/constants.js +172 -0
  318. package/dist/runtime/multibase/index.js +57 -0
  319. package/dist/runtime/multibase/multibase.test.d.ts +2 -0
  320. package/dist/runtime/multibase/multibase.test.js +351 -0
  321. package/dist/runtime/multibase/rfc4648.js +61 -0
  322. package/dist/runtime/multibase/util.js +21 -0
  323. package/dist/runtime/url.js +67 -0
  324. package/dist/runtime/url.test.d.ts +2 -0
  325. package/dist/runtime/url.test.js +43 -0
  326. package/dist/sig/http.d.ts +143 -0
  327. package/dist/sig/http.js +720 -0
  328. package/dist/sig/http.test.d.ts +2 -0
  329. package/dist/sig/http.test.js +1094 -0
  330. package/dist/sig/key.d.ts +125 -0
  331. package/dist/sig/key.js +257 -0
  332. package/dist/sig/key.test.d.ts +2 -0
  333. package/dist/sig/key.test.js +242 -0
  334. package/dist/sig/ld.d.ts +150 -0
  335. package/dist/sig/ld.js +270 -0
  336. package/dist/sig/ld.test.d.ts +2 -0
  337. package/dist/sig/ld.test.js +224 -0
  338. package/dist/sig/mod.d.ts +8 -0
  339. package/dist/sig/mod.js +11 -0
  340. package/dist/sig/owner.d.ts +74 -0
  341. package/dist/sig/owner.js +89 -0
  342. package/dist/sig/owner.test.d.ts +2 -0
  343. package/dist/sig/owner.test.js +45 -0
  344. package/dist/sig/proof.d.ts +134 -0
  345. package/dist/sig/proof.js +262 -0
  346. package/dist/sig/proof.test.d.ts +2 -0
  347. package/dist/sig/proof.test.js +263 -0
  348. package/dist/testing/context.js +94 -0
  349. package/dist/testing/docloader.js +48 -0
  350. package/dist/testing/docloader.test.d.ts +2 -0
  351. package/dist/testing/docloader.test.js +15 -0
  352. package/dist/testing/keys.js +123 -0
  353. package/dist/testing/mod.js +87 -0
  354. package/dist/vocab/actor.d.ts +133 -0
  355. package/dist/vocab/actor.js +148 -0
  356. package/dist/vocab/actor.test.d.ts +2 -0
  357. package/dist/vocab/actor.test.js +114 -0
  358. package/dist/vocab/constants.d.ts +24 -0
  359. package/dist/vocab/constants.js +17 -0
  360. package/dist/vocab/lookup.d.ts +123 -0
  361. package/dist/vocab/lookup.js +162 -0
  362. package/dist/vocab/lookup.test.d.ts +2 -0
  363. package/dist/vocab/lookup.test.js +113 -0
  364. package/dist/vocab/mod.d.ts +8 -0
  365. package/dist/vocab/mod.js +11 -0
  366. package/dist/vocab/type.d.ts +107 -0
  367. package/dist/vocab/type.js +13 -0
  368. package/dist/vocab/type.test.d.ts +2 -0
  369. package/dist/vocab/type.test.js +24 -0
  370. package/dist/vocab/vocab.d.ts +14448 -0
  371. package/dist/vocab/vocab.js +35617 -0
  372. package/dist/vocab/vocab.test.d.ts +2 -0
  373. package/dist/vocab/vocab.test.js +849 -0
  374. package/dist/webfinger/handler.js +140 -0
  375. package/dist/webfinger/handler.test.d.ts +2 -0
  376. package/dist/webfinger/handler.test.js +483 -0
  377. package/dist/webfinger/jrd.d.ts +60 -0
  378. package/dist/webfinger/lookup.d.ts +47 -0
  379. package/dist/webfinger/lookup.js +131 -0
  380. package/dist/webfinger/lookup.test.d.ts +2 -0
  381. package/dist/webfinger/lookup.test.js +119 -0
  382. package/dist/webfinger/mod.d.ts +5 -0
  383. package/dist/webfinger/mod.js +7 -0
  384. package/dist/x/denokv.js +41 -0
  385. package/dist/x/hono.d.ts +40 -0
  386. package/dist/x/hono.js +48 -0
  387. package/dist/x/sveltekit.d.ts +36 -0
  388. package/dist/x/sveltekit.js +56 -0
  389. package/package.json +57 -60
  390. package/CHANGES.md +0 -3883
  391. package/CONTRIBUTING.md +0 -272
  392. package/FEDERATION.md +0 -85
  393. package/LICENSE +0 -20
  394. package/SECURITY.md +0 -22
  395. package/SPONSORS.md +0 -47
  396. package/esm/_dnt.polyfills.js +0 -15
  397. package/esm/_dnt.shims.js +0 -70
  398. package/esm/compat/mod.js +0 -3
  399. package/esm/compat/transformers.js +0 -95
  400. package/esm/compat/types.js +0 -1
  401. package/esm/deno.js +0 -110
  402. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/_internal/compareValues.js +0 -9
  403. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/at.js +0 -28
  404. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/chunk.js +0 -36
  405. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/compact.js +0 -21
  406. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/countBy.js +0 -36
  407. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/difference.js +0 -26
  408. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceBy.js +0 -38
  409. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceWith.js +0 -35
  410. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/drop.js +0 -20
  411. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRight.js +0 -23
  412. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRightWhile.js +0 -26
  413. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropWhile.js +0 -25
  414. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/fill.js +0 -37
  415. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMap.js +0 -24
  416. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMapDeep.js +0 -17
  417. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatten.js +0 -33
  418. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flattenDeep.js +0 -15
  419. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/forEachRight.js +0 -28
  420. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/groupBy.js +0 -44
  421. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/head.js +0 -18
  422. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/index.js +0 -60
  423. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/initial.js +0 -16
  424. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersection.js +0 -24
  425. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionBy.js +0 -37
  426. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionWith.js +0 -41
  427. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubset.js +0 -27
  428. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubsetWith.js +0 -34
  429. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/keyBy.js +0 -36
  430. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/last.js +0 -25
  431. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/maxBy.js +0 -37
  432. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/minBy.js +0 -37
  433. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/orderBy.js +0 -52
  434. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/partition.js +0 -36
  435. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pull.js +0 -33
  436. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pullAt.js +0 -25
  437. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/remove.js +0 -35
  438. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sample.js +0 -18
  439. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sampleSize.js +0 -35
  440. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/shuffle.js +0 -25
  441. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sortBy.js +0 -36
  442. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/tail.js +0 -27
  443. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/take.js +0 -27
  444. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRight.js +0 -29
  445. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRightWhile.js +0 -25
  446. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeWhile.js +0 -29
  447. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/toFilled.js +0 -22
  448. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/union.js +0 -21
  449. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionBy.js +0 -26
  450. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionWith.js +0 -24
  451. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniq.js +0 -18
  452. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqBy.js +0 -37
  453. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqWith.js +0 -26
  454. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzip.js +0 -31
  455. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzipWith.js +0 -26
  456. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/windowed.js +0 -44
  457. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/without.js +0 -24
  458. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xor.js +0 -23
  459. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorBy.js +0 -27
  460. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorWith.js +0 -26
  461. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zip.js +0 -39
  462. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipObject.js +0 -37
  463. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipWith.js +0 -32
  464. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getSymbols.js +0 -3
  465. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getTag.js +0 -13
  466. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/tags.js +0 -26
  467. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isArray.js +0 -23
  468. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isObjectLike.js +0 -27
  469. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isPlainObject.js +0 -51
  470. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isSymbol.js +0 -17
  471. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/eq.js +0 -16
  472. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toFinite.js +0 -26
  473. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toInteger.js +0 -23
  474. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toNumber.js +0 -23
  475. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/AbortError.js +0 -10
  476. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/TimeoutError.js +0 -10
  477. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/index.js +0 -2
  478. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/after.js +0 -40
  479. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/ary.js +0 -23
  480. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/asyncNoop.js +0 -10
  481. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/before.js +0 -40
  482. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curry.js +0 -42
  483. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curryRight.js +0 -44
  484. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/debounce.js +0 -97
  485. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flow.js +0 -24
  486. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flowRight.js +0 -21
  487. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/identity.js +0 -22
  488. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/index.js +0 -21
  489. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/memoize.js +0 -86
  490. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/negate.js +0 -16
  491. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/noop.js +0 -10
  492. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/once.js +0 -28
  493. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partial.js +0 -45
  494. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partialRight.js +0 -47
  495. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/rest.js +0 -40
  496. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/retry.js +0 -41
  497. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/spread.js +0 -21
  498. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/throttle.js +0 -46
  499. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/unary.js +0 -18
  500. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/index.js +0 -65
  501. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/clamp.js +0 -23
  502. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/inRange.js +0 -24
  503. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/index.js +0 -13
  504. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/mean.js +0 -17
  505. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/meanBy.js +0 -20
  506. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/median.js +0 -35
  507. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/medianBy.js +0 -25
  508. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/random.js +0 -23
  509. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/randomInt.js +0 -18
  510. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/range.js +0 -32
  511. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/rangeRight.js +0 -32
  512. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/round.js +0 -24
  513. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sum.js +0 -20
  514. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sumBy.js +0 -22
  515. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/clone.js +0 -70
  516. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeep.js +0 -50
  517. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeepWith.js +0 -201
  518. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/findKey.js +0 -22
  519. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/flattenObject.js +0 -49
  520. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/index.js +0 -17
  521. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/invert.js +0 -28
  522. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapKeys.js +0 -27
  523. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapValues.js +0 -28
  524. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/merge.js +0 -69
  525. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mergeWith.js +0 -71
  526. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omit.js +0 -25
  527. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omitBy.js +0 -31
  528. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pick.js +0 -27
  529. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pickBy.js +0 -31
  530. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toCamelCaseKeys.js +0 -66
  531. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toMerged.js +0 -47
  532. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toSnakeCaseKeys.js +0 -66
  533. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/index.js +0 -30
  534. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isArrayBuffer.js +0 -20
  535. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBlob.js +0 -23
  536. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBoolean.js +0 -25
  537. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBrowser.js +0 -17
  538. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBuffer.js +0 -23
  539. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isDate.js +0 -16
  540. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqual.js +0 -19
  541. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqualWith.js +0 -218
  542. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isError.js +0 -16
  543. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFile.js +0 -26
  544. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFunction.js +0 -16
  545. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSON.js +0 -40
  546. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSONValue.js +0 -94
  547. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isLength.js +0 -24
  548. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isMap.js +0 -20
  549. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNil.js +0 -22
  550. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNode.js +0 -17
  551. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNotNil.js +0 -19
  552. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNull.js +0 -23
  553. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPlainObject.js +0 -56
  554. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPrimitive.js +0 -31
  555. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPromise.js +0 -20
  556. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isRegExp.js +0 -16
  557. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSet.js +0 -20
  558. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isString.js +0 -20
  559. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSymbol.js +0 -26
  560. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isTypedArray.js +0 -29
  561. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isUndefined.js +0 -23
  562. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakMap.js +0 -23
  563. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakSet.js +0 -23
  564. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/delay.js +0 -52
  565. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/index.js +0 -5
  566. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/mutex.js +0 -69
  567. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/semaphore.js +0 -99
  568. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/timeout.js +0 -20
  569. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/withTimeout.js +0 -29
  570. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/camelCase.js +0 -26
  571. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/capitalize.js +0 -14
  572. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/constantCase.js +0 -19
  573. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/deburr.js +0 -64
  574. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escape.js +0 -23
  575. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escapeRegExp.js +0 -14
  576. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/index.js +0 -21
  577. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/kebabCase.js +0 -19
  578. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerCase.js +0 -19
  579. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerFirst.js +0 -14
  580. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pad.js +0 -19
  581. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pascalCase.js +0 -20
  582. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/reverseString.js +0 -16
  583. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/snakeCase.js +0 -19
  584. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/startCase.js +0 -26
  585. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trim.js +0 -20
  586. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimEnd.js +0 -39
  587. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimStart.js +0 -36
  588. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/unescape.js +0 -23
  589. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperCase.js +0 -26
  590. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperFirst.js +0 -14
  591. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/words.js +0 -38
  592. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attempt.js +0 -47
  593. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attemptAsync.js +0 -41
  594. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/index.js +0 -4
  595. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/invariant.js +0 -33
  596. package/esm/federation/builder.js +0 -652
  597. package/esm/federation/callback.js +0 -1
  598. package/esm/federation/collection.js +0 -43
  599. package/esm/federation/context.js +0 -1
  600. package/esm/federation/federation.js +0 -1
  601. package/esm/federation/handler.js +0 -574
  602. package/esm/federation/inbox.js +0 -146
  603. package/esm/federation/keycache.js +0 -42
  604. package/esm/federation/kv.js +0 -52
  605. package/esm/federation/middleware.js +0 -2071
  606. package/esm/federation/mod.js +0 -17
  607. package/esm/federation/mq.js +0 -161
  608. package/esm/federation/negotiation.js +0 -92
  609. package/esm/federation/queue.js +0 -1
  610. package/esm/federation/retry.js +0 -34
  611. package/esm/federation/router.js +0 -97
  612. package/esm/federation/send.js +0 -129
  613. package/esm/mod.js +0 -52
  614. package/esm/nodeinfo/client.js +0 -372
  615. package/esm/nodeinfo/handler.js +0 -49
  616. package/esm/nodeinfo/mod.js +0 -11
  617. package/esm/nodeinfo/semver.js +0 -150
  618. package/esm/nodeinfo/types.js +0 -60
  619. package/esm/package.json +0 -3
  620. package/esm/runtime/contexts.js +0 -4191
  621. package/esm/runtime/docloader.js +0 -351
  622. package/esm/runtime/key.js +0 -153
  623. package/esm/runtime/langstr.js +0 -25
  624. package/esm/runtime/mod.js +0 -10
  625. package/esm/runtime/multibase/base.js +0 -30
  626. package/esm/runtime/multibase/constants.js +0 -78
  627. package/esm/runtime/multibase/index.js +0 -59
  628. package/esm/runtime/multibase/rfc4648.js +0 -79
  629. package/esm/runtime/multibase/util.js +0 -13
  630. package/esm/runtime/url.js +0 -96
  631. package/esm/sig/http.js +0 -845
  632. package/esm/sig/key.js +0 -253
  633. package/esm/sig/ld.js +0 -288
  634. package/esm/sig/mod.js +0 -11
  635. package/esm/sig/owner.js +0 -103
  636. package/esm/sig/proof.js +0 -269
  637. package/esm/vocab/actor.js +0 -168
  638. package/esm/vocab/constants.js +0 -9
  639. package/esm/vocab/lookup.js +0 -174
  640. package/esm/vocab/mod.js +0 -57
  641. package/esm/vocab/type.js +0 -6
  642. package/esm/vocab/vocab.js +0 -51266
  643. package/esm/webfinger/handler.js +0 -173
  644. package/esm/webfinger/jrd.js +0 -1
  645. package/esm/webfinger/lookup.js +0 -136
  646. package/esm/webfinger/mod.js +0 -8
  647. package/esm/x/hono.js +0 -65
  648. package/esm/x/sveltekit.js +0 -65
  649. package/logo.svg +0 -185
  650. package/types/_dnt.polyfills.d.ts +0 -18
  651. package/types/_dnt.polyfills.d.ts.map +0 -1
  652. package/types/_dnt.shims.d.ts +0 -14
  653. package/types/_dnt.shims.d.ts.map +0 -1
  654. package/types/compat/mod.d.ts +0 -4
  655. package/types/compat/mod.d.ts.map +0 -1
  656. package/types/compat/transformers.d.ts +0 -77
  657. package/types/compat/transformers.d.ts.map +0 -1
  658. package/types/compat/types.d.ts +0 -8
  659. package/types/compat/types.d.ts.map +0 -1
  660. package/types/deno.d.ts +0 -84
  661. package/types/deno.d.ts.map +0 -1
  662. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/_internal/compareValues.d.ts +0 -2
  663. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/_internal/compareValues.d.ts.map +0 -1
  664. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/at.d.ts +0 -17
  665. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/at.d.ts.map +0 -1
  666. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/chunk.d.ts +0 -25
  667. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/chunk.d.ts.map +0 -1
  668. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/compact.d.ts +0 -15
  669. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/compact.d.ts.map +0 -1
  670. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/countBy.d.ts +0 -29
  671. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/countBy.d.ts.map +0 -1
  672. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/difference.d.ts +0 -24
  673. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/difference.d.ts.map +0 -1
  674. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceBy.d.ts +0 -34
  675. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceBy.d.ts.map +0 -1
  676. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceWith.d.ts +0 -30
  677. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceWith.d.ts.map +0 -1
  678. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/drop.d.ts +0 -18
  679. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/drop.d.ts.map +0 -1
  680. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRight.d.ts +0 -18
  681. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRight.d.ts.map +0 -1
  682. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRightWhile.d.ts +0 -20
  683. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRightWhile.d.ts.map +0 -1
  684. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropWhile.d.ts +0 -20
  685. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropWhile.d.ts.map +0 -1
  686. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/fill.d.ts +0 -85
  687. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/fill.d.ts.map +0 -1
  688. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMap.d.ts +0 -22
  689. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMap.d.ts.map +0 -1
  690. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMapDeep.d.ts +0 -16
  691. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMapDeep.d.ts.map +0 -1
  692. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatten.d.ts +0 -18
  693. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatten.d.ts.map +0 -1
  694. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flattenDeep.d.ts +0 -24
  695. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flattenDeep.d.ts.map +0 -1
  696. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/forEachRight.d.ts +0 -47
  697. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/forEachRight.d.ts.map +0 -1
  698. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/groupBy.d.ts +0 -34
  699. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/groupBy.d.ts.map +0 -1
  700. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/head.d.ts +0 -33
  701. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/head.d.ts.map +0 -1
  702. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/index.d.ts +0 -61
  703. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/index.d.ts.map +0 -1
  704. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/initial.d.ts +0 -53
  705. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/initial.d.ts.map +0 -1
  706. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersection.d.ts +0 -20
  707. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersection.d.ts.map +0 -1
  708. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionBy.d.ts +0 -35
  709. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionBy.d.ts.map +0 -1
  710. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionWith.d.ts +0 -36
  711. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionWith.d.ts.map +0 -1
  712. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubset.d.ts +0 -25
  713. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubset.d.ts.map +0 -1
  714. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubsetWith.d.ts +0 -32
  715. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubsetWith.d.ts.map +0 -1
  716. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/keyBy.d.ts +0 -29
  717. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/keyBy.d.ts.map +0 -1
  718. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/last.d.ts +0 -47
  719. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/last.d.ts.map +0 -1
  720. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/maxBy.d.ts +0 -44
  721. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/maxBy.d.ts.map +0 -1
  722. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/minBy.d.ts +0 -44
  723. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/minBy.d.ts.map +0 -1
  724. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/orderBy.d.ts +0 -36
  725. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/orderBy.d.ts.map +0 -1
  726. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/partition.d.ts +0 -24
  727. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/partition.d.ts.map +0 -1
  728. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pull.d.ts +0 -18
  729. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pull.d.ts.map +0 -1
  730. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pullAt.d.ts +0 -18
  731. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pullAt.d.ts.map +0 -1
  732. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/remove.d.ts +0 -18
  733. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/remove.d.ts.map +0 -1
  734. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sample.d.ts +0 -16
  735. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sample.d.ts.map +0 -1
  736. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sampleSize.d.ts +0 -20
  737. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sampleSize.d.ts.map +0 -1
  738. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/shuffle.d.ts +0 -16
  739. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/shuffle.d.ts.map +0 -1
  740. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sortBy.d.ts +0 -34
  741. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sortBy.d.ts.map +0 -1
  742. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/tail.d.ts +0 -66
  743. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/tail.d.ts.map +0 -1
  744. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/take.d.ts +0 -24
  745. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/take.d.ts.map +0 -1
  746. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRight.d.ts +0 -23
  747. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRight.d.ts.map +0 -1
  748. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRightWhile.d.ts +0 -19
  749. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRightWhile.d.ts.map +0 -1
  750. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeWhile.d.ts +0 -20
  751. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeWhile.d.ts.map +0 -1
  752. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/toFilled.d.ts +0 -91
  753. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/toFilled.d.ts.map +0 -1
  754. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/union.d.ts +0 -19
  755. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/union.d.ts.map +0 -1
  756. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionBy.d.ts +0 -24
  757. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionBy.d.ts.map +0 -1
  758. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionWith.d.ts +0 -22
  759. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionWith.d.ts.map +0 -1
  760. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniq.d.ts +0 -17
  761. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniq.d.ts.map +0 -1
  762. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqBy.d.ts +0 -28
  763. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqBy.d.ts.map +0 -1
  764. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqWith.d.ts +0 -17
  765. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqWith.d.ts.map +0 -1
  766. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzip.d.ts +0 -19
  767. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzip.d.ts.map +0 -1
  768. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzipWith.d.ts +0 -16
  769. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzipWith.d.ts.map +0 -1
  770. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/windowed.d.ts +0 -49
  771. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/windowed.d.ts.map +0 -1
  772. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/without.d.ts +0 -22
  773. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/without.d.ts.map +0 -1
  774. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xor.d.ts +0 -19
  775. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xor.d.ts.map +0 -1
  776. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorBy.d.ts +0 -21
  777. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorBy.d.ts.map +0 -1
  778. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorWith.d.ts +0 -20
  779. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorWith.d.ts.map +0 -1
  780. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zip.d.ts +0 -105
  781. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zip.d.ts.map +0 -1
  782. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipObject.d.ts +0 -32
  783. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipObject.d.ts.map +0 -1
  784. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipWith.d.ts +0 -71
  785. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipWith.d.ts.map +0 -1
  786. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getSymbols.d.ts +0 -2
  787. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getSymbols.d.ts.map +0 -1
  788. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getTag.d.ts +0 -9
  789. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getTag.d.ts.map +0 -1
  790. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/tags.d.ts +0 -27
  791. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/tags.d.ts.map +0 -1
  792. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isArray.d.ts +0 -22
  793. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isArray.d.ts.map +0 -1
  794. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isObjectLike.d.ts +0 -26
  795. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isObjectLike.d.ts.map +0 -1
  796. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isPlainObject.d.ts +0 -24
  797. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isPlainObject.d.ts.map +0 -1
  798. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isSymbol.d.ts +0 -16
  799. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isSymbol.d.ts.map +0 -1
  800. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/eq.d.ts +0 -15
  801. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/eq.d.ts.map +0 -1
  802. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toFinite.d.ts +0 -16
  803. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toFinite.d.ts.map +0 -1
  804. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toInteger.d.ts +0 -19
  805. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toInteger.d.ts.map +0 -1
  806. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toNumber.d.ts +0 -18
  807. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toNumber.d.ts.map +0 -1
  808. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/AbortError.d.ts +0 -8
  809. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/AbortError.d.ts.map +0 -1
  810. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/TimeoutError.d.ts +0 -8
  811. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/TimeoutError.d.ts.map +0 -1
  812. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/index.d.ts +0 -3
  813. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/index.d.ts.map +0 -1
  814. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/after.d.ts +0 -30
  815. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/after.d.ts.map +0 -1
  816. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/ary.d.ts +0 -20
  817. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/ary.d.ts.map +0 -1
  818. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/asyncNoop.d.ts +0 -11
  819. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/asyncNoop.d.ts.map +0 -1
  820. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/before.d.ts +0 -30
  821. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/before.d.ts.map +0 -1
  822. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curry.d.ts +0 -125
  823. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curry.d.ts.map +0 -1
  824. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curryRight.d.ts +0 -139
  825. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curryRight.d.ts.map +0 -1
  826. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/debounce.d.ts +0 -74
  827. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/debounce.d.ts.map +0 -1
  828. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flow.d.ts +0 -131
  829. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flow.d.ts.map +0 -1
  830. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flowRight.d.ts +0 -143
  831. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flowRight.d.ts.map +0 -1
  832. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/identity.d.ts +0 -21
  833. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/identity.d.ts.map +0 -1
  834. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/index.d.ts +0 -22
  835. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/index.d.ts.map +0 -1
  836. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/memoize.d.ts +0 -123
  837. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/memoize.d.ts.map +0 -1
  838. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/negate.d.ts +0 -15
  839. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/negate.d.ts.map +0 -1
  840. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/noop.d.ts +0 -11
  841. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/noop.d.ts.map +0 -1
  842. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/once.d.ts +0 -34
  843. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/once.d.ts.map +0 -1
  844. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partial.d.ts +0 -552
  845. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partial.d.ts.map +0 -1
  846. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partialRight.d.ts +0 -629
  847. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partialRight.d.ts.map +0 -1
  848. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/rest.d.ts +0 -32
  849. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/rest.d.ts.map +0 -1
  850. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/retry.d.ts +0 -77
  851. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/retry.d.ts.map +0 -1
  852. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/spread.d.ts +0 -18
  853. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/spread.d.ts.map +0 -1
  854. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/throttle.d.ts +0 -48
  855. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/throttle.d.ts.map +0 -1
  856. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/unary.d.ts +0 -16
  857. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/unary.d.ts.map +0 -1
  858. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/index.d.ts +0 -66
  859. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/index.d.ts.map +0 -1
  860. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/clamp.d.ts +0 -31
  861. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/clamp.d.ts.map +0 -1
  862. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/inRange.d.ts +0 -26
  863. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/inRange.d.ts.map +0 -1
  864. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/index.d.ts +0 -14
  865. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/index.d.ts.map +0 -1
  866. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/mean.d.ts +0 -15
  867. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/mean.d.ts.map +0 -1
  868. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/meanBy.d.ts +0 -17
  869. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/meanBy.d.ts.map +0 -1
  870. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/median.d.ts +0 -24
  871. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/median.d.ts.map +0 -1
  872. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/medianBy.d.ts +0 -22
  873. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/medianBy.d.ts.map +0 -1
  874. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/random.d.ts +0 -29
  875. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/random.d.ts.map +0 -1
  876. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/randomInt.d.ts +0 -25
  877. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/randomInt.d.ts.map +0 -1
  878. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/range.d.ts +0 -37
  879. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/range.d.ts.map +0 -1
  880. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/rangeRight.d.ts +0 -37
  881. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/rangeRight.d.ts.map +0 -1
  882. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/round.d.ts +0 -19
  883. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/round.d.ts.map +0 -1
  884. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sum.d.ts +0 -15
  885. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sum.d.ts.map +0 -1
  886. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sumBy.d.ts +0 -17
  887. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sumBy.d.ts.map +0 -1
  888. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/clone.d.ts +0 -30
  889. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/clone.d.ts.map +0 -1
  890. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeep.d.ts +0 -48
  891. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeep.d.ts.map +0 -1
  892. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeepWith.d.ts +0 -44
  893. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeepWith.d.ts.map +0 -1
  894. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/findKey.d.ts +0 -20
  895. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/findKey.d.ts.map +0 -1
  896. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/flattenObject.d.ts +0 -36
  897. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/flattenObject.d.ts.map +0 -1
  898. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/index.d.ts +0 -18
  899. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/index.d.ts.map +0 -1
  900. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/invert.d.ts +0 -20
  901. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/invert.d.ts.map +0 -1
  902. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapKeys.d.ts +0 -19
  903. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapKeys.d.ts.map +0 -1
  904. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapValues.d.ts +0 -20
  905. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapValues.d.ts.map +0 -1
  906. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/merge.d.ts +0 -42
  907. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/merge.d.ts.map +0 -1
  908. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mergeWith.d.ts +0 -50
  909. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mergeWith.d.ts.map +0 -1
  910. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omit.d.ts +0 -19
  911. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omit.d.ts.map +0 -1
  912. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omitBy.d.ts +0 -21
  913. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omitBy.d.ts.map +0 -1
  914. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pick.d.ts +0 -19
  915. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pick.d.ts.map +0 -1
  916. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pickBy.d.ts +0 -21
  917. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pickBy.d.ts.map +0 -1
  918. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toCamelCaseKeys.d.ts +0 -53
  919. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toCamelCaseKeys.d.ts.map +0 -1
  920. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toMerged.d.ts +0 -44
  921. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toMerged.d.ts.map +0 -1
  922. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toSnakeCaseKeys.d.ts +0 -53
  923. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toSnakeCaseKeys.d.ts.map +0 -1
  924. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/index.d.ts +0 -31
  925. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/index.d.ts.map +0 -1
  926. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isArrayBuffer.d.ts +0 -19
  927. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isArrayBuffer.d.ts.map +0 -1
  928. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBlob.d.ts +0 -18
  929. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBlob.d.ts.map +0 -1
  930. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBoolean.d.ts +0 -24
  931. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBoolean.d.ts.map +0 -1
  932. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBrowser.d.ts +0 -16
  933. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBrowser.d.ts.map +0 -1
  934. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBuffer.d.ts +0 -20
  935. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBuffer.d.ts.map +0 -1
  936. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isDate.d.ts +0 -15
  937. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isDate.d.ts.map +0 -1
  938. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqual.d.ts +0 -16
  939. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqual.d.ts.map +0 -1
  940. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqualWith.d.ts +0 -37
  941. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqualWith.d.ts.map +0 -1
  942. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isError.d.ts +0 -15
  943. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isError.d.ts.map +0 -1
  944. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFile.d.ts +0 -20
  945. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFile.d.ts.map +0 -1
  946. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFunction.d.ts +0 -15
  947. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFunction.d.ts.map +0 -1
  948. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSON.d.ts +0 -30
  949. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSON.d.ts.map +0 -1
  950. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSONValue.d.ts +0 -55
  951. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSONValue.d.ts.map +0 -1
  952. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isLength.d.ts +0 -23
  953. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isLength.d.ts.map +0 -1
  954. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isMap.d.ts +0 -19
  955. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isMap.d.ts.map +0 -1
  956. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNil.d.ts +0 -21
  957. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNil.d.ts.map +0 -1
  958. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNode.d.ts +0 -16
  959. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNode.d.ts.map +0 -1
  960. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNotNil.d.ts +0 -18
  961. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNotNil.d.ts.map +0 -1
  962. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNull.d.ts +0 -22
  963. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNull.d.ts.map +0 -1
  964. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPlainObject.d.ts +0 -44
  965. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPlainObject.d.ts.map +0 -1
  966. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPrimitive.d.ts +0 -30
  967. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPrimitive.d.ts.map +0 -1
  968. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPromise.d.ts +0 -19
  969. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPromise.d.ts.map +0 -1
  970. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isRegExp.d.ts +0 -15
  971. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isRegExp.d.ts.map +0 -1
  972. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSet.d.ts +0 -19
  973. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSet.d.ts.map +0 -1
  974. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isString.d.ts +0 -19
  975. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isString.d.ts.map +0 -1
  976. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSymbol.d.ts +0 -25
  977. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSymbol.d.ts.map +0 -1
  978. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isTypedArray.d.ts +0 -28
  979. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isTypedArray.d.ts.map +0 -1
  980. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isUndefined.d.ts +0 -22
  981. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isUndefined.d.ts.map +0 -1
  982. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakMap.d.ts +0 -22
  983. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakMap.d.ts.map +0 -1
  984. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakSet.d.ts +0 -22
  985. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakSet.d.ts.map +0 -1
  986. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/delay.d.ts +0 -38
  987. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/delay.d.ts.map +0 -1
  988. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/index.d.ts +0 -6
  989. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/index.d.ts.map +0 -1
  990. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/mutex.d.ts +0 -63
  991. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/mutex.d.ts.map +0 -1
  992. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/semaphore.d.ts +0 -80
  993. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/semaphore.d.ts.map +0 -1
  994. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/timeout.d.ts +0 -16
  995. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/timeout.d.ts.map +0 -1
  996. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/withTimeout.d.ts +0 -27
  997. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/withTimeout.d.ts.map +0 -1
  998. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/camelCase.d.ts +0 -18
  999. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/camelCase.d.ts.map +0 -1
  1000. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/capitalize.d.ts +0 -15
  1001. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/capitalize.d.ts.map +0 -1
  1002. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/constantCase.d.ts +0 -16
  1003. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/constantCase.d.ts.map +0 -1
  1004. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/deburr.d.ts +0 -21
  1005. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/deburr.d.ts.map +0 -1
  1006. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escape.d.ts +0 -15
  1007. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escape.d.ts.map +0 -1
  1008. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escapeRegExp.d.ts +0 -13
  1009. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escapeRegExp.d.ts.map +0 -1
  1010. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/index.d.ts +0 -22
  1011. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/index.d.ts.map +0 -1
  1012. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/kebabCase.d.ts +0 -16
  1013. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/kebabCase.d.ts.map +0 -1
  1014. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerCase.d.ts +0 -16
  1015. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerCase.d.ts.map +0 -1
  1016. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerFirst.d.ts +0 -13
  1017. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerFirst.d.ts.map +0 -1
  1018. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pad.d.ts +0 -18
  1019. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pad.d.ts.map +0 -1
  1020. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pascalCase.d.ts +0 -16
  1021. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pascalCase.d.ts.map +0 -1
  1022. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/reverseString.d.ts +0 -15
  1023. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/reverseString.d.ts.map +0 -1
  1024. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/snakeCase.d.ts +0 -16
  1025. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/snakeCase.d.ts.map +0 -1
  1026. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/startCase.d.ts +0 -15
  1027. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/startCase.d.ts.map +0 -1
  1028. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trim.d.ts +0 -14
  1029. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trim.d.ts.map +0 -1
  1030. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimEnd.d.ts +0 -18
  1031. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimEnd.d.ts.map +0 -1
  1032. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimStart.d.ts +0 -18
  1033. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimStart.d.ts.map +0 -1
  1034. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/unescape.d.ts +0 -15
  1035. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/unescape.d.ts.map +0 -1
  1036. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperCase.d.ts +0 -16
  1037. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperCase.d.ts.map +0 -1
  1038. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperFirst.d.ts +0 -13
  1039. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperFirst.d.ts.map +0 -1
  1040. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/words.d.ts +0 -37
  1041. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/words.d.ts.map +0 -1
  1042. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attempt.d.ts +0 -41
  1043. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attempt.d.ts.map +0 -1
  1044. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attemptAsync.d.ts +0 -34
  1045. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attemptAsync.d.ts.map +0 -1
  1046. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/index.d.ts +0 -5
  1047. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/index.d.ts.map +0 -1
  1048. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/invariant.d.ts +0 -39
  1049. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/invariant.d.ts.map +0 -1
  1050. package/types/federation/builder.d.ts +0 -79
  1051. package/types/federation/builder.d.ts.map +0 -1
  1052. package/types/federation/callback.d.ts +0 -202
  1053. package/types/federation/callback.d.ts.map +0 -1
  1054. package/types/federation/collection.d.ts +0 -27
  1055. package/types/federation/collection.d.ts.map +0 -1
  1056. package/types/federation/context.d.ts +0 -727
  1057. package/types/federation/context.d.ts.map +0 -1
  1058. package/types/federation/federation.d.ts +0 -682
  1059. package/types/federation/federation.d.ts.map +0 -1
  1060. package/types/federation/handler.d.ts +0 -120
  1061. package/types/federation/handler.d.ts.map +0 -1
  1062. package/types/federation/inbox.d.ts +0 -35
  1063. package/types/federation/inbox.d.ts.map +0 -1
  1064. package/types/federation/keycache.d.ts +0 -18
  1065. package/types/federation/keycache.d.ts.map +0 -1
  1066. package/types/federation/kv.d.ts +0 -66
  1067. package/types/federation/kv.d.ts.map +0 -1
  1068. package/types/federation/middleware.d.ts +0 -262
  1069. package/types/federation/middleware.d.ts.map +0 -1
  1070. package/types/federation/mod.d.ts +0 -19
  1071. package/types/federation/mod.d.ts.map +0 -1
  1072. package/types/federation/mq.d.ts +0 -119
  1073. package/types/federation/mq.d.ts.map +0 -1
  1074. package/types/federation/negotiation.d.ts +0 -37
  1075. package/types/federation/negotiation.d.ts.map +0 -1
  1076. package/types/federation/queue.d.ts +0 -47
  1077. package/types/federation/queue.d.ts.map +0 -1
  1078. package/types/federation/retry.d.ts +0 -64
  1079. package/types/federation/retry.d.ts.map +0 -1
  1080. package/types/federation/router.d.ts +0 -83
  1081. package/types/federation/router.d.ts.map +0 -1
  1082. package/types/federation/send.d.ts +0 -108
  1083. package/types/federation/send.d.ts.map +0 -1
  1084. package/types/mod.d.ts +0 -53
  1085. package/types/mod.d.ts.map +0 -1
  1086. package/types/nodeinfo/client.d.ts +0 -94
  1087. package/types/nodeinfo/client.d.ts.map +0 -1
  1088. package/types/nodeinfo/handler.d.ts +0 -32
  1089. package/types/nodeinfo/handler.d.ts.map +0 -1
  1090. package/types/nodeinfo/mod.d.ts +0 -12
  1091. package/types/nodeinfo/mod.d.ts.map +0 -1
  1092. package/types/nodeinfo/semver.d.ts +0 -71
  1093. package/types/nodeinfo/semver.d.ts.map +0 -1
  1094. package/types/nodeinfo/types.d.ts +0 -133
  1095. package/types/nodeinfo/types.d.ts.map +0 -1
  1096. package/types/runtime/contexts.d.ts +0 -3
  1097. package/types/runtime/contexts.d.ts.map +0 -1
  1098. package/types/runtime/docloader.d.ts +0 -225
  1099. package/types/runtime/docloader.d.ts.map +0 -1
  1100. package/types/runtime/key.d.ts +0 -54
  1101. package/types/runtime/key.d.ts.map +0 -1
  1102. package/types/runtime/langstr.d.ts +0 -15
  1103. package/types/runtime/langstr.d.ts.map +0 -1
  1104. package/types/runtime/mod.d.ts +0 -11
  1105. package/types/runtime/mod.d.ts.map +0 -1
  1106. package/types/runtime/multibase/base.d.ts +0 -15
  1107. package/types/runtime/multibase/base.d.ts.map +0 -1
  1108. package/types/runtime/multibase/constants.d.ts +0 -5
  1109. package/types/runtime/multibase/constants.d.ts.map +0 -1
  1110. package/types/runtime/multibase/index.d.ts +0 -24
  1111. package/types/runtime/multibase/index.d.ts.map +0 -1
  1112. package/types/runtime/multibase/rfc4648.d.ts +0 -6
  1113. package/types/runtime/multibase/rfc4648.d.ts.map +0 -1
  1114. package/types/runtime/multibase/util.d.ts +0 -4
  1115. package/types/runtime/multibase/util.d.ts.map +0 -1
  1116. package/types/runtime/url.d.ts +0 -11
  1117. package/types/runtime/url.d.ts.map +0 -1
  1118. package/types/shim/event.d.ts.map +0 -1
  1119. package/types/sig/http.d.ts +0 -221
  1120. package/types/sig/http.d.ts.map +0 -1
  1121. package/types/sig/key.d.ts +0 -123
  1122. package/types/sig/key.d.ts.map +0 -1
  1123. package/types/sig/ld.d.ts +0 -152
  1124. package/types/sig/ld.d.ts.map +0 -1
  1125. package/types/sig/mod.d.ts +0 -12
  1126. package/types/sig/mod.d.ts.map +0 -1
  1127. package/types/sig/owner.d.ts +0 -65
  1128. package/types/sig/owner.d.ts.map +0 -1
  1129. package/types/sig/proof.d.ts +0 -122
  1130. package/types/sig/proof.d.ts.map +0 -1
  1131. package/types/vocab/actor.d.ts +0 -125
  1132. package/types/vocab/actor.d.ts.map +0 -1
  1133. package/types/vocab/constants.d.ts +0 -10
  1134. package/types/vocab/constants.d.ts.map +0 -1
  1135. package/types/vocab/lookup.d.ts +0 -115
  1136. package/types/vocab/lookup.d.ts.map +0 -1
  1137. package/types/vocab/mod.d.ts +0 -58
  1138. package/types/vocab/mod.d.ts.map +0 -1
  1139. package/types/vocab/type.d.ts +0 -82
  1140. package/types/vocab/type.d.ts.map +0 -1
  1141. package/types/vocab/vocab.d.ts +0 -14437
  1142. package/types/vocab/vocab.d.ts.map +0 -1
  1143. package/types/webfinger/handler.d.ts +0 -56
  1144. package/types/webfinger/handler.d.ts.map +0 -1
  1145. package/types/webfinger/jrd.d.ts +0 -52
  1146. package/types/webfinger/jrd.d.ts.map +0 -1
  1147. package/types/webfinger/lookup.d.ts +0 -39
  1148. package/types/webfinger/lookup.d.ts.map +0 -1
  1149. package/types/webfinger/mod.d.ts +0 -9
  1150. package/types/webfinger/mod.d.ts.map +0 -1
  1151. package/types/x/hono.d.ts +0 -46
  1152. package/types/x/hono.d.ts.map +0 -1
  1153. package/types/x/sveltekit.d.ts +0 -42
  1154. package/types/x/sveltekit.d.ts.map +0 -1
  1155. /package/{esm → dist}/codegen/schema.yaml +0 -0
  1156. /package/{esm → dist}/testing/fixtures/activitypub.academy/users/brauca_darradiul +0 -0
  1157. /package/{esm → dist}/testing/fixtures/example.com/announce +0 -0
  1158. /package/{esm → dist}/testing/fixtures/example.com/collection +0 -0
  1159. /package/{esm → dist}/testing/fixtures/example.com/create +0 -0
  1160. /package/{esm → dist}/testing/fixtures/example.com/cross-origin-actor +0 -0
  1161. /package/{esm → dist}/testing/fixtures/example.com/hong-gildong +0 -0
  1162. /package/{esm → dist}/testing/fixtures/example.com/invite +0 -0
  1163. /package/{esm → dist}/testing/fixtures/example.com/key +0 -0
  1164. /package/{esm → dist}/testing/fixtures/example.com/key2 +0 -0
  1165. /package/{esm → dist}/testing/fixtures/example.com/object +0 -0
  1166. /package/{esm → dist}/testing/fixtures/example.com/orderedcollectionpage +0 -0
  1167. /package/{esm → dist}/testing/fixtures/example.com/paged/a +0 -0
  1168. /package/{esm → dist}/testing/fixtures/example.com/paged/b +0 -0
  1169. /package/{esm → dist}/testing/fixtures/example.com/paged-collection +0 -0
  1170. /package/{esm → dist}/testing/fixtures/example.com/person +0 -0
  1171. /package/{esm → dist}/testing/fixtures/example.com/person2 +0 -0
  1172. /package/{esm → dist}/testing/fixtures/example.com/test +0 -0
  1173. /package/{esm → dist}/testing/fixtures/example.com/users/handle +0 -0
  1174. /package/{esm → dist}/testing/fixtures/example.com/wrong-type +0 -0
  1175. /package/{esm → dist}/testing/fixtures/remote.domain/users/bob +0 -0
  1176. /package/{esm → dist}/testing/fixtures/server.example/users/alice +0 -0
  1177. /package/{esm → dist}/testing/fixtures/w3id.org/identity/v1 +0 -0
  1178. /package/{esm → dist}/testing/fixtures/w3id.org/security/data-integrity/v1 +0 -0
  1179. /package/{esm → dist}/testing/fixtures/w3id.org/security/multikey/v1 +0 -0
  1180. /package/{esm → dist}/testing/fixtures/w3id.org/security/v1 +0 -0
  1181. /package/{esm → dist}/testing/fixtures/wizard.casa/users/hongminhee +0 -0
  1182. /package/{esm → dist}/testing/fixtures/www.w3.org/ns/activitystreams +0 -0
  1183. /package/{esm → dist}/testing/fixtures/www.w3.org/ns/did/v1 +0 -0
  1184. /package/{esm → dist}/vocab/accept.yaml +0 -0
  1185. /package/{esm → dist}/vocab/activity.yaml +0 -0
  1186. /package/{esm → dist}/vocab/add.yaml +0 -0
  1187. /package/{esm → dist}/vocab/announce.yaml +0 -0
  1188. /package/{esm → dist}/vocab/application.yaml +0 -0
  1189. /package/{esm → dist}/vocab/arrive.yaml +0 -0
  1190. /package/{esm → dist}/vocab/article.yaml +0 -0
  1191. /package/{esm → dist}/vocab/audio.yaml +0 -0
  1192. /package/{esm → dist}/vocab/block.yaml +0 -0
  1193. /package/{esm → dist}/vocab/chatmessage.yaml +0 -0
  1194. /package/{esm → dist}/vocab/collection.yaml +0 -0
  1195. /package/{esm → dist}/vocab/collectionpage.yaml +0 -0
  1196. /package/{esm → dist}/vocab/create.yaml +0 -0
  1197. /package/{esm → dist}/vocab/dataintegrityproof.yaml +0 -0
  1198. /package/{esm → dist}/vocab/delete.yaml +0 -0
  1199. /package/{esm → dist}/vocab/didservice.yaml +0 -0
  1200. /package/{esm → dist}/vocab/dislike.yaml +0 -0
  1201. /package/{esm → dist}/vocab/document.yaml +0 -0
  1202. /package/{esm → dist}/vocab/emoji.yaml +0 -0
  1203. /package/{esm → dist}/vocab/emojireact.yaml +0 -0
  1204. /package/{esm → dist}/vocab/endpoints.yaml +0 -0
  1205. /package/{esm → dist}/vocab/event.yaml +0 -0
  1206. /package/{esm → dist}/vocab/export.yaml +0 -0
  1207. /package/{esm → dist}/vocab/flag.yaml +0 -0
  1208. /package/{esm → dist}/vocab/follow.yaml +0 -0
  1209. /package/{esm → dist}/vocab/group.yaml +0 -0
  1210. /package/{esm → dist}/vocab/hashtag.yaml +0 -0
  1211. /package/{esm → dist}/vocab/ignore.yaml +0 -0
  1212. /package/{esm → dist}/vocab/image.yaml +0 -0
  1213. /package/{esm → dist}/vocab/intransitiveactivity.yaml +0 -0
  1214. /package/{esm → dist}/vocab/invite.yaml +0 -0
  1215. /package/{esm → dist}/vocab/join.yaml +0 -0
  1216. /package/{esm → dist}/vocab/key.yaml +0 -0
  1217. /package/{esm → dist}/vocab/leave.yaml +0 -0
  1218. /package/{esm → dist}/vocab/like.yaml +0 -0
  1219. /package/{esm → dist}/vocab/link.yaml +0 -0
  1220. /package/{esm → dist}/vocab/listen.yaml +0 -0
  1221. /package/{esm → dist}/vocab/mention.yaml +0 -0
  1222. /package/{esm → dist}/vocab/move.yaml +0 -0
  1223. /package/{esm → dist}/vocab/multikey.yaml +0 -0
  1224. /package/{esm → dist}/vocab/note.yaml +0 -0
  1225. /package/{esm → dist}/vocab/object.yaml +0 -0
  1226. /package/{esm → dist}/vocab/offer.yaml +0 -0
  1227. /package/{esm → dist}/vocab/orderedcollection.yaml +0 -0
  1228. /package/{esm → dist}/vocab/orderedcollectionpage.yaml +0 -0
  1229. /package/{esm → dist}/vocab/organization.yaml +0 -0
  1230. /package/{esm → dist}/vocab/page.yaml +0 -0
  1231. /package/{esm → dist}/vocab/person.yaml +0 -0
  1232. /package/{esm → dist}/vocab/place.yaml +0 -0
  1233. /package/{esm → dist}/vocab/profile.yaml +0 -0
  1234. /package/{esm → dist}/vocab/propertyvalue.yaml +0 -0
  1235. /package/{esm → dist}/vocab/question.yaml +0 -0
  1236. /package/{esm → dist}/vocab/read.yaml +0 -0
  1237. /package/{esm → dist}/vocab/reject.yaml +0 -0
  1238. /package/{esm → dist}/vocab/relationship.yaml +0 -0
  1239. /package/{esm → dist}/vocab/remove.yaml +0 -0
  1240. /package/{esm → dist}/vocab/service.yaml +0 -0
  1241. /package/{esm → dist}/vocab/source.yaml +0 -0
  1242. /package/{esm → dist}/vocab/tentativeaccept.yaml +0 -0
  1243. /package/{esm → dist}/vocab/tentativereject.yaml +0 -0
  1244. /package/{esm → dist}/vocab/tombstone.yaml +0 -0
  1245. /package/{esm → dist}/vocab/travel.yaml +0 -0
  1246. /package/{esm → dist}/vocab/undo.yaml +0 -0
  1247. /package/{esm → dist}/vocab/update.yaml +0 -0
  1248. /package/{esm → dist}/vocab/video.yaml +0 -0
  1249. /package/{esm → dist}/vocab/view.yaml +0 -0
package/CHANGES.md DELETED
@@ -1,3883 +0,0 @@
1
- <!-- deno-fmt-ignore-file -->
2
-
3
- Fedify changelog
4
- ================
5
-
6
- Version 1.6.0
7
- -------------
8
-
9
- To be released.
10
-
11
- - Added `Context.lookupWebFinger()` method to make WebFinger lookups
12
- accessible from the context. [[#227]]
13
-
14
- - Introduced `FederationBuilder` for creating a federation instance with
15
- a builder pattern.
16
-
17
- - Added `createFederationBuilder()` function.
18
- - Added `Federatable` interface.
19
- - Added `FederationBuilder` interface.
20
- - Deprecated `CreateFederationOptions` interface. Use `FederationOptions`
21
- interface.
22
-
23
- - Added `Router.trailingSlashInsensitive` property.
24
-
25
- - Implemented HTTP Message Signatures ([RFC 9421]) with double-knocking.
26
- Currently, it only works with RSA-PKCS#1-v1.5. [[#208]]
27
-
28
- - Added `HttpMessageSignaturesSpec` type.
29
- - Added `SignRequestOptions.spec` option.
30
- - Added `SignRequestOptions.currentTime` option.
31
- - Added `VerifyRequestOptions.spec` option.
32
- - Added `GetAuthenticatedDocumentLoaderOptions.specDeterminer` option.
33
- - Added `GetAuthenticatedDocumentLoaderOptions.traceProvider` option.
34
- - Added `HttpMessageSignaturesSpecDeterminer` interface.
35
- - Added `--first-knock` option to `fedify lookup` command.
36
-
37
- - The minimum supported version of Node.js is now 22.0.0.
38
-
39
- [RFC 9421]: https://www.rfc-editor.org/rfc/rfc9421
40
- [#208]: https://github.com/fedify-dev/fedify/issues/208
41
- [#227]: https://github.com/fedify-dev/fedify/issues/227
42
-
43
-
44
- Version 1.5.3
45
- -------------
46
-
47
- Released on May 16, 2025.
48
-
49
- - Fixed a bug where inbox handler had thrown a `jsonld.SyntaxError` which
50
- caused a `500 Internal Server Error` when the received activity had
51
- an invalid JSON-LD syntax. Now it logs the error and responds with
52
- a `400 Bad Request` error instead. [[#232]]
53
-
54
- - The `exportJwk()` function now populates the `alg` property of a returned
55
- `JsonWebKey` object with `"Ed25519"` if the input key is an Ed25519 key.
56
-
57
-
58
- Version 1.5.2
59
- -------------
60
-
61
- Released on May 11, 2025.
62
-
63
- - Fixed the `fedify init` command to install the correct version of
64
- *@fedify/express* package. [[#230], [#231] by Emelia Smith]
65
-
66
- - The `exportJwk()` function now populates the `alg` property of a returned
67
- `JsonWebKey` object with `"Ed25519"` if the input key is an Ed25519 key.
68
-
69
- [#230]: https://github.com/fedify-dev/fedify/issues/230
70
- [#231]: https://github.com/fedify-dev/fedify/pull/231
71
-
72
-
73
- Version 1.5.1
74
- -------------
75
-
76
- Released on April 8, 2025.
77
-
78
- - Activity Vocabulary API became to accept [RFC 3339] date-time strings
79
- without a timezone offset. This is not a bug fix, but improves
80
- interoperability with some implementations that do not include a timezone
81
- offset in their date-time strings including WordPress. [[#226]]
82
-
83
- - Added the following default context to `Undo` class:
84
-
85
- ~~~~ json
86
- {
87
- "litepub": "http://litepub.social/ns#",
88
- "toot": "http://joinmastodon.org/ns#",
89
- "EmojiReact": "litepub:EmojiReact",
90
- "Emoji": "toot:Emoji"
91
- }
92
- ~~~~
93
-
94
-
95
- Version 1.5.0
96
- -------------
97
-
98
- Released on March 28, 2025.
99
-
100
- - Improved activity delivery performance with large audiences through
101
- a two-stage queuing system. Sending activities to many recipients
102
- (e.g., accounts with many followers) is now significantly faster and uses
103
- less memory. [[#220]]
104
-
105
- - Added `FederationQueueOptions.fanout` option.
106
- - Changed the type of `FederationStartQueueOptions.queue` option to
107
- `"inbox" | "outbox" | "fanout" | undefined` (was `"inbox" | "outbox" |
108
- undefined`).
109
- - Added `SendActivityOptions.fanout` option.
110
- - Added OpenTelemetry instrumented span `activitypub.fanout`.
111
- - The `ForwardActivityOptions` interface became a type alias of
112
- `Omit<SendActivityOptions, "fanout"> & { skipIfUnsigned: boolean }`,
113
- which is still compatible with the previous version.
114
-
115
- - A `Federation` object now can have a canonical origin for web URLs and
116
- a canonical host for fediverse handles. This affects the URLs constructed
117
- by `Context` objects, and the WebFinger responses.
118
-
119
- - Added `CreateFederationOptions.origin` option.
120
- - Added `FederationOrigin` interface.
121
- - Added `Context.canonicalOrigin` property.
122
-
123
- - Followers collection synchronization ([FEP-8fcf]) is now turned off by
124
- default.
125
-
126
- - Added `SendActivityOptionsForCollection` interface.
127
- - The type of `Context.sendActivity({ identifier: string } | { username:
128
- string } | { handle: string }, "followers", Activity)` overload's
129
- fourth parameter became `SendActivityOptionsForCollection | undefined`
130
- (was `SendActivityOptions | undefined`).
131
-
132
- - Fedify now accepts PEM-PKCS#1 besides PEM-SPKI for RSA public keys.
133
- [[#209]]
134
-
135
- - `CryptographicKey` now can contain a `publicKey` with a PEM-PKCS#1
136
- format (in addition to PEM-SPKI).
137
- - Added `importPkcs1()` function.
138
- - Added `importPem()` function.
139
-
140
- - The `fetchKey()` function became to choose the public key of the actor
141
- if `keyId` has no fragment and the actor has only one public key. [[#211]]
142
-
143
- - Added an optional parameter with `GetSignedKeyOptions` type to
144
- the `RequestContext.getSignedKey()` method.
145
-
146
- - Added `GetSignedKeyOptions` interface.
147
-
148
- - Added an optional parameter with `GetKeyOwnerOptions` type to
149
- the `RequestContext.getSignedKeyOwner()` method.
150
-
151
- - Deprecated the parameters of the `AuthorizePredicate` and
152
- `ObjectAuthorizePredicate` types to get the signed key and its owner
153
- in favor of the `RequestContext.getSignedKey()` and
154
- `RequestContext.getSignedKeyOwner()` methods.
155
-
156
- - Deprecated the third parameter of the `AuthorizePredicate` type in favor
157
- of the `RequestContext.getSignedKey()` method.
158
- - Deprecated the fourth parameter of the `AuthorizePredicate` type in
159
- favor of the `RequestContext.getSignedKeyOwner()` method.
160
- - Deprecated the third parameter of the `ObjectAuthorizePredicate` type in
161
- favor of the `RequestContext.getSignedKey()` method.
162
- - Deprecated the fourth parameter of the `ObjectAuthorizePredicate` type
163
- in favor of the `RequestContext.getSignedKeyOwner()` method.
164
-
165
- - Added an optional method `enqueueMany()` to `MessageQueue` interface
166
- for sending multiple activities at once.
167
-
168
- - Updated *@js-temporal/polyfill* to 0.5.0 for Node.js and Bun. On Deno,
169
- there is no change because the polyfill is not used.
170
-
171
- - Updated *uri-template-router* to 0.0.17 which fixes bundler errors on
172
- Rollup. [[#221]]
173
-
174
- - Improved error handling and logging for document loader when KV store
175
- operations fail. [[#223] by Revath S Kumar]
176
-
177
- - Fixed a bug of the `fedify inbox` command where it had failed to render
178
- the web interface when the `fedify` command was installed using
179
- `deno install` command from JSR.
180
-
181
- - The web interface of the `fedify inbox` command was slightly redesigned:
182
-
183
- - The Fedify logo with the cute dinosaur is now displayed at the top of
184
- the page.
185
- - You can easily copy the fediverse handle of the ephemeral actor.
186
-
187
- - Internalized the [multibase] package, which is obsolete and no longer
188
- maintained. [[#127], [#215] by Fróði Karlsson]
189
-
190
- - Added more log messages using the [LogTape] library. Currently the below
191
- logger categories are used:
192
-
193
- - `["fedify", "federation", "fanout"]`
194
- - `["fedify", "federation", "object"]`
195
-
196
- [#127]: https://github.com/fedify-dev/fedify/issues/127
197
- [#209]: https://github.com/fedify-dev/fedify/issues/209
198
- [#211]: https://github.com/fedify-dev/fedify/issues/211
199
- [#215]: https://github.com/fedify-dev/fedify/pull/215
200
- [#220]: https://github.com/fedify-dev/fedify/issues/220
201
- [#221]: https://github.com/fedify-dev/fedify/issues/221
202
- [#223]: https://github.com/fedify-dev/fedify/pull/223
203
- [FEP-8fcf]: https://w3id.org/fep/8fcf
204
- [multibase]: https://github.com/multiformats/js-multibase
205
-
206
-
207
- Version 1.4.11
208
- --------------
209
-
210
- Released on May 16, 2025.
211
-
212
- - Fixed a bug where inbox handler had thrown a `jsonld.SyntaxError` which
213
- caused a `500 Internal Server Error` when the received activity had
214
- an invalid JSON-LD syntax. Now it logs the error and responds with
215
- a `400 Bad Request` error instead. [[#232]]
216
-
217
- - The `exportJwk()` function now populates the `alg` property of a returned
218
- `JsonWebKey` object with `"Ed25519"` if the input key is an Ed25519 key.
219
-
220
-
221
- Version 1.4.10
222
- --------------
223
-
224
- Released on April 8, 2025.
225
-
226
- - Activity Vocabulary API became to accept [RFC 3339] date-time strings
227
- without a timezone offset. This is not a bug fix, but improves
228
- interoperability with some implementations that do not include a timezone
229
- offset in their date-time strings including WordPress. [[#226]]
230
-
231
- - Added the following default context to `Undo` class:
232
-
233
- ~~~~ json
234
- {
235
- "litepub": "http://litepub.social/ns#",
236
- "toot": "http://joinmastodon.org/ns#",
237
- "EmojiReact": "litepub:EmojiReact",
238
- "Emoji": "toot:Emoji"
239
- }
240
- ~~~~
241
-
242
-
243
- Version 1.4.9
244
- -------------
245
-
246
- Released on March 26, 2025.
247
-
248
- - Fixed a `TypeError` thrown by the followers collection dispatcher when
249
- the `base-url` parameter was provided.
250
-
251
- - Fixed a `TypeError` thrown by the `signRequest()` function on Node.js.
252
- [[#222]]
253
-
254
-
255
- Version 1.4.8
256
- -------------
257
-
258
- Released on March 26, 2025.
259
-
260
- - Fixed a bug where the `totalItems` property of `OrderedCollection`
261
- objects returned by followers collection dispatcher had been an incorrect
262
- value if a `base-url` parameter was provided.
263
-
264
- - Fixed a bug where the `id` property of `OrderedCollection` and
265
- `OrderedCollectionPage` objects returned by followers collection dispatcher
266
- had been an incorrect value if a `base-url` parameter was provided.
267
-
268
-
269
- Version 1.4.7
270
- -------------
271
-
272
- Released on March 20, 2025.
273
-
274
- - Fixed a bug of WebFinger handler where it had failed to match
275
- `acct:` URIs with a host having a port number.
276
- [[#218], [#219] by Revath S Kumar]
277
-
278
- - Fixed a server error thrown when an invalid URL was passed to the `base-url`
279
- parameter of the followers collection. [[#217]]
280
-
281
-
282
- Version 1.4.6
283
- -------------
284
-
285
- Released on March 9, 2025.
286
-
287
- - Fedify no more depends on `node:punycode` module, which is deprecated in
288
- Node.js. Now it uses the built-in `node:url` module instead.
289
- [[#212], [#214] by Fróði Karlsson]
290
-
291
-
292
- Version 1.4.5
293
- -------------
294
-
295
- Released on February 28, 2025.
296
-
297
- - Made `fedify init` to install *@fedify/h3* 0.1.2 which is compatible with
298
- Fedify 1.0.0 or later versions when `--web-framework nitro` option is
299
- provided. [[#213]]
300
-
301
- - Fixed a bug where `fedify init` had failed to initialize a project with
302
- the `--runtime node --package-manager pnpm --web-framework nitro` option.
303
- [[#213]]
304
-
305
-
306
- Version 1.4.4
307
- -------------
308
-
309
- Released on February 25, 2025.
310
-
311
- - Added the following default context to `Application`, `Group`,
312
- `Organization`, `Person`, and `Service` classes:
313
-
314
- ~~~~ json
315
- {
316
- "Emoji": "http://joinmastodon.org/ns#Emoji"
317
- }
318
- ~~~~
319
-
320
-
321
- Version 1.4.3
322
- -------------
323
-
324
- Released on February 22, 2025.
325
-
326
- - Added the following default contexts to `Follow`, `Undo`, and `Update`
327
- classes:
328
-
329
- - <https://w3id.org/security/v1>
330
- - <https://www.w3.org/ns/did/v1>
331
- - <https://w3id.org/security/multikey/v1>
332
-
333
-
334
- Version 1.4.2
335
- -------------
336
-
337
- Released on February 19, 2025.
338
-
339
- - Fixed a bug where the `fedify init` command had failed to locate package
340
- managers on Windows. [[#210]]
341
-
342
- - The `fedify` command became aware of `FEDIFY_LOG_FILE` environment variable
343
- to log messages to a file. If the variable is set, the command logs
344
- messages to the file specified by the variable.
345
-
346
-
347
- Version 1.4.1
348
- -------------
349
-
350
- Released on February 10, 2025.
351
-
352
- - Fixed a bug with nested object hydration in Activity Vocabulary API where
353
- deeply nested properties (like `Object.getAttribution()` on
354
- `Activity.getObject()`) were't being properly hydrated during `toJsonLd()`
355
- calls. Previously, subsequent calls to `toJsonLd()` on nested objects could
356
- result in inconsistent JSON-LD output where nested objects remained as URLs
357
- instead of being fully expanded.
358
-
359
-
360
- Version 1.4.0
361
- -------------
362
-
363
- Released on February 5, 2025.
364
-
365
- - Document loader and context loader are now configurable with a factory
366
- function for more flexibility.
367
-
368
- - Deprecated `CreateFederationOptions.documentLoader` option.
369
- Use `CreateFederationOptions.documentLoaderFactory` option instead.
370
- - Deprecated `CreateFederationOptions.contextLoader` option.
371
- Use `CreateFederationOptions.contextLoaderFactory` option instead.
372
- - Added `DocumentLoaderFactory` type.
373
- - Added `DocumentLoaderFactoryOptions` interface.
374
- - Added the second parameter with `DocumentLoaderFactoryOptions` type
375
- to `AuthenticatedDocumentLoaderFactory` type.
376
- - `GetAuthenticatedDocumentLoaderOptions` interface became to extend
377
- `DocumentLoaderFactoryOptions` interface.
378
- - Added a type parameter `TContextData` to `CreateFederationOptions`
379
- interface.
380
- - Fedify now assigns a random-generated *http:*/*https:* URI to
381
- activities if these do not have explicit `id` properties. This behavior
382
- can be disabled by excluding `autoIdAssigner()` from
383
- the `CreateFederationOptions.activityTransformers` option.
384
-
385
- - Introduced `ActivityTransformer`s for adjusting outgoing activities
386
- before sending them so that some ActivityPub implementations with quirks
387
- are satisfied.
388
-
389
- - Added `@fedify/fedify/compat` module.
390
- - Added `ActivityTransformer` type.
391
- - Added `autoIdAssigner()` function.
392
- - Added `actorDehydrator()` function.
393
- - Added `defaultActivityTransformers` constant.
394
- - Added `CreateFederationOptions.activityTransformers` option.
395
-
396
- - The `suppressError` option of Activity Vocabulary APIs,
397
- `traverseCollection()` function, and `Context.traverseCollection()` method
398
- now suppresses errors occurred JSON-LD processing.
399
-
400
- - WebFinger responses are now customizable. [[#3]]
401
-
402
- - Added `ActorCallbackSetters.mapAlias()` method.
403
- - Added `ActorAliasMapper` type.
404
-
405
- - Added `Context.getNodeInfo()` method. [[#203]]
406
-
407
- - Added `shares` property to `Object` class in Activity Vocabulary API.
408
-
409
- - Added `Object.sharesId` property.
410
- - Added `Object.getShares()` method.
411
- - `new Object()` constructor now accepts `shares` option.
412
- - `Object.clone()` method now accepts `shares` option.
413
-
414
- - Added `likes` property to `Object` class in Activity Vocabulary API.
415
-
416
- - Added `Object.likesId` property.
417
- - Added `Object.getLikes()` method.
418
- - `new Object()` constructor now accepts `likes` option.
419
- - `Object.clone()` method now accepts `likes` option.
420
-
421
- - Added `emojiReactions` property to `Object` class in Activity Vocabulary
422
- API.
423
-
424
- - Added `Object.emojiReactionsId` property
425
- - Added `Object.getEmojiReactions()` method.
426
- - `new Object()` constructor now accepts `emojiReactions` option.
427
- - `Object.clone()` method now accepts `emojiReactions` option.
428
-
429
- - Added `allowPrivateAddress` option to `LookupWebFingerOptions` interface.
430
-
431
- - Added more log messages using the [LogTape] library. Currently the below
432
- logger categories are used:
433
-
434
- - `["fedify", "compat", "transformers"]`
435
-
436
- - Added `-t`/`--traverse` option to the `fedify lookup` subcommand. [[#195]]
437
-
438
- - Added `-S`/`--suppress-errors` option to the `fedify lookup` subcommand.
439
- [[#195]]
440
-
441
- [#3]: https://github.com/fedify-dev/fedify/issues/3
442
- [#195]: https://github.com/fedify-dev/fedify/issues/195
443
-
444
-
445
- Version 1.3.18
446
- --------------
447
-
448
- Released on May 16, 2025.
449
-
450
- - Fixed a bug where inbox handler had thrown a `jsonld.SyntaxError` which
451
- caused a `500 Internal Server Error` when the received activity had
452
- an invalid JSON-LD syntax. Now it logs the error and responds with
453
- a `400 Bad Request` error instead. [[#232]]
454
-
455
- - The `exportJwk()` function now populates the `alg` property of a returned
456
- `JsonWebKey` object with `"Ed25519"` if the input key is an Ed25519 key.
457
-
458
-
459
- Version 1.3.17
460
- --------------
461
-
462
- Released on April 8, 2025.
463
-
464
- - Activity Vocabulary API became to accept [RFC 3339] date-time strings
465
- without a timezone offset. This is not a bug fix, but improves
466
- interoperability with some implementations that do not include a timezone
467
- offset in their date-time strings including WordPress. [[#226]]
468
-
469
- - Added the following default context to `Undo` class:
470
-
471
- ~~~~ json
472
- {
473
- "litepub": "http://litepub.social/ns#",
474
- "toot": "http://joinmastodon.org/ns#",
475
- "EmojiReact": "litepub:EmojiReact",
476
- "Emoji": "toot:Emoji"
477
- }
478
- ~~~~
479
-
480
-
481
- Version 1.3.16
482
- --------------
483
-
484
- Released on March 26, 2025.
485
-
486
- - Fixed a `TypeError` thrown by the followers collection dispatcher when
487
- the `base-url` parameter was provided.
488
-
489
- - Fixed a `TypeError` thrown by the `signRequest()` function on Node.js.
490
- [[#222]]
491
-
492
-
493
- Version 1.3.15
494
- --------------
495
-
496
- Released on March 26, 2025.
497
-
498
- - Fixed a bug where the `totalItems` property of `OrderedCollection`
499
- objects returned by followers collection dispatcher had been an incorrect
500
- value if a `base-url` parameter was provided.
501
-
502
- - Fixed a bug where the `id` property of `OrderedCollection` and
503
- `OrderedCollectionPage` objects returned by followers collection dispatcher
504
- had been an incorrect value if a `base-url` parameter was provided.
505
-
506
-
507
- Version 1.3.14
508
- --------------
509
-
510
- Released on March 20, 2025.
511
-
512
- - Fixed a bug of WebFinger handler where it had failed to match
513
- `acct:` URIs with a host having a port number.
514
- [[#218], [#219] by Revath S Kumar]
515
-
516
- - Fixed a server error thrown when an invalid URL was passed to the `base-url`
517
- parameter of the followers collection. [[#217]]
518
-
519
-
520
- Version 1.3.13
521
- --------------
522
-
523
- Released on March 9, 2025.
524
-
525
- - Fedify no more depends on `node:punycode` module, which is deprecated in
526
- Node.js. Now it uses the built-in `node:url` module instead.
527
- [[#212], [#214] by Fróði Karlsson]
528
-
529
-
530
- Version 1.3.12
531
- --------------
532
-
533
- Released on February 28, 2025.
534
-
535
- - Made `fedify init` to install *@fedify/h3* 0.1.2 which is compatible with
536
- Fedify 1.0.0 or later versions when `--web-framework nitro` option is
537
- provided. [[#213]]
538
-
539
- - Fixed a bug where `fedify init` had failed to initialize a project with
540
- the `--runtime node --package-manager pnpm --web-framework nitro` option.
541
- [[#213]]
542
-
543
-
544
- Version 1.3.11
545
- --------------
546
-
547
- Released on February 25, 2025.
548
-
549
- - Added the following default context to `Application`, `Group`,
550
- `Organization`, `Person`, and `Service` classes:
551
-
552
- ~~~~ json
553
- {
554
- "Emoji": "http://joinmastodon.org/ns#Emoji"
555
- }
556
- ~~~~
557
-
558
-
559
- Version 1.3.10
560
- --------------
561
-
562
- Released on February 22, 2025.
563
-
564
- - Added the following default contexts to `Follow`, `Undo`, and `Update`
565
- classes:
566
-
567
- - <https://w3id.org/security/v1>
568
- - <https://www.w3.org/ns/did/v1>
569
- - <https://w3id.org/security/multikey/v1>
570
-
571
-
572
- Version 1.3.9
573
- -------------
574
-
575
- Released on February 19, 2025.
576
-
577
- - Fixed a bug where the `fedify init` command had failed to locate package
578
- managers on Windows. [[#210]]
579
-
580
- - The `fedify` command became aware of `FEDIFY_LOG_FILE` environment variable
581
- to log messages to a file. If the variable is set, the command logs
582
- messages to the file specified by the variable.
583
-
584
-
585
- Version 1.3.8
586
- -------------
587
-
588
- Released on February 10, 2025.
589
-
590
- - Fixed a bug with nested object hydration in Activity Vocabulary API where
591
- deeply nested properties (like `Object.getAttribution()` on
592
- `Activity.getObject()`) were't being properly hydrated during `toJsonLd()`
593
- calls. Previously, subsequent calls to `toJsonLd()` on nested objects could
594
- result in inconsistent JSON-LD output where nested objects remained as URLs
595
- instead of being fully expanded.
596
-
597
-
598
- Version 1.3.7
599
- -------------
600
-
601
- Released on February 1, 2025.
602
-
603
- - Updated [LogTape] to version 0.8.1, which fixes a bug where `lowestLevel`
604
- option had incorrectly behaved.
605
-
606
-
607
- Version 1.3.6
608
- -------------
609
-
610
- Released on January 31, 2025.
611
-
612
- - Fixed a bug where `getUserAgent()` function had returned a `User-Agent`
613
- string with a wrong JavaScript runtime name on Node.js. [[#203]]
614
-
615
- [#203]: https://github.com/fedify-dev/fedify/issues/203
616
-
617
-
618
- Version 1.3.5
619
- -------------
620
-
621
- Released on January 21, 2025.
622
-
623
- - Fixed a bug where `CreateFederationOptions.allowPrivateAddress` option had
624
- been ignored by the `Context.lookupObject()` method when it had taken
625
- a fediverse handle.
626
-
627
- - The `lookupWebFinger()` function became to silently return `null` when
628
- it fails to fetch the WebFinger document due to accessing a private network
629
- address, instead of throwing a `UrlError`.
630
-
631
-
632
- Version 1.3.4
633
- -------------
634
-
635
- Released on January 21, 2025.
636
-
637
- - Fixed several security vulnerabilities of the `lookupWebFinger()` function.
638
- [[CVE-2025-23221]]
639
-
640
- - Fixed a security vulnerability where the `lookupWebFinger()` function
641
- had followed the infinite number of redirects, which could lead to
642
- a denial of service attack. Now it follows up to 5 redirects.
643
-
644
- - Fixed a security vulnerability where the `lookupWebFinger()` function
645
- had followed the redirects to other than the HTTP/HTTPS schemes, which
646
- could lead to a security breach. Now it follows only the same scheme
647
- as the original request.
648
-
649
- - Fixed a security vulnerability where the `lookupWebFinger()` function
650
- had followed the redirects to the private network addresses, which
651
- could lead to a SSRF attack. Now it follows only the public network
652
- addresses.
653
-
654
-
655
- Version 1.3.3
656
- -------------
657
-
658
- Released on December 30, 2024.
659
-
660
- - The `fetchDocumentLoader()` function now preloads the following JSON-LD
661
- context: <https://gotosocial.org/ns>.
662
-
663
-
664
- Version 1.3.2
665
- -------------
666
-
667
- Released on December 18, 2024.
668
-
669
- - Fixed the default document loader to handle the `Link` header with
670
- incorrect syntax. [[#196]]
671
-
672
-
673
- Version 1.3.1
674
- -------------
675
-
676
- Released on December 11, 2024.
677
-
678
- - Fixed idempotence check in inbox listeners to ensure activities for
679
- different origins are processed correctly.
680
-
681
-
682
- Version 1.3.0
683
- -------------
684
-
685
- Released on November 30, 2024.
686
-
687
- - `MessageQueue`s now can be differently configured for incoming and outgoing
688
- activities.
689
-
690
- - Changed the type of `CreateFederationOptions.queue` option to
691
- `FederationQueueOptions | MessageQueue | undefined` (was `MessageQueue |
692
- undefined`).
693
- - Added `FederationQueueOptions` interface.
694
- - Added `FederationStartQueueOptions.queue` option.
695
-
696
- - Fedify now makes HTTP requests with the proper `User-Agent` header. [[#162]]
697
-
698
- - Added `getUserAgent()` function.
699
- - Added `GetUserAgentOptions` interface.
700
- - Added `getDocumentLoader()` function.
701
- - Added `GetDocumentLoaderOptions` interface.
702
- - The type of `getAuthenticatedDocumentLoader()` function's second
703
- parameter became `GetAuthenticatedDocumentLoaderOptions | undefined`
704
- (was `boolean | undefined`).
705
- - Added `GetAuthenticatedDocumentLoaderOptions` interface.
706
- - Deprecated `fetchDocumentLoader()` function.
707
- - Added `LookupObjectOptions.userAgent` option.
708
- - Added the type of `getActorHandle()` function's second parameter became
709
- `GetActorHandleOptions | undefined` (was `NormalizeActorHandleOptions |
710
- undefined`).
711
- - Added `GetActorHandleOptions` interface.
712
- - Added the optional second parameter to `lookupWebFinger()` function.
713
- - Added `LookupWebFingerOptions` interface.
714
- - Added `GetNodeInfoOptions.userAgent` option.
715
- - Added `-u`/`--user-agent` option to `fedify lookup` subcommand.
716
- - Added `-u`/`--user-agent` option to `fedify node` subcommand.
717
-
718
- - Fedify now caches unavailable keys of remote actors as well to avoid
719
- trying fetching the same unavailable key multiple times.
720
-
721
- - The return type of the `KeyCache.get()` method became
722
- `Promise<CryptographicKey | MultiKey | null | undefined>` (was
723
- `Promise<CryptographicKey | MultiKey | null>`).
724
- - The type of the `KeyCache.set()` method's second parameter became
725
- `CryptographicKey | MultiKey | null` (was `CryptographicKey | MultiKey`).
726
- - Added `fetchKey()` function.
727
- - Added `FetchKeyOptions` interface.
728
- - Added `FetchKeyResult` interface.
729
-
730
- - The `Router` now provide the matched route's URI template besides the name.
731
-
732
- - The return type of `Router.route()` method became `RouterRouteResult |
733
- null` (was `{ name: string; values: Record<string, string> } | null`).
734
- - Added `RouterRouteResult` interface.
735
-
736
- - Added `getTypeId()` function.
737
-
738
- - `Context.sendActivity()` and `InboxContext.forwardActivity()` methods now
739
- reject when they fail to enqueue the task. [[#192]]
740
-
741
- - Fedify now allows you to manually route an `Activity` to the corresponding
742
- inbox listener. [[#193]]
743
-
744
- - Added `Context.routeActivity()` method.
745
- - Added `RouteActivityOptions` interface.
746
-
747
- - `Object.toJsonLd()` without any `format` option now returns its original
748
- JSON-LD object even if it not created from `Object.fromJsonLd()` but it is
749
- returned from another `Object`'s `get*()` method.
750
-
751
- - Fedify now supports OpenTelemetry for tracing. [[#170]]
752
-
753
- - Added `Context.tracerProvider` property.
754
- - Added `CreateFederationOptions.tracerProvider` option.
755
- - Added `LookupWebFingerOptions.tracerProvider` option.
756
- - Added `LookupObjectOptions.tracerProvider` option.
757
- - Added `GetActorHandleOptions.tracerProvider` option.
758
- - Added `VerifyRequestOptions.tracerProvider` option.
759
- - Added `SignRequestOptions` interface.
760
- - Added the optional fourth parameter to `signRequest()` function.
761
- - Added `VerifyProofOptions.tracerProvider` option.
762
- - Added `VerifyObjectOptions.tracerProvider` option.
763
- - Added `SignObjectOptions.tracerProvider` option.
764
- - Added `VerifySignatureOptions.tracerProvider` option.
765
- - Added `VerifyJsonLdOptions.tracerProvider` option.
766
- - Added `SignJsonLdOptions.tracerProvider` option.
767
- - Added `DoesActorOwnKeyOptions.tracerProvider` option.
768
- - Added `GetKeyOwnerOptions.tracerProvider` option.
769
-
770
- - Added `tracerProvider` option to the following Activity Vocabulary APIs:
771
-
772
- - The second parameters of constructors.
773
- - The second parameters of `fromJsonLd()` static methods.
774
- - The second parameters of `get*()` methods.
775
-
776
- - Added `@fedify/fedify/x/sveltekit` module for integrating with [SvelteKit]
777
- hook. [[#171], [#183] by Jiyu Park]
778
-
779
- - Added `fedifyHook()` function.
780
-
781
- - The scaffold project generated by `fedify init` command now enables
782
- tracing data into log messages.
783
-
784
- - Let the `fedify lookup` command take multiple arguments.
785
- [[#173], [#186] by PGD]
786
-
787
-
788
- [SvelteKit]: https://kit.svelte.dev/
789
- [#162]: https://github.com/fedify-dev/fedify/issues/162
790
- [#170]: https://github.com/fedify-dev/fedify/issues/170
791
- [#171]: https://github.com/fedify-dev/fedify/issues/171
792
- [#173]: https://github.com/fedify-dev/fedify/issues/173
793
- [#183]: https://github.com/fedify-dev/fedify/pull/183
794
- [#186]: https://github.com/fedify-dev/fedify/pull/186
795
- [#192]: https://github.com/fedify-dev/fedify/issues/192
796
- [#193]: https://github.com/fedify-dev/fedify/issues/193
797
-
798
-
799
- Version 1.2.22
800
- --------------
801
-
802
- Released on May 16, 2025.
803
-
804
- - Fixed a bug where inbox handler had thrown a `jsonld.SyntaxError` which
805
- caused a `500 Internal Server Error` when the received activity had
806
- an invalid JSON-LD syntax. Now it logs the error and responds with
807
- a `400 Bad Request` error instead. [[#232]]
808
-
809
- - The `exportJwk()` function now populates the `alg` property of a returned
810
- `JsonWebKey` object with `"Ed25519"` if the input key is an Ed25519 key.
811
-
812
-
813
- Version 1.2.21
814
- --------------
815
-
816
- Released on April 8, 2025.
817
-
818
- - Activity Vocabulary API became to accept [RFC 3339] date-time strings
819
- without a timezone offset. This is not a bug fix, but improves
820
- interoperability with some implementations that do not include a timezone
821
- offset in their date-time strings including WordPress. [[#226]]
822
-
823
- - Added the following default context to `Undo` class:
824
-
825
- ~~~~ json
826
- {
827
- "litepub": "http://litepub.social/ns#",
828
- "toot": "http://joinmastodon.org/ns#",
829
- "EmojiReact": "litepub:EmojiReact",
830
- "Emoji": "toot:Emoji"
831
- }
832
- ~~~~
833
-
834
-
835
- Version 1.2.20
836
- --------------
837
-
838
- Released on March 26, 2025.
839
-
840
- - Fixed a `TypeError` thrown by the followers collection dispatcher when
841
- the `base-url` parameter was provided.
842
- - Fixed a `TypeError` thrown by the `signRequest()` function on Node.js.
843
- [[#222]]
844
-
845
-
846
- Version 1.2.19
847
- --------------
848
-
849
- Released on March 26, 2025.
850
-
851
- - Fixed a bug where the `totalItems` property of `OrderedCollection`
852
- objects returned by followers collection dispatcher had been an incorrect
853
- value if a `base-url` parameter was provided.
854
-
855
- - Fixed a bug where the `id` property of `OrderedCollection` and
856
- `OrderedCollectionPage` objects returned by followers collection dispatcher
857
- had been an incorrect value if a `base-url` parameter was provided.
858
-
859
-
860
- Version 1.2.18
861
- --------------
862
-
863
- Released on March 20, 2025.
864
-
865
- - Fixed a bug of WebFinger handler where it had failed to match
866
- `acct:` URIs with a host having a port number.
867
- [[#218], [#219] by Revath S Kumar]
868
-
869
- - Fixed a server error thrown when an invalid URL was passed to the `base-url`
870
- parameter of the followers collection. [[#217]]
871
-
872
-
873
- Version 1.2.17
874
- --------------
875
-
876
- Released on March 9, 2025.
877
-
878
- - Fedify no more depends on `node:punycode` module, which is deprecated in
879
- Node.js. Now it uses the built-in `node:url` module instead.
880
- [[#212], [#214] by Fróði Karlsson]
881
-
882
-
883
- Version 1.2.16
884
- --------------
885
-
886
- Released on February 28, 2025.
887
-
888
- - Made `fedify init` to install *@fedify/h3* 0.1.2 which is compatible with
889
- Fedify 1.0.0 or later versions when `--web-framework nitro` option is
890
- provided. [[#213]]
891
-
892
- - Fixed a bug where `fedify init` had failed to initialize a project with
893
- the `--runtime node --package-manager pnpm --web-framework nitro` option.
894
- [[#213]]
895
-
896
- - Made `fedify init` to install *@logtape/logtape* 0.7.2 which is the version
897
- used in Fedify 1.2.x.
898
-
899
-
900
- Version 1.2.15
901
- --------------
902
-
903
- Released on February 25, 2025.
904
-
905
- - Added the following default context to `Application`, `Group`,
906
- `Organization`, `Person`, and `Service` classes:
907
-
908
- ~~~~ json
909
- {
910
- "Emoji": "http://joinmastodon.org/ns#Emoji"
911
- }
912
- ~~~~
913
-
914
-
915
- Version 1.2.14
916
- --------------
917
-
918
- Released on February 22, 2025.
919
-
920
- - Added the following default contexts to `Follow`, `Undo`, and `Update`
921
- classes:
922
-
923
- - <https://w3id.org/security/v1>
924
- - <https://www.w3.org/ns/did/v1>
925
- - <https://w3id.org/security/multikey/v1>
926
-
927
-
928
- Version 1.2.13
929
- --------------
930
-
931
- Released on February 19, 2025.
932
-
933
- - Fixed a bug where the `fedify init` command had failed to locate package
934
- managers on Windows. [[#210]]
935
-
936
- - The `fedify` command became aware of `FEDIFY_LOG_FILE` environment variable
937
- to log messages to a file. If the variable is set, the command logs
938
- messages to the file specified by the variable.
939
-
940
-
941
- Version 1.2.12
942
- --------------
943
-
944
- Released on February 10, 2025.
945
-
946
- - Fixed a bug with nested object hydration in Activity Vocabulary API where
947
- deeply nested properties (like `Object.getAttribution()` on
948
- `Activity.getObject()`) were't being properly hydrated during `toJsonLd()`
949
- calls. Previously, subsequent calls to `toJsonLd()` on nested objects could
950
- result in inconsistent JSON-LD output where nested objects remained as URLs
951
- instead of being fully expanded.
952
-
953
-
954
- Version 1.2.11
955
- --------------
956
-
957
- Released on January 21, 2025.
958
-
959
- - Fixed several security vulnerabilities of the `lookupWebFinger()` function.
960
- [[CVE-2025-23221]]
961
-
962
- - Fixed a security vulnerability where the `lookupWebFinger()` function
963
- had followed the infinite number of redirects, which could lead to
964
- a denial of service attack. Now it follows up to 5 redirects.
965
-
966
- - Fixed a security vulnerability where the `lookupWebFinger()` function
967
- had followed the redirects to other than the HTTP/HTTPS schemes, which
968
- could lead to a security breach. Now it follows only the same scheme
969
- as the original request.
970
-
971
- - Fixed a security vulnerability where the `lookupWebFinger()` function
972
- had followed the redirects to the private network addresses, which
973
- could lead to a SSRF attack. Now it follows only the public network
974
- addresses.
975
-
976
-
977
- Version 1.2.10
978
- --------------
979
-
980
- Released on December 18, 2024.
981
-
982
- - Fixed the default document loader to handle the `Link` header with
983
- incorrect syntax. [[#196]]
984
-
985
-
986
- Version 1.2.9
987
- -------------
988
-
989
- Released on December 11, 2024.
990
-
991
- - Fixed idempotence check in inbox listeners to ensure activities for
992
- different origins are processed correctly.
993
-
994
-
995
- Version 1.2.8
996
- -------------
997
-
998
- Released on November 23, 2024.
999
-
1000
- - Fixed warnings from the `fedify inbox` command.
1001
- [[#177], [#181] by WinterHana]
1002
- - Fixed `ShikiError` on the `fedify inbox` command rendering web interface.
1003
- [[#178], [#185] by Heesun Jung]
1004
- - Fixed text overflow of the `fedify inbox` command's web log view.
1005
- [[#180], [#188] by Lim Kyunghee]
1006
-
1007
- [#177]: https://github.com/fedify-dev/fedify/issues/177
1008
- [#181]: https://github.com/fedify-dev/fedify/pull/181
1009
-
1010
-
1011
- Version 1.2.7
1012
- -------------
1013
-
1014
- Released on November 22, 2024.
1015
-
1016
- - Fixed a bug where `lookupWebFinger()` function had thrown a `TypeError`
1017
- when the *.well-known/webfinger* redirects to a relative URI. [[#166]]
1018
-
1019
-
1020
- Version 1.2.6
1021
- -------------
1022
-
1023
- Released on November 19, 2024.
1024
-
1025
- - Fix a bug where `Actor`'s `inbox` and `outbox` properties had not been
1026
- able to be set to an `OrderedCollectionPage` object, even though it is
1027
- a subtype of `OrderedCollection` according to Activity Vocabulary
1028
- specification. [[#165]]
1029
-
1030
- - The type of `Application()` constructor's `inbox` and `outbox` options
1031
- is now `OrderedCollection | OrderedCollectionPage | null | undefined`
1032
- (was `OrderedCollection | null | undefined`).
1033
- - The type of `Application.clone()` method's `inbox` and `outbox` options
1034
- is now `OrderedCollection | OrderedCollectionPage | null | undefined`
1035
- (was `OrderedCollection | null | undefined`).
1036
- - The return type of `Application.getInbox()` and
1037
- `Application.getOutbox()` methods is now `OrderedCollection |
1038
- OrderedCollectionPage | null` (was `OrderedCollection | null`).
1039
- - The type of `Group()` constructor's `inbox` and `outbox` options is
1040
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1041
- `OrderedCollection | null | undefined`).
1042
- - The type of `Group.clone()` method's `inbox` and `outbox` options is
1043
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1044
- `OrderedCollection | null | undefined`).
1045
- - The return type of `Group.getInbox()` and `Group.getOutbox()` methods
1046
- is now `OrderedCollection | OrderedCollectionPage | null` (was
1047
- `OrderedCollection | null`).
1048
- - The type of `Organization()` constructor's `inbox` and `outbox` options
1049
- is now `OrderedCollection | OrderedCollectionPage | null | undefined`
1050
- (was `OrderedCollection | null | undefined`).
1051
- - The type of `Organization.clone()` method's `inbox` and `outbox` options
1052
- is now `OrderedCollection | OrderedCollectionPage | null | undefined`
1053
- (was `OrderedCollection | null | undefined`).
1054
- - The return type of `Organization.getInbox()` and
1055
- `Organization.getOutbox()` methods is now `OrderedCollection |
1056
- OrderedCollectionPage | null` (was `OrderedCollection | null`).
1057
- - The type of `Person()` constructor's `inbox` and `outbox` options is
1058
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1059
- `OrderedCollection | null | undefined`).
1060
- - The type of `Person.clone()` method's `inbox` and `outbox` options is
1061
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1062
- `OrderedCollection | null | undefined`).
1063
- - The return type of `Person.getInbox()` and `Person.getOutbox()` methods
1064
- is now `OrderedCollection | OrderedCollectionPage | null` (was
1065
- `OrderedCollection | null`).
1066
- - The type of `Service()` constructor's `inbox` and `outbox` options is
1067
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1068
- `OrderedCollection | null | undefined`).
1069
- - The type of `Service.clone()` method's `inbox` and `outbox` options is
1070
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1071
- `OrderedCollection | null | undefined`).
1072
- - The return type of `Service.getInbox()` and `Service.getOutbox()`
1073
- methods is now `OrderedCollection | OrderedCollectionPage | null` (was
1074
- `OrderedCollection | null`).
1075
-
1076
-
1077
- Version 1.2.5
1078
- -------------
1079
-
1080
- Released on November 14, 2024.
1081
-
1082
- - Suppressed a `TypeError` with a message <q>unusable</q> due to Node.js's
1083
- mysterious behavior. [[#159]]
1084
-
1085
- - The `verifyRequest()` function no longer throws a `TypeError`
1086
- when a given `Request` object's body is already consumed or locked.
1087
- Instead, it logs an error message to the `["fedify", "sig", "http"]`
1088
- logger category and returns `null`.
1089
- - The `Federation.fetch()` method no longer throws a `TypeError`
1090
- when a given `Request` object's body is already consumed or locked.
1091
- Instead, it logs an error message to the `["fedify", "federation",
1092
- "inbox"]` logger category and responds with a `500 Internal Server
1093
- Error`.
1094
-
1095
-
1096
- Version 1.2.4
1097
- -------------
1098
-
1099
- Released on November 12, 2024.
1100
-
1101
- - Fixed a bug where default document loaders had thrown a `TypeError`
1102
- with a message <q>Body is unusable: Body has already been read</q> or
1103
- <q>Body already consumed</q> when the content type of the response was
1104
- an HTML document and there's no link to a JSON-LD document.
1105
-
1106
- - Fixed a bug where `verifySignature()` and `verifyJsonLd()` functions
1107
- sometimes had thrown a `jsonld.ValidationError` error. Now such errors
1108
- are caught and logged as warnings, and the signature to verify is considered
1109
- as invalid.
1110
-
1111
-
1112
- Version 1.2.3
1113
- -------------
1114
-
1115
- Released on November 6, 2024.
1116
-
1117
- - The `fedify node` subcommand now can recognize multiple values of
1118
- the `rel` attribute in the `<link>` HTML elements.
1119
-
1120
-
1121
- Version 1.2.2
1122
- -------------
1123
-
1124
- Released on November 1, 2024.
1125
-
1126
- - Handle connection errors (rather than HTTP errors) in
1127
- the `Context.sendActivity()` method.
1128
-
1129
- - Support the `fedify` command on Windows on ARM64 via x64 emulation.
1130
- [[#160]]
1131
-
1132
- [#160]: https://github.com/fedify-dev/fedify/issues/160
1133
-
1134
-
1135
- Version 1.2.1
1136
- -------------
1137
-
1138
- Released on October 31, 2024.
1139
-
1140
- - Now `fedify node` command can render the node's favicon with
1141
- `image/vnd.microsoft.icon` or `image/x-icon` format.
1142
-
1143
-
1144
- Version 1.2.0
1145
- -------------
1146
-
1147
- Released on October 31, 2024.
1148
-
1149
- - Added `InboxContext.recipient` property.
1150
-
1151
- - Added NodeInfo client functions.
1152
-
1153
- - Added `getNodeInfo()` function.
1154
- - Added `GetNodeInfoOptions` interface.
1155
- - Added `parseNodeInfo()` function.
1156
- - Added `ParseNodeInfoOptions` interface.
1157
-
1158
- - Re-exported Semantic Versioning-related types and functions:
1159
-
1160
- - Added `SemVer` type.
1161
- - Added `formatSemVer()` function.
1162
- - Added `parseSemVer()` function.
1163
-
1164
- - Added `followedMessage` property to `Actor` type in Activity Vocabulary API.
1165
-
1166
- - Added `Application.followedMessage` property.
1167
- - `new Application()` constructor now accepts `followedMessage` option.
1168
- - `Application.clone()` method now accepts `followedMessage` option.
1169
- - Added `Group.followedMessage` property.
1170
- - `new Group()` constructor now accepts `followedMessage` option.
1171
- - `Group.clone()` method now accepts `followedMessage` option.
1172
- - Added `Organization.followedMessage` property.
1173
- - `new Organization()` constructor now accepts `followedMessage` option.
1174
- - `Organization.clone()` method now accepts `followedMessage` option.
1175
- - Added `Person.followedMessage` property.
1176
- - `new Person()` constructor now accepts `followedMessage` option.
1177
- - `Person.clone()` method now accepts `followedMessage` option.
1178
- - Added `Service.followedMessage` property.
1179
- - `new Service()` constructor now accepts `followedMessage` option.
1180
- - `Service.clone()` method now accepts `followedMessage` option.
1181
-
1182
- - Log messages now can be traced using [LogTape]'s [implicit contexts].
1183
- [[#118]]
1184
-
1185
- - Added options for an AMQP driver to `fedify init` command.
1186
-
1187
- - Added `amqp` value to the `-q`/`--message-queue` option of
1188
- the `fedify init` command.
1189
-
1190
- - Added `fedify node` subcommand.
1191
-
1192
- - Added more log messages using the [LogTape] library. Currently the below
1193
- logger categories are used:
1194
-
1195
- - `["fedify", "nodeinfo", "client"]`
1196
-
1197
- [implicit contexts]: https://logtape.org/manual/contexts#implicit-contexts
1198
- [#118]: https://github.com/fedify-dev/fedify/issues/118
1199
-
1200
-
1201
- Version 1.1.22
1202
- --------------
1203
-
1204
- Released on May 16, 2025.
1205
-
1206
- - Fixed a bug where inbox handler had thrown a `jsonld.SyntaxError` which
1207
- caused a `500 Internal Server Error` when the received activity had
1208
- an invalid JSON-LD syntax. Now it logs the error and responds with
1209
- a `400 Bad Request` error instead. [[#232]]
1210
-
1211
- - The `exportJwk()` function now populates the `alg` property of a returned
1212
- `JsonWebKey` object with `"Ed25519"` if the input key is an Ed25519 key.
1213
-
1214
-
1215
- Version 1.1.21
1216
- --------------
1217
-
1218
- Released on April 8, 2025.
1219
-
1220
- - Activity Vocabulary API became to accept [RFC 3339] date-time strings
1221
- without a timezone offset. This is not a bug fix, but improves
1222
- interoperability with some implementations that do not include a timezone
1223
- offset in their date-time strings including WordPress. [[#226]]
1224
-
1225
- - Added the following default context to `Undo` class:
1226
-
1227
- ~~~~ json
1228
- {
1229
- "litepub": "http://litepub.social/ns#",
1230
- "toot": "http://joinmastodon.org/ns#",
1231
- "EmojiReact": "litepub:EmojiReact",
1232
- "Emoji": "toot:Emoji"
1233
- }
1234
- ~~~~
1235
-
1236
-
1237
- Version 1.1.20
1238
- --------------
1239
-
1240
- Released on March 26, 2025.
1241
-
1242
- - Fixed a `TypeError` thrown by the followers collection dispatcher when
1243
- the `base-url` parameter was provided.
1244
- - Fixed a `TypeError` thrown by the `signRequest()` function on Node.js.
1245
- [[#222]]
1246
-
1247
-
1248
- Version 1.1.19
1249
- --------------
1250
-
1251
- Released on March 26, 2025.
1252
-
1253
- - Fixed a bug where the `totalItems` property of `OrderedCollection`
1254
- objects returned by followers collection dispatcher had been an incorrect
1255
- value if a `base-url` parameter was provided.
1256
-
1257
- - Fixed a bug where the `id` property of `OrderedCollection` and
1258
- `OrderedCollectionPage` objects returned by followers collection dispatcher
1259
- had been an incorrect value if a `base-url` parameter was provided.
1260
-
1261
-
1262
- Version 1.1.18
1263
- --------------
1264
-
1265
- Released on March 20, 2025.
1266
-
1267
- - Fixed a bug of WebFinger handler where it had failed to match
1268
- `acct:` URIs with a host having a port number.
1269
- [[#218], [#219] by Revath S Kumar]
1270
-
1271
- - Fixed a server error thrown when an invalid URL was passed to the `base-url`
1272
- parameter of the followers collection. [[#217]]
1273
-
1274
-
1275
- Version 1.1.17
1276
- --------------
1277
-
1278
- Released on March 9, 2025.
1279
-
1280
- - Fedify no more depends on `node:punycode` module, which is deprecated in
1281
- Node.js. Now it uses the built-in `node:url` module instead.
1282
- [[#212], [#214] by Fróði Karlsson]
1283
-
1284
-
1285
- Version 1.1.16
1286
- --------------
1287
-
1288
- Released on February 28, 2025.
1289
-
1290
- - Made `fedify init` to install *@fedify/h3* 0.1.2 which is compatible with
1291
- Fedify 1.0.0 or later versions when `--web-framework nitro` option is
1292
- provided. [[#213]]
1293
-
1294
- - Fixed a bug where `fedify init` had failed to initialize a project with
1295
- the `--runtime node --package-manager pnpm --web-framework nitro` option.
1296
- [[#213]]
1297
-
1298
- - Made `fedify init` to install *@logtape/logtape* 0.6.5 which is the version
1299
- used in Fedify 1.1.x.
1300
-
1301
-
1302
- Version 1.1.15
1303
- --------------
1304
-
1305
- Released on February 25, 2025.
1306
-
1307
- - Added the following default context to `Application`, `Group`,
1308
- `Organization`, `Person`, and `Service` classes:
1309
-
1310
- ~~~~ json
1311
- {
1312
- "Emoji": "http://joinmastodon.org/ns#Emoji"
1313
- }
1314
- ~~~~
1315
-
1316
-
1317
- Version 1.1.14
1318
- --------------
1319
-
1320
- Released on February 22, 2025.
1321
-
1322
- - Added the following default contexts to `Follow`, `Undo`, and `Update`
1323
- classes:
1324
-
1325
- - <https://w3id.org/security/v1>
1326
- - <https://www.w3.org/ns/did/v1>
1327
- - <https://w3id.org/security/multikey/v1>
1328
-
1329
-
1330
- Version 1.1.13
1331
- --------------
1332
-
1333
- Released on February 19, 2025.
1334
-
1335
- - Fixed a bug where the `fedify init` command had failed to locate package
1336
- managers on Windows. [[#210]]
1337
-
1338
- - The `fedify` command became aware of `FEDIFY_LOG_FILE` environment variable
1339
- to log messages to a file. If the variable is set, the command logs
1340
- messages to the file specified by the variable.
1341
-
1342
-
1343
- Version 1.1.12
1344
- --------------
1345
-
1346
- Released on February 10, 2025.
1347
-
1348
- - Fixed a bug with nested object hydration in Activity Vocabulary API where
1349
- deeply nested properties (like `Object.getAttribution()` on
1350
- `Activity.getObject()`) were't being properly hydrated during `toJsonLd()`
1351
- calls. Previously, subsequent calls to `toJsonLd()` on nested objects could
1352
- result in inconsistent JSON-LD output where nested objects remained as URLs
1353
- instead of being fully expanded.
1354
-
1355
-
1356
- Version 1.1.11
1357
- --------------
1358
-
1359
- Released on January 21, 2025.
1360
-
1361
- - Fixed several security vulnerabilities of the `lookupWebFinger()` function.
1362
- [[CVE-2025-23221]]
1363
-
1364
- - Fixed a security vulnerability where the `lookupWebFinger()` function
1365
- had followed the infinite number of redirects, which could lead to
1366
- a denial of service attack. Now it follows up to 5 redirects.
1367
-
1368
- - Fixed a security vulnerability where the `lookupWebFinger()` function
1369
- had followed the redirects to other than the HTTP/HTTPS schemes, which
1370
- could lead to a security breach. Now it follows only the same scheme
1371
- as the original request.
1372
-
1373
- - Fixed a security vulnerability where the `lookupWebFinger()` function
1374
- had followed the redirects to the private network addresses, which
1375
- could lead to a SSRF attack. Now it follows only the public network
1376
- addresses.
1377
-
1378
-
1379
- Version 1.1.10
1380
- --------------
1381
-
1382
- Released on December 18, 2024.
1383
-
1384
- - Fixed the default document loader to handle the `Link` header with
1385
- incorrect syntax. [[#196]]
1386
-
1387
-
1388
- Version 1.1.9
1389
- -------------
1390
-
1391
- Released on December 11, 2024.
1392
-
1393
- - Fixed idempotence check in inbox listeners to ensure activities for
1394
- different origins are processed correctly.
1395
-
1396
-
1397
- Version 1.1.8
1398
- -------------
1399
-
1400
- Released on November 23, 2024.
1401
-
1402
- - Fixed `ShikiError` on the `fedify inbox` command rendering web interface.
1403
- [[#178], [#185] by Heesun Jung]
1404
- - Fixed text overflow of the `fedify inbox` command's web log view.
1405
- [[#180], [#188] by Lim Kyunghee]
1406
-
1407
- [#178]: https://github.com/fedify-dev/fedify/issues/178
1408
- [#180]: https://github.com/fedify-dev/fedify/issues/180
1409
- [#185]: https://github.com/fedify-dev/fedify/pull/185
1410
- [#188]: https://github.com/fedify-dev/fedify/pull/188
1411
-
1412
-
1413
- Version 1.1.7
1414
- -------------
1415
-
1416
- Released on November 22, 2024.
1417
-
1418
- - Fixed a bug where `lookupWebFinger()` function had thrown a `TypeError`
1419
- when the *.well-known/webfinger* redirects to a relative URI. [[#166]]
1420
-
1421
-
1422
- Version 1.1.6
1423
- -------------
1424
-
1425
- Released on November 19, 2024.
1426
-
1427
- - Fix a bug where `Actor`'s `inbox` and `outbox` properties had not been
1428
- able to be set to an `OrderedCollectionPage` object, even though it is
1429
- a subtype of `OrderedCollection` according to Activity Vocabulary
1430
- specification. [[#165]]
1431
-
1432
- - The type of `Application()` constructor's `inbox` and `outbox` options
1433
- is now `OrderedCollection | OrderedCollectionPage | null | undefined`
1434
- (was `OrderedCollection | null | undefined`).
1435
- - The type of `Application.clone()` method's `inbox` and `outbox` options
1436
- is now `OrderedCollection | OrderedCollectionPage | null | undefined`
1437
- (was `OrderedCollection | null | undefined`).
1438
- - The return type of `Application.getInbox()` and
1439
- `Application.getOutbox()` methods is now `OrderedCollection |
1440
- OrderedCollectionPage | null` (was `OrderedCollection | null`).
1441
- - The type of `Group()` constructor's `inbox` and `outbox` options is
1442
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1443
- `OrderedCollection | null | undefined`).
1444
- - The type of `Group.clone()` method's `inbox` and `outbox` options is
1445
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1446
- `OrderedCollection | null | undefined`).
1447
- - The return type of `Group.getInbox()` and `Group.getOutbox()` methods
1448
- is now `OrderedCollection | OrderedCollectionPage | null` (was
1449
- `OrderedCollection | null`).
1450
- - The type of `Organization()` constructor's `inbox` and `outbox` options
1451
- is now `OrderedCollection | OrderedCollectionPage | null | undefined`
1452
- (was `OrderedCollection | null | undefined`).
1453
- - The type of `Organization.clone()` method's `inbox` and `outbox` options
1454
- is now `OrderedCollection | OrderedCollectionPage | null | undefined`
1455
- (was `OrderedCollection | null | undefined`).
1456
- - The return type of `Organization.getInbox()` and
1457
- `Organization.getOutbox()` methods is now `OrderedCollection |
1458
- OrderedCollectionPage | null` (was `OrderedCollection | null`).
1459
- - The type of `Person()` constructor's `inbox` and `outbox` options is
1460
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1461
- `OrderedCollection | null | undefined`).
1462
- - The type of `Person.clone()` method's `inbox` and `outbox` options is
1463
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1464
- `OrderedCollection | null | undefined`).
1465
- - The return type of `Person.getInbox()` and `Person.getOutbox()` methods
1466
- is now `OrderedCollection | OrderedCollectionPage | null` (was
1467
- `OrderedCollection | null`).
1468
- - The type of `Service()` constructor's `inbox` and `outbox` options is
1469
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1470
- `OrderedCollection | null | undefined`).
1471
- - The type of `Service.clone()` method's `inbox` and `outbox` options is
1472
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1473
- `OrderedCollection | null | undefined`).
1474
- - The return type of `Service.getInbox()` and `Service.getOutbox()`
1475
- methods is now `OrderedCollection | OrderedCollectionPage | null` (was
1476
- `OrderedCollection | null`).
1477
-
1478
-
1479
- Version 1.1.5
1480
- -------------
1481
-
1482
- Released on November 14, 2024.
1483
-
1484
- - Suppressed a `TypeError` with a message <q>unusable</q> due to Node.js's
1485
- mysterious behavior. [[#159]]
1486
-
1487
- - The `verifyRequest()` function no longer throws a `TypeError`
1488
- when a given `Request` object's body is already consumed or locked.
1489
- Instead, it logs an error message to the `["fedify", "sig", "http"]`
1490
- logger category and returns `null`.
1491
- - The `Federation.fetch()` method no longer throws a `TypeError`
1492
- when a given `Request` object's body is already consumed or locked.
1493
- Instead, it logs an error message to the `["fedify", "federation",
1494
- "inbox"]` logger category and responds with a `500 Internal Server
1495
- Error`.
1496
-
1497
-
1498
- Version 1.1.4
1499
- -------------
1500
-
1501
- Released on November 12, 2024.
1502
-
1503
- - Fixed a bug where default document loaders had thrown a `TypeError`
1504
- with a message <q>Body is unusable: Body has already been read</q> or
1505
- <q>Body already consumed</q> when the content type of the response was
1506
- an HTML document and there's no link to a JSON-LD document.
1507
-
1508
- - Fixed a bug where `verifySignature()` and `verifyJsonLd()` functions
1509
- sometimes had thrown a `jsonld.ValidationError` error. Now such errors
1510
- are caught and logged as warnings, and the signature to verify is considered
1511
- as invalid.
1512
-
1513
-
1514
- Version 1.1.3
1515
- -------------
1516
-
1517
- Released on October 31, 2024.
1518
-
1519
- - Fixed a bug where `fetchDocumentLoader()` function had disallowed
1520
- redirecting to a private network address when the second parameter,
1521
- a `boolean` value to allow private network addresses, was `true`.
1522
-
1523
-
1524
- Version 1.1.2
1525
- -------------
1526
-
1527
- Released on October 27, 2024.
1528
-
1529
- - Fixed default document loaders' incorrect handling of relative URIs in
1530
- `Link` headers with `rel=alternate`. [[#155] by Emelia Smith]
1531
- - The `fetchDocumentLoader()` function now preloads the following JSON-LD
1532
- context: <http://schema.org/>.
1533
-
1534
-
1535
- Version 1.1.1
1536
- -------------
1537
-
1538
- Released on October 23, 2024.
1539
-
1540
- - The `fetchDocumentLoader()` function now preloads the following JSON-LD
1541
- context: <https://purl.archive.org/socialweb/webfinger>.
1542
-
1543
-
1544
- Version 1.1.0
1545
- -------------
1546
-
1547
- Released on October 20, 2024.
1548
-
1549
- - Added utility functions for traversing remote collections. [[#150]]
1550
-
1551
- - Added `Context.traverseCollection()` method.
1552
- - Added `traverseCollection()` function.
1553
- - Added `TraverseCollectionOptions` interface.
1554
-
1555
- - Added `EmojiReact` class to Activity Vocabulary API. [[FEP-c0e0]]
1556
-
1557
- - Added `successor` property to the `Actor` types in the Activity
1558
- Vocabulary API.
1559
-
1560
- - Added `Application.getSuccessor()` method.
1561
- - `new Application()` constructor now accepts `successor` option.
1562
- - `Application.clone()` method now accepts `successor` option.
1563
- - Added `Group.getSuccessor()` method.
1564
- - `new Group()` constructor now accepts `successor` option.
1565
- - `Group.clone()` method now accepts `successor` option.
1566
- - Added `Organization.getSuccessor()` method.
1567
- - `new Organization()` constructor now accepts `successor` option.
1568
- - `Organization.clone()` method now accepts `successor` option.
1569
- - Added `Person.getSuccessor()` method.
1570
- - `new Person()` constructor now accepts `successor` option.
1571
- - `Person.clone()` method now accepts `successor` option.
1572
- - Added `Service.getSuccessor()` method.
1573
- - `new Service()` constructor now accepts `successor` option.
1574
- - `Service.clone()` method now accepts `successor` option.
1575
-
1576
- - Added `DidService` class to Activity Vocabulary API.
1577
- [[FEP-9091], [#146]]
1578
-
1579
- - Added `Export` class to Activity Vocabulary API.
1580
- [[FEP-9091], [#146]]
1581
-
1582
- - Added `service` property to the `Actor` types in the Activity
1583
- Vocabulary API. [[FEP-9091], [#146]]
1584
-
1585
- - Added `Application.getService()` method.
1586
- - Added `Application.getServices()` method.
1587
- - `new Application()` constructor now accepts `service` option.
1588
- - `new Application()` constructor now accepts `services` option.
1589
- - `Application.clone()` method now accepts `service` option.
1590
- - `Application.clone()` method now accepts `services` option.
1591
- - Added `Group.getService()` method.
1592
- - Added `Group.getServices()` method.
1593
- - `new Group()` constructor now accepts `service` option.
1594
- - `new Group()` constructor now accepts `services` option.
1595
- - `Group.clone()` method now accepts `service` option.
1596
- - `Group.clone()` method now accepts `services` option.
1597
- - Added `Organization.getService()` method.
1598
- - Added `Organization.getServices()` method.
1599
- - `new Organization()` constructor now accepts `service` option.
1600
- - `new Organization()` constructor now accepts `services` option.
1601
- - `Organization.clone()` method now accepts `service` option.
1602
- - `Organization.clone()` method now accepts `services` option.
1603
- - Added `Person.getService()` method.
1604
- - Added `Person.getServices()` method.
1605
- - `new Person()` constructor now accepts `service` option.
1606
- - `new Person()` constructor now accepts `services` option.
1607
- - `Person.clone()` method now accepts `service` option.
1608
- - `Person.clone()` method now accepts `services` option.
1609
- - Added `Service.getService()` method.
1610
- - Added `Service.getServices()` method.
1611
- - `new Service()` constructor now accepts `service` option.
1612
- - `new Service()` constructor now accepts `services` option.
1613
- - `Service.clone()` method now accepts `service` option.
1614
- - `Service.clone()` method now accepts `services` option.
1615
-
1616
- - The default time window for verifying HTTP Signatures of incoming requests
1617
- is now an hour (was a minute). This new default window is according to
1618
- the [ActivityPub and HTTP Signatures] document.
1619
-
1620
- - The default value of `VerifyRequestOptions.timeWindow` option became
1621
- `{ hours: 1 }` (was `{ minutes: 1 }`).
1622
-
1623
- - The default value of `CreateFederationOptions.signatureTimeWindow`
1624
- option became `{ hours: 1 }` (was `{ minutes: 1 }`).
1625
-
1626
- - The type of `VerifyRequestOptions.timeWindow` property became
1627
- `Temporal.Duration | Temporal.DurationLike | false`
1628
- (was `Temporal.DurationLike | false`).
1629
-
1630
- - The type of `CreateFederationOptions.signatureTimeWindow` property
1631
- became `Temporal.Duration | Temporal.DurationLike | false`
1632
- (was `Temporal.DurationLike | false`).
1633
-
1634
- - In the `fedify inbox` command's web interface, the *Raw Activity* tab is
1635
- added to show the raw JSON object of the received activity.
1636
-
1637
- [FEP-c0e0]: https://w3id.org/fep/c0e0
1638
- [FEP-9091]: https://w3id.org/fep/9091
1639
- [ActivityPub and HTTP Signatures]: https://swicg.github.io/activitypub-http-signature/
1640
- [#146]: https://github.com/fedify-dev/fedify/issues/146
1641
- [#150]: https://github.com/fedify-dev/fedify/issues/150
1642
-
1643
-
1644
- Version 1.0.25
1645
- --------------
1646
-
1647
- Released on May 16, 2025.
1648
-
1649
- - Fixed a bug where inbox handler had thrown a `jsonld.SyntaxError` which
1650
- caused a `500 Internal Server Error` when the received activity had
1651
- an invalid JSON-LD syntax. Now it logs the error and responds with
1652
- a `400 Bad Request` error instead. [[#232]]
1653
-
1654
- - The `exportJwk()` function now populates the `alg` property of a returned
1655
- `JsonWebKey` object with `"Ed25519"` if the input key is an Ed25519 key.
1656
-
1657
- [#232]: https://github.com/fedify-dev/fedify/issues/232
1658
-
1659
-
1660
- Version 1.0.24
1661
- --------------
1662
-
1663
- Released on April 8, 2025.
1664
-
1665
- - Activity Vocabulary API became to accept [RFC 3339] date-time strings
1666
- without a timezone offset. This is not a bug fix, but improves
1667
- interoperability with some implementations that do not include a timezone
1668
- offset in their date-time strings including WordPress. [[#226]]
1669
-
1670
- [RFC 3339]: https://datatracker.ietf.org/doc/html/rfc3339
1671
- [#226]: https://github.com/fedify-dev/fedify/issues/226
1672
-
1673
-
1674
- Version 1.0.23
1675
- --------------
1676
-
1677
- Released on March 26, 2025.
1678
-
1679
- - Fixed a `TypeError` thrown by the followers collection dispatcher when
1680
- the `base-url` parameter was provided.
1681
- - Fixed a `TypeError` thrown by the `signRequest()` function on Node.js.
1682
- [[#222]]
1683
-
1684
- [#222]: https://github.com/fedify-dev/fedify/issues/222
1685
-
1686
-
1687
- Version 1.0.22
1688
- --------------
1689
-
1690
- Released on March 26, 2025.
1691
-
1692
- - Fixed a bug where the `totalItems` property of `OrderedCollection`
1693
- objects returned by followers collection dispatcher had been an incorrect
1694
- value if a `base-url` parameter was provided.
1695
-
1696
- - Fixed a bug where the `id` property of `OrderedCollection` and
1697
- `OrderedCollectionPage` objects returned by followers collection dispatcher
1698
- had been an incorrect value if a `base-url` parameter was provided.
1699
-
1700
-
1701
- Version 1.0.21
1702
- --------------
1703
-
1704
- Released on March 20, 2025.
1705
-
1706
- - Fixed a bug of WebFinger handler where it had failed to match
1707
- `acct:` URIs with a host having a port number.
1708
- [[#218], [#219] by Revath S Kumar]
1709
-
1710
- - Fixed a server error thrown when an invalid URL was passed to the `base-url`
1711
- parameter of the followers collection. [[#217]]
1712
-
1713
- [#217]: https://github.com/fedify-dev/fedify/issues/217
1714
- [#218]: https://github.com/fedify-dev/fedify/issues/218
1715
- [#219]: https://github.com/fedify-dev/fedify/pull/219
1716
-
1717
-
1718
- Version 1.0.20
1719
- --------------
1720
-
1721
- Released on March 9, 2025.
1722
-
1723
- - Fedify no more depends on `node:punycode` module, which is deprecated in
1724
- Node.js. Now it uses the built-in `node:url` module instead.
1725
- [[#212], [#214] by Fróði Karlsson]
1726
-
1727
- [#212]: https://github.com/fedify-dev/fedify/issues/212
1728
- [#214]: https://github.com/fedify-dev/fedify/pull/214
1729
-
1730
-
1731
- Version 1.0.19
1732
- --------------
1733
-
1734
- Released on February 28, 2025.
1735
-
1736
- - Made `fedify init` to install *@fedify/h3* 0.1.2 which is compatible with
1737
- Fedify 1.0.0 or later versions when `--web-framework nitro` option is
1738
- provided. [[#213]]
1739
-
1740
- - Fixed a bug where `fedify init` had failed to initialize a project with
1741
- the `--runtime node --package-manager pnpm --web-framework nitro` option.
1742
- [[#213]]
1743
-
1744
- - Made `fedify init` to install *@logtape/logtape* 0.6.5 which is the version
1745
- used in Fedify 1.0.x.
1746
-
1747
- [#213]: https://github.com/fedify-dev/fedify/issues/213
1748
-
1749
-
1750
- Version 1.0.18
1751
- --------------
1752
-
1753
- Released on February 25, 2025.
1754
-
1755
- - Added the following default context to `Application`, `Group`,
1756
- `Organization`, `Person`, and `Service` classes:
1757
-
1758
- ~~~~ json
1759
- {
1760
- "Emoji": "http://joinmastodon.org/ns#Emoji"
1761
- }
1762
- ~~~~
1763
-
1764
-
1765
- Version 1.0.17
1766
- --------------
1767
-
1768
- Released on February 22, 2025.
1769
-
1770
- - Added the following default contexts to `Follow`, `Undo`, and `Update`
1771
- classes:
1772
-
1773
- - <https://w3id.org/security/v1>
1774
- - <https://www.w3.org/ns/did/v1>
1775
- - <https://w3id.org/security/multikey/v1>
1776
-
1777
-
1778
- Version 1.0.16
1779
- --------------
1780
-
1781
- Released on February 19, 2025.
1782
-
1783
- - Fixed a bug where the `fedify init` command had failed to locate package
1784
- managers on Windows. [[#210]]
1785
-
1786
- - The `fedify` command became aware of `FEDIFY_LOG_FILE` environment variable
1787
- to log messages to a file. If the variable is set, the command logs
1788
- messages to the file specified by the variable.
1789
-
1790
- [#210]: https://github.com/fedify-dev/fedify/issues/210
1791
-
1792
-
1793
- Version 1.0.15
1794
- --------------
1795
-
1796
- Released on February 10, 2025.
1797
-
1798
- - Fixed a bug with nested object hydration in Activity Vocabulary API where
1799
- deeply nested properties (like `Object.getAttribution()` on
1800
- `Activity.getObject()`) were't being properly hydrated during `toJsonLd()`
1801
- calls. Previously, subsequent calls to `toJsonLd()` on nested objects could
1802
- result in inconsistent JSON-LD output where nested objects remained as URLs
1803
- instead of being fully expanded.
1804
-
1805
-
1806
- Version 1.0.14
1807
- --------------
1808
-
1809
- Released on January 21, 2025.
1810
-
1811
- - Fixed several security vulnerabilities of the `lookupWebFinger()` function.
1812
- [[CVE-2025-23221]]
1813
-
1814
- - Fixed a security vulnerability where the `lookupWebFinger()` function
1815
- had followed the infinite number of redirects, which could lead to
1816
- a denial of service attack. Now it follows up to 5 redirects.
1817
-
1818
- - Fixed a security vulnerability where the `lookupWebFinger()` function
1819
- had followed the redirects to other than the HTTP/HTTPS schemes, which
1820
- could lead to a security breach. Now it follows only the same scheme
1821
- as the original request.
1822
-
1823
- - Fixed a security vulnerability where the `lookupWebFinger()` function
1824
- had followed the redirects to the private network addresses, which
1825
- could lead to a SSRF attack. Now it follows only the public network
1826
- addresses.
1827
-
1828
- [CVE-2025-23221]: https://github.com/fedify-dev/fedify/security/advisories/GHSA-c59p-wq67-24wx
1829
-
1830
-
1831
- Version 1.0.13
1832
- --------------
1833
-
1834
- Released on December 18, 2024.
1835
-
1836
- - Fixed the default document loader to handle the `Link` header with
1837
- incorrect syntax. [[#196]]
1838
-
1839
- [#196]: https://github.com/fedify-dev/fedify/issues/196
1840
-
1841
-
1842
- Version 1.0.12
1843
- --------------
1844
-
1845
- Released on December 11, 2024.
1846
-
1847
- - Fixed idempotence check in inbox listeners to ensure activities for
1848
- different origins are processed correctly.
1849
-
1850
-
1851
- Version 1.0.11
1852
- --------------
1853
-
1854
- Released on November 22, 2024.
1855
-
1856
- - Fixed a bug where `lookupWebFinger()` function had thrown a `TypeError`
1857
- when the *.well-known/webfinger* redirects to a relative URI. [[#166]]
1858
-
1859
-
1860
- Version 1.0.10
1861
- --------------
1862
-
1863
- Released on November 19, 2024.
1864
-
1865
- - Fix a bug where `Actor`'s `inbox` and `outbox` properties had not been
1866
- able to be set to an `OrderedCollectionPage` object, even though it is
1867
- a subtype of `OrderedCollection` according to Activity Vocabulary
1868
- specification. [[#165]]
1869
-
1870
- - The type of `Application()` constructor's `inbox` and `outbox` options
1871
- is now `OrderedCollection | OrderedCollectionPage | null | undefined`
1872
- (was `OrderedCollection | null | undefined`).
1873
- - The type of `Application.clone()` method's `inbox` and `outbox` options
1874
- is now `OrderedCollection | OrderedCollectionPage | null | undefined`
1875
- (was `OrderedCollection | null | undefined`).
1876
- - The return type of `Application.getInbox()` and
1877
- `Application.getOutbox()` methods is now `OrderedCollection |
1878
- OrderedCollectionPage | null` (was `OrderedCollection | null`).
1879
- - The type of `Group()` constructor's `inbox` and `outbox` options is
1880
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1881
- `OrderedCollection | null | undefined`).
1882
- - The type of `Group.clone()` method's `inbox` and `outbox` options is
1883
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1884
- `OrderedCollection | null | undefined`).
1885
- - The return type of `Group.getInbox()` and `Group.getOutbox()` methods
1886
- is now `OrderedCollection | OrderedCollectionPage | null` (was
1887
- `OrderedCollection | null`).
1888
- - The type of `Organization()` constructor's `inbox` and `outbox` options
1889
- is now `OrderedCollection | OrderedCollectionPage | null | undefined`
1890
- (was `OrderedCollection | null | undefined`).
1891
- - The type of `Organization.clone()` method's `inbox` and `outbox` options
1892
- is now `OrderedCollection | OrderedCollectionPage | null | undefined`
1893
- (was `OrderedCollection | null | undefined`).
1894
- - The return type of `Organization.getInbox()` and
1895
- `Organization.getOutbox()` methods is now `OrderedCollection |
1896
- OrderedCollectionPage | null` (was `OrderedCollection | null`).
1897
- - The type of `Person()` constructor's `inbox` and `outbox` options is
1898
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1899
- `OrderedCollection | null | undefined`).
1900
- - The type of `Person.clone()` method's `inbox` and `outbox` options is
1901
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1902
- `OrderedCollection | null | undefined`).
1903
- - The return type of `Person.getInbox()` and `Person.getOutbox()` methods
1904
- is now `OrderedCollection | OrderedCollectionPage | null` (was
1905
- `OrderedCollection | null`).
1906
- - The type of `Service()` constructor's `inbox` and `outbox` options is
1907
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1908
- `OrderedCollection | null | undefined`).
1909
- - The type of `Service.clone()` method's `inbox` and `outbox` options is
1910
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
1911
- `OrderedCollection | null | undefined`).
1912
- - The return type of `Service.getInbox()` and `Service.getOutbox()`
1913
- methods is now `OrderedCollection | OrderedCollectionPage | null` (was
1914
- `OrderedCollection | null`).
1915
-
1916
-
1917
- Version 1.0.9
1918
- -------------
1919
-
1920
- Released on November 14, 2024.
1921
-
1922
- - Suppressed a `TypeError` with a message <q>unusable</q> due to Node.js's
1923
- mysterious behavior. [[#159]]
1924
-
1925
- - The `verifyRequest()` function no longer throws a `TypeError`
1926
- when a given `Request` object's body is already consumed or locked.
1927
- Instead, it logs an error message to the `["fedify", "sig", "http"]`
1928
- logger category and returns `null`.
1929
- - The `Federation.fetch()` method no longer throws a `TypeError`
1930
- when a given `Request` object's body is already consumed or locked.
1931
- Instead, it logs an error message to the `["fedify", "federation",
1932
- "inbox"]` logger category and responds with a `500 Internal Server
1933
- Error`.
1934
-
1935
-
1936
- Version 1.0.8
1937
- -------------
1938
-
1939
- Released on November 12, 2024.
1940
-
1941
- - Fixed a bug where default document loaders had thrown a `TypeError`
1942
- with a message <q>Body is unusable: Body has already been read</q> or
1943
- <q>Body already consumed</q> when the content type of the response was
1944
- an HTML document and there's no link to a JSON-LD document.
1945
-
1946
- - Fixed a bug where `verifySignature()` and `verifyJsonLd()` functions
1947
- sometimes had thrown a `jsonld.ValidationError` error. Now such errors
1948
- are caught and logged as warnings, and the signature to verify is considered
1949
- as invalid.
1950
-
1951
-
1952
- Version 1.0.7
1953
- -------------
1954
-
1955
- Released on October 31, 2024.
1956
-
1957
- - Fixed a bug where `fetchDocumentLoader()` function had disallowed
1958
- redirecting to a private network address when the second parameter,
1959
- a `boolean` value to allow private network addresses, was `true`.
1960
-
1961
-
1962
- Version 1.0.6
1963
- -------------
1964
-
1965
- Released on October 27, 2024.
1966
-
1967
- - Fixed default document loaders' incorrect handling of relative URIs in
1968
- `Link` headers with `rel=alternate`. [[#155] by Emelia Smith]
1969
- - The `fetchDocumentLoader()` function now preloads the following JSON-LD
1970
- context: <http://schema.org/>.
1971
-
1972
-
1973
- Version 1.0.5
1974
- -------------
1975
-
1976
- Released on October 23, 2024.
1977
-
1978
- - The `fetchDocumentLoader()` function now preloads the following JSON-LD
1979
- context: <https://purl.archive.org/socialweb/webfinger>.
1980
-
1981
-
1982
- Version 1.0.4
1983
- -------------
1984
-
1985
- Released on October 17, 2024.
1986
-
1987
- - Fixed a bug where `Actor.aliasId` and `Actor.aliasIds` properties had been
1988
- represented as `as:alsoKnownAs` property instead of `alsoKnownAs` property
1989
- in compacted JSON-LD objects.
1990
-
1991
- - Improved compatibility with Bridgy Fed for Bluesky where it puts
1992
- an invalid URI with the format `at://...` in the `alsoKnownAs` property.
1993
-
1994
-
1995
- Version 1.0.3
1996
- -------------
1997
-
1998
- Released on October 17, 2024.
1999
-
2000
- - Improved compatibility with some implementations (e.g., Nexkey) where
2001
- some `CryptographicKey` objects are incorrectly typed in JSON-LD objects.
2002
-
2003
-
2004
- Version 1.0.2
2005
- -------------
2006
-
2007
- Released on September 27, 2024.
2008
-
2009
- - Fixed a bug of `Object.toJsonLd()` method where it had incorrectly compacted
2010
- the `name` property when it was not a language map.
2011
-
2012
- - The `Delete(Application)` activities sent by the `fedify inbox` command now
2013
- embed the entire actor object instead of just the actor's URI so that
2014
- the peers can verify the actor's signature without fetching the actor
2015
- object.
2016
-
2017
-
2018
- Version 1.0.1
2019
- -------------
2020
-
2021
- Released on September 26, 2024.
2022
-
2023
- - Fixed deprecation messages related to the `{handle}` variable in URL
2024
- templates; they had had wrong placeholders in the message templates.
2025
-
2026
- - Fixed a bug of `Object.toJsonLd()` method where it had not fall back to
2027
- the proper compact form when the heuristic compact form was not available.
2028
-
2029
-
2030
- Version 1.0.0
2031
- --------------
2032
-
2033
- Released on September 26, 2024.
2034
-
2035
- - The term `handle` for dispatching actors is deprecated in favor of
2036
- `identifier`.
2037
-
2038
- - The URI template for the following methods now accepts variable
2039
- `{identifier}` instead of `{handle}`:
2040
-
2041
- - `Federation.setActorDispatcher()`
2042
- - `Federation.setInboxDispatcher()`
2043
- - `Federation.setOutboxDispatcher()`
2044
- - `Federation.setFollowingDispatcher()`
2045
- - `Federation.setFollowersDispatcher()`
2046
- - `Federation.setLikedDispatcher()`
2047
- - `Federation.setFeaturedDispatcher()`
2048
- - `Federation.setFeaturedTagsDispatcher()`
2049
- - `Federation.setInboxListeners()`
2050
-
2051
- The `{handle}` variable is deprecated, and it will be removed in
2052
- the future.
2053
- - The type of `Federation.setActorDispatcher()` method's first parameter
2054
- became ```${string}{identifier}${string}` |
2055
- `${string}{handle}${string}``` (was ```${string}{handle}${string}```).
2056
- - The type of `Federation.setInboxDispatcher()` method's first parameter
2057
- became ```${string}{identifier}${string}` |
2058
- `${string}{handle}${string}``` (was ```${string}{handle}${string}```).
2059
- - The type of `Federation.setOutboxDispatcher()` method's first parameter
2060
- became ```${string}{identifier}${string}` |
2061
- `${string}{handle}${string}``` (was ```${string}{handle}${string}```).
2062
- - The type of `Federation.setFollowingDispatcher()` method's first
2063
- parameter became ```${string}{identifier}${string}` |
2064
- `${string}{handle}${string}``` (was ```${string}{handle}${string}```).
2065
- - The type of `Federation.setFollowersDispatcher()` method's first
2066
- parameter became ```${string}{identifier}${string}` |
2067
- `${string}{handle}${string}``` (was ```${string}{handle}${string}```).
2068
- - The type of `Federation.setLikedDispatcher()` method's first parameter
2069
- became ```${string}{identifier}${string}` |
2070
- `${string}{handle}${string}``` (was ```${string}{handle}${string}```).
2071
- - The type of `Federation.setFeaturedDispatcher()` method's first
2072
- parameter became ```${string}{identifier}${string}` |
2073
- `${string}{handle}${string}``` (was ```${string}{handle}${string}```).
2074
- - The type of `Federation.setFeaturedTagsDispatcher()` method's first
2075
- parameter became ```${string}{identifier}${string}` |
2076
- `${string}{handle}${string}``` (was ```${string}{handle}${string}```).
2077
- - The type of `Federation.setInboxListeners()` method's first parameter
2078
- became ```${string}{identifier}${string}` |
2079
- `${string}{handle}${string}``` (was ```${string}{handle}${string}```).
2080
- - The type of `Context.getDocumentLoader()` method's first parameter
2081
- became `{ identifier: string } | { username: string } | { handle:
2082
- string } | { keyId: URL; privateKey: CryptoKey }` (was `{ handle:
2083
- string } | { keyId: URL; privateKey: CryptoKey }`).
2084
- - Passing `{ handle: string }` to `Context.getDocumentLoader()` method is
2085
- deprecated in favor of `{ username: string }`.
2086
- - The type of `Context.sendActivity()` method's first parameter became
2087
- `SenderKeyPair | SenderKeyPair[] | { identifier: string } | {
2088
- username: string } | { handle: string }` (was `SenderKeyPair | SenderKeyPair[] | { handle: string }`).
2089
- - All properties of `ParseUriResult` type became readonly.
2090
- - Added `identifier` properties next to `handle` properties in
2091
- `ParseUriResult` type.
2092
- - The `handle` properties of `ParseUriResult` type are deprecated in favor
2093
- of `identifier` properties.
2094
- - The return type of `SharedInboxKeyDispatcher` callback type became
2095
- `SenderKeyPair | { identifier: string } | { username: string } |
2096
- { handle: string } | null | Promise<SenderKeyPair | { identifier:
2097
- string } | { username: string } | { handle: string } | null>`
2098
- (was `SenderKeyPair | { handle: string } | null |
2099
- Promise<SenderKeyPair | { handle: string } | null>`).
2100
-
2101
- - Fedify now supports [Linked Data Signatures], which is outdated but still
2102
- widely used in the fediverse.
2103
-
2104
- - A `Federation` object became to verify an activity's Linked Data
2105
- Signatures if it has one. If Linked Data Signatures are verified,
2106
- Object Integrity Proofs and HTTP Signatures are not verified.
2107
- - `Context.sendActivity()` method became to sign an activity with Linked
2108
- Data Signatures if there is at least one RSA-PKCS#1-v1.5 key pair.
2109
- - Added `Signature` interface.
2110
- - Added `signJsonLd()` function.
2111
- - Added `SignJsonLdOptions` interface.
2112
- - Added `createSignature()` function.
2113
- - Added `CreateSignatureOptions` interface.
2114
- - Added `verifyJsonLd()` function.
2115
- - Added `VerifyJsonLdOptions` interface.
2116
- - Added `verifySignature()` function.
2117
- - Added `VerifySignatureOptions` interface.
2118
- - Added `attachSignature()` function.
2119
- - Added `detachSignature()` function.
2120
-
2121
- - In inbox listeners, a received activity now can be forwarded to another
2122
- server. [[#137]]
2123
-
2124
- - Added `InboxContext` interface.
2125
- - Added `ForwardActivityOptions` interface.
2126
- - The first parameter of the `InboxListener` callback type became
2127
- `InboxContext` (was `Context`).
2128
-
2129
- - Added `cat` property to `Actor` type in Activity Vocabulary API.
2130
-
2131
- - Added `Application.cat` property.
2132
- - `new Application()` constructor now accepts `cat` option.
2133
- - `Application.clone()` method now accepts `cat` option.
2134
- - Added `Group.cat` property.
2135
- - `new Group()` constructor now accepts `cat` option.
2136
- - `Group.clone()` method now accepts `cat` option.
2137
- - Added `Organization.cat` property.
2138
- - `new Organization()` constructor now accepts `cat` option.
2139
- - `Organization.clone()` method now accepts `cat` option.
2140
- - Added `Person.cat` property.
2141
- - `new Person()` constructor now accepts `cat` option.
2142
- - `Person.clone()` method now accepts `cat` option.
2143
- - Added `Service.cat` property.
2144
- - `new Service()` constructor now accepts `cat` option.
2145
- - `Service.clone()` method now accepts `cat` option.
2146
-
2147
- - The `Context.parseUri()` method's parameter type became `URL | null`
2148
- (was `URL`).
2149
-
2150
- - `Context.sendActivity()` method now adds Object Integrity Proofs to
2151
- the activity to be sent only once. It had added Object Integrity Proofs
2152
- to the activity for every recipient before.
2153
-
2154
- - The message queue is now able to be stopped manually by providing
2155
- an `AbortSignal` object to the `Federation.startQueue()` method.
2156
-
2157
- - Added the optional second parameter to `Federation.startQueue()` method,
2158
- which is a `FederationStartQueueOptions` object.
2159
- - Added `FederationStartQueueOptions` interface.
2160
- - Added the optional second parameter to `MessageQueue.listen()` method,
2161
- which is a `MessageQueueListenOptions` object.
2162
- - Added `MessageQueueListenOptions` interface.
2163
- - The return type of `MessageQueue.listen()` method became `Promise<void>`
2164
- (was `void`).
2165
-
2166
- - Added `ParallelMessageQueue` class. [[#106]]
2167
-
2168
- - WebFinger responses now include <http://webfinger.net/rel/avatar> links
2169
- if the `Actor` object returned by the actor dispatcher has `icon`/`icons`
2170
- property.
2171
-
2172
- - `DenoKvMessageQueue` now implements `Disposable` interface.
2173
-
2174
- - The `fedify inbox` command now sends `Delete(Application)` activities when
2175
- it's terminated so that the peers can clean up data related to the temporary
2176
- actor. [[#135]]
2177
-
2178
- - Added options for PostgreSQL drivers to `fedify init` command.
2179
-
2180
- - Added `postgres` value to the `-k`/`--kv-store` option of the `fedify
2181
- init` command.
2182
- - Added `postgres` value to the `-q`/`--message-queue` option of
2183
- the `fedify init` command.
2184
-
2185
- - The generated project by the `fedify init` command now enables dotenv
2186
- by default.
2187
-
2188
- - The `fedify init` command now generates *.env* file with default values.
2189
-
2190
- - Added more log messages using the [LogTape] library. Currently the below
2191
- logger categories are used:
2192
-
2193
- - `["fedify", "sig", "ld"]`
2194
-
2195
- [Linked Data Signatures]: https://web.archive.org/web/20170923124140/https://w3c-dvcg.github.io/ld-signatures/
2196
- [#106]: https://github.com/fedify-dev/fedify/issues/106
2197
- [#135]: https://github.com/fedify-dev/fedify/issues/135
2198
- [#137]: https://github.com/fedify-dev/fedify/issues/137
2199
-
2200
-
2201
- Version 0.15.9
2202
- --------------
2203
-
2204
- Released on November 22, 2024.
2205
-
2206
- - Fixed a bug where `lookupWebFinger()` function had thrown a `TypeError`
2207
- when the *.well-known/webfinger* redirects to a relative URI. [[#166]]
2208
-
2209
- [#166]: https://github.com/fedify-dev/fedify/issues/166
2210
-
2211
-
2212
- Version 0.15.8
2213
- --------------
2214
-
2215
- Released on November 19, 2024.
2216
-
2217
- - Fix a bug where `Actor`'s `inbox` and `outbox` properties had not been
2218
- able to be set to an `OrderedCollectionPage` object, even though it is
2219
- a subtype of `OrderedCollection` according to Activity Vocabulary
2220
- specification. [[#165]]
2221
-
2222
- - The type of `Application()` constructor's `inbox` and `outbox` options
2223
- is now `OrderedCollection | OrderedCollectionPage | null | undefined`
2224
- (was `OrderedCollection | null | undefined`).
2225
- - The type of `Application.clone()` method's `inbox` and `outbox` options
2226
- is now `OrderedCollection | OrderedCollectionPage | null | undefined`
2227
- (was `OrderedCollection | null | undefined`).
2228
- - The return type of `Application.getInbox()` and
2229
- `Application.getOutbox()` methods is now `OrderedCollection |
2230
- OrderedCollectionPage | null` (was `OrderedCollection | null`).
2231
- - The type of `Group()` constructor's `inbox` and `outbox` options is
2232
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
2233
- `OrderedCollection | null | undefined`).
2234
- - The type of `Group.clone()` method's `inbox` and `outbox` options is
2235
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
2236
- `OrderedCollection | null | undefined`).
2237
- - The return type of `Group.getInbox()` and `Group.getOutbox()` methods
2238
- is now `OrderedCollection | OrderedCollectionPage | null` (was
2239
- `OrderedCollection | null`).
2240
- - The type of `Organization()` constructor's `inbox` and `outbox` options
2241
- is now `OrderedCollection | OrderedCollectionPage | null | undefined`
2242
- (was `OrderedCollection | null | undefined`).
2243
- - The type of `Organization.clone()` method's `inbox` and `outbox` options
2244
- is now `OrderedCollection | OrderedCollectionPage | null | undefined`
2245
- (was `OrderedCollection | null | undefined`).
2246
- - The return type of `Organization.getInbox()` and
2247
- `Organization.getOutbox()` methods is now `OrderedCollection |
2248
- OrderedCollectionPage | null` (was `OrderedCollection | null`).
2249
- - The type of `Person()` constructor's `inbox` and `outbox` options is
2250
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
2251
- `OrderedCollection | null | undefined`).
2252
- - The type of `Person.clone()` method's `inbox` and `outbox` options is
2253
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
2254
- `OrderedCollection | null | undefined`).
2255
- - The return type of `Person.getInbox()` and `Person.getOutbox()` methods
2256
- is now `OrderedCollection | OrderedCollectionPage | null` (was
2257
- `OrderedCollection | null`).
2258
- - The type of `Service()` constructor's `inbox` and `outbox` options is
2259
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
2260
- `OrderedCollection | null | undefined`).
2261
- - The type of `Service.clone()` method's `inbox` and `outbox` options is
2262
- now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
2263
- `OrderedCollection | null | undefined`).
2264
- - The return type of `Service.getInbox()` and `Service.getOutbox()`
2265
- methods is now `OrderedCollection | OrderedCollectionPage | null` (was
2266
- `OrderedCollection | null`).
2267
-
2268
- [#165]: https://github.com/fedify-dev/fedify/issues/165
2269
-
2270
-
2271
- Version 0.15.7
2272
- --------------
2273
-
2274
- Released on November 14, 2024.
2275
-
2276
- - Suppressed a `TypeError` with a message <q>unusable</q> due to Node.js's
2277
- mysterious behavior. [[#159]]
2278
-
2279
- - The `verifyRequest()` function no longer throws a `TypeError`
2280
- when a given `Request` object's body is already consumed or locked.
2281
- Instead, it logs an error message to the `["fedify", "sig", "http"]`
2282
- logger category and returns `null`.
2283
- - The `Federation.fetch()` method no longer throws a `TypeError`
2284
- when a given `Request` object's body is already consumed or locked.
2285
- Instead, it logs an error message to the `["fedify", "federation",
2286
- "inbox"]` logger category and responds with a `500 Internal Server
2287
- Error`.
2288
-
2289
- [#159]: https://github.com/fedify-dev/fedify/issues/159
2290
-
2291
-
2292
- Version 0.15.6
2293
- --------------
2294
-
2295
- Released on November 12, 2024.
2296
-
2297
- - Fixed a bug where default document loaders had thrown a `TypeError`
2298
- with a message <q>Body is unusable: Body has already been read</q> or
2299
- <q>Body already consumed</q> when the content type of the response was
2300
- an HTML document and there's no link to a JSON-LD document.
2301
-
2302
-
2303
- Version 0.15.5
2304
- --------------
2305
-
2306
- Released on October 30, 2024.
2307
-
2308
- - Fixed a bug where `fetchDocumentLoader()` function had disallowed
2309
- redirecting to a private network address when the second parameter,
2310
- a `boolean` value to allow private network addresses, was `true`.
2311
-
2312
-
2313
- Version 0.15.4
2314
- --------------
2315
-
2316
- Released on October 27, 2024.
2317
-
2318
- - Fixed default document loaders' incorrect handling of relative URIs in
2319
- `Link` headers with `rel=alternate`. [[#155] by Emelia Smith]
2320
- - The `fetchDocumentLoader()` function now preloads the following JSON-LD
2321
- context: <http://schema.org/>.
2322
-
2323
- [#155]: https://github.com/fedify-dev/fedify/pull/155
2324
-
2325
-
2326
- Version 0.15.3
2327
- --------------
2328
-
2329
- Released on October 23, 2024.
2330
-
2331
- - The `fetchDocumentLoader()` function now preloads the following JSON-LD
2332
- context: <https://purl.archive.org/socialweb/webfinger>.
2333
-
2334
-
2335
- Version 0.15.2
2336
- --------------
2337
-
2338
- Released on September 26, 2024.
2339
-
2340
- - Fixed a bug of `Object.toJsonLd()` method where it had not fall back to
2341
- the proper compact form when the heuristic compact form was not available.
2342
-
2343
-
2344
- Version 0.15.1
2345
- --------------
2346
-
2347
- Released on September 15, 2024.
2348
-
2349
- - Fixed a bug where even if the `ActorCallbackSetters.mapHandle()` method was
2350
- called, a WebFinger username was used as an actor's handle. [[#136]]
2351
-
2352
- [#136]: https://github.com/fedify-dev/fedify/pull/136
2353
-
2354
-
2355
- Version 0.15.0
2356
- --------------
2357
-
2358
- Released on September 11, 2024.
2359
-
2360
- - Actors, collections, and objects now can have their URIs that do not consist
2361
- of a WebFinger username, which means actors can change their fediverse
2362
- handles.
2363
-
2364
- - Added `ActorCallbackSetters.mapHandle()` method.
2365
- - Added `ActorHandleMapper` type.
2366
-
2367
- - Added `quoteUrl` property to `Article`, `ChatMessage`, `Note`, and
2368
- `Question` classes in Activity Vocabulary API.
2369
-
2370
- - Added `Article.quoteUrl` property.
2371
- - `new Article()` constructor now accepts `quoteUrl` option.
2372
- - `Article.clone()` method now accepts `quoteUrl` option.
2373
- - Added `ChatMessage.quoteUrl` property.
2374
- - `new ChatMessage()` constructor now accepts `quoteUrl` option.
2375
- - `ChatMessage.clone()` method now accepts `quoteUrl` option.
2376
- - Added `Note.quoteUrl` property.
2377
- - `new Note()` constructor now accepts `quoteUrl` option.
2378
- - `Note.clone()` method now accepts `quoteUrl` option.
2379
- - Added `Question.quoteUrl` property.
2380
- - `new Question()` constructor now accepts `quoteUrl` option.
2381
- - `Question.clone()` method now accepts `quoteUrl` option.
2382
-
2383
- - The element type of the liked collection is now `Object` or `URL` instead of
2384
- `Like`.
2385
-
2386
- - Changed the type of `Federation.setLikedDispatcher()` method's second
2387
- parameter to `CollectionDispatcher<Object | URL,
2388
- RequestContext<TContextData>, TContextData, void>` (was
2389
- `CollectionDispatcher<Like, RequestContext<TContextData>, TContextData,
2390
- void>`).
2391
-
2392
- - Removed `expand` option of `Object.toJsonLd()` method, which was deprecated
2393
- in version 0.14.0. Use `format: "expand"` option instead.
2394
-
2395
- - Added `Context.lookupObject()` method.
2396
-
2397
- - Default document loaders now recognize ActivityStream objects in more ways:
2398
-
2399
- - Loaders now recognize `alternate` ActivityStreams objects in the `Link`
2400
- header.
2401
- - Loaders now recognize `alternate` ActivityStreams objects in
2402
- the `<link>`/`<a>` HTML elements.
2403
-
2404
- - Added `allowPrivateAddress` option to `CreateFederationOptions` interface.
2405
-
2406
- - Fixed a bug where the WebFinger response had had a `subject` property
2407
- with an unmatched URI to the requested resource when a non-`acct:` URI
2408
- was given.
2409
-
2410
- - Renamed the short option `-c` for `--compact` of `fedify lookup` command to
2411
- `-C` to avoid conflict with the short option `-c` for `--cache-dir`.
2412
-
2413
- - Added `-r`/`--raw` option to `fedify lookup` command to output the raw JSON
2414
- object.
2415
-
2416
-
2417
- Version 0.14.5
2418
- --------------
2419
-
2420
- Released on September 26, 2024.
2421
-
2422
- - Fixed a bug of `Object.toJsonLd()` method where it had not fall back to
2423
- the proper compact form when the heuristic compact form was not available.
2424
-
2425
-
2426
- Version 0.14.4
2427
- --------------
2428
-
2429
- Released on September 6, 2024.
2430
-
2431
- - Fixed a bug of `Object.fromJsonLd()` method where it had thrown
2432
- a `TypeError` when the given JSON-LD object had an `@id` property
2433
- with an empty string.
2434
-
2435
-
2436
- Version 0.14.3
2437
- --------------
2438
-
2439
- Released on September 1, 2024.
2440
-
2441
- - Fixed `fedify inbox` command where it had ignored `-a`/`--accept-follow`
2442
- options when no `-f`/`--follow` option was provided. [[#132]]
2443
-
2444
-
2445
- Version 0.14.2
2446
- --------------
2447
-
2448
- Released on August 30, 2024.
2449
-
2450
- - Fixed an incompatibility with Meta's [Threads] where sent activities had not
2451
- been verified by their inbox. [[#125]]
2452
-
2453
-
2454
- Version 0.14.1
2455
- --------------
2456
-
2457
- Released on August 29, 2024.
2458
-
2459
- - Fixed `fedify inbox` command that had not been able to parse activities
2460
- even if they are valid JSON-LD. [[#126]]
2461
-
2462
- - Fixed a bug where the *Compact Activity* tab of `fedify inbox` command's
2463
- web interface had shown an expanded JSON-LD object instead of a compacted
2464
- one.
2465
-
2466
-
2467
- Version 0.14.0
2468
- --------------
2469
-
2470
- Released on August 27, 2024.
2471
-
2472
- - Removed the limitation that the `sendActivity({ handle: string },
2473
- "followers", Activity)` overload is only available for `RequestContext`
2474
- but not for `Context`. Now it is available for both. [[#115]]
2475
-
2476
- - Added `Context.sendActivity({ handle: string }, "followers", Activity)`
2477
- overload.
2478
- - Added type parameter `TContext` to `CollectionsDispatcher` type's first
2479
- parameter to distinguish between `RequestContext` and `Context`.
2480
- - The first parameter of `CollectionDispatcher` type became `TContext`
2481
- (was `RequestContext`).
2482
- - Added type parameter `TContext` to `CollectionsCursor` type's first
2483
- parameter to distinguish between `RequestContext` and `Context`.
2484
- - The first parameter of `CollectionCursor` type became `TContext`
2485
- (was `RequestContext`).
2486
- - Added type parameter `TContext` to `CollectionsCallbackSetters` type's
2487
- first parameter to distinguish between `RequestContext` and `Context`.
2488
-
2489
- - Added `source` property to `Object` class in Activity Vocabulary API.
2490
- [[#114]]
2491
-
2492
- - Added `Object.source` property.
2493
- - `new Object()` constructor now accepts `source` option.
2494
- - `Object.clone()` method now accepts `source` option.
2495
-
2496
- - Added `Source` class to Activity Vocabulary API. [[#114]]
2497
-
2498
- - Added `aliases` property to `Actor` type in Activity Vocabulary API.
2499
-
2500
- - Added `Application.getAliases()` method.
2501
- - Added `Application.getAlias()` method.
2502
- - `new Application()` constructor now accepts `alias` option.
2503
- - `new Application()` constructor now accepts `aliases` option.
2504
- - `Application.clone()` method now accepts `alias` option.
2505
- - `Application.clone()` method now accepts `aliases` option.
2506
- - Added `Group.getAliases()` method.
2507
- - Added `Group.getAlias()` method.
2508
- - `new Group()` constructor now accepts `alias` option.
2509
- - `new Group()` constructor now accepts `aliases` option.
2510
- - `Group.clone()` method now accepts `alias` option.
2511
- - `Group.clone()` method now accepts `aliases` option.
2512
- - Added `Organization.getAliases()` method.
2513
- - Added `Organization.getAlias()` method.
2514
- - `new Organization()` constructor now accepts `alias` option.
2515
- - `new Organization()` constructor now accepts `aliases` option.
2516
- - `Organization.clone()` method now accepts `alias` option.
2517
- - `Organization.clone()` method now accepts `aliases` option.
2518
- - Added `Person.getAliases()` method.
2519
- - Added `Person.getAlias()` method.
2520
- - `new Person()` constructor now accepts `alias` option.
2521
- - `new Person()` constructor now accepts `aliases` option.
2522
- - `Person.clone()` method now accepts `alias` option.
2523
- - `Person.clone()` method now accepts `aliases` option.
2524
- - Added `Service.getAliases()` method.
2525
- - Added `Service.getAlias()` method.
2526
- - `new Service()` constructor now accepts `alias` option.
2527
- - `new Service()` constructor now accepts `aliases` option.
2528
- - `Service.clone()` method now accepts `alias` option.
2529
- - `Service.clone()` method now accepts `aliases` option.
2530
-
2531
- - Improved the performance of `Object.toJsonLd()` method.
2532
-
2533
- - `Object.toJsonLd()` method no longer guarantees that the returned
2534
- JSON-LD object is compacted unless the `format: "compact"` option is
2535
- provided.
2536
- - Added `format` option to `Object.toJsonLd()` method.
2537
- - Deprecated `expand` option of `Object.toJsonLd()` method.
2538
- Use `format: "expand"` option instead.
2539
- - The `context` option of `Object.toJsonLd()` method is now only
2540
- applicable to `format: "compact"`. Otherwise, it throws
2541
- a `TypeError`.
2542
-
2543
- - The `getActorHandle()` function now supports cross-origin WebFinger
2544
- resources.
2545
-
2546
- - The `lookupWebFinger()` and `getActorHandle()` functions no more throw
2547
- an error when they fail to reach the WebFinger resource.
2548
-
2549
- - Collection dispatchers now set the `id` property of
2550
- the `OrderedCollection`/`OrderedCollectionPage` objects that they return
2551
- to the their canonical URI.
2552
-
2553
- - Now `fedify init` generates a default *tsconfig.json* file on Node.js and
2554
- Bun, and fills the *deno.json* file with the default `compilerOptions` on
2555
- Deno.
2556
-
2557
- [#114]: https://github.com/fedify-dev/fedify/issues/114
2558
- [#115]: https://github.com/fedify-dev/fedify/issues/115
2559
-
2560
-
2561
- Version 0.13.5
2562
- --------------
2563
-
2564
- Released on September 6, 2024.
2565
-
2566
- - Fixed a bug of `Object.fromJsonLd()` method where it had thrown
2567
- a `TypeError` when the given JSON-LD object had an `@id` property
2568
- with an empty string.
2569
-
2570
-
2571
- Version 0.13.4
2572
- --------------
2573
-
2574
- Released on September 1, 2024.
2575
-
2576
- - Fixed `fedify inbox` command where it had ignored `-a`/`--accept-follow`
2577
- options when no `-f`/`--follow` option was provided. [[#132]]
2578
-
2579
- [#132]: https://github.com/fedify-dev/fedify/issues/132
2580
-
2581
-
2582
- Version 0.13.3
2583
- --------------
2584
-
2585
- Released on August 30, 2024.
2586
-
2587
- - Fixed an incompatibility with Meta's [Threads] where sent activities had not
2588
- been verified by their inbox. [[#125]]
2589
-
2590
- [Threads]: https://www.threads.net/
2591
- [#125]: https://github.com/fedify-dev/fedify/issues/125
2592
-
2593
-
2594
- Version 0.13.2
2595
- --------------
2596
-
2597
- Released on August 29, 2024.
2598
-
2599
- - Fixed `fedify inbox` command that had not been able to parse activities
2600
- even if they are valid JSON-LD. [[#126]]
2601
-
2602
- [#126]: https://github.com/fedify-dev/fedify/issues/126
2603
-
2604
-
2605
- Version 0.13.1
2606
- --------------
2607
-
2608
- Released on August 18, 2024.
2609
-
2610
- - Fixed a vulnerability where the `getActorHandle()` function had trusted
2611
- the hostname of WebFinger aliases that had not matched the hostname of the
2612
- actor ID (URI).
2613
-
2614
-
2615
- Version 0.13.0
2616
- --------------
2617
-
2618
- Released on August 7, 2024.
2619
-
2620
- - Added `closed` property to `Question` class in Activity Vocabulary API.
2621
-
2622
- - Added `Question.closed` property.
2623
- - `new Question()` constructor now accepts `closed` option.
2624
- - `Question.clone()` method now accepts `closed` option.
2625
-
2626
- - Added `voters` property to `Question` class in Activity Vocabulary API.
2627
-
2628
- - Added `Question.voters` property.
2629
- - `new Question()` constructor now accepts `voters` option.
2630
- - `Question.clone()` method now accepts `voters` option.
2631
-
2632
- - HTTP Signatures verification now can be optionally skipped for the sake of
2633
- testing. [[#110]]
2634
-
2635
- - The type of `CreateFederationOptions.signatureTimeWindow` property
2636
- became `Temporal.DurationLike | false` (was `Temporal.DurationLike`).
2637
- - The type of `VerifyRequestOptions.timeWindow` property became
2638
- `Temporal.DurationLike | false` (was `Temporal.DurationLike`).
2639
- - Added `CreateFederationOptions.skipSignatureVerification` property.
2640
-
2641
- - Removed the singular actor key pair dispatcher APIs which were deprecated
2642
- in version 0.10.0.
2643
-
2644
- - Removed the last parameter of the `ActorDispatcher` callback type.
2645
- Use `Context.getActorKeyPairs()` method instead.
2646
- - Removed `ActorKeyPairDispatcher` type. Use `ActorKeyPairsDispatcher`
2647
- type instead.
2648
- - Removed `ActorCallbackSetters.setKeyPairDispatcher()` method.
2649
- Use `ActorCallbackSetters.setKeyPairsDispatcher()` method instead.
2650
- - Removed `Context.getActorKey()` method.
2651
- Use `Context.getActorKeyPairs()` method instead.
2652
-
2653
- - The `Federation` is no more a class, but an interface, which has been
2654
- planned since version 0.10.0. [[#69]]
2655
-
2656
- - `new Federation()` constructor is removed. Use `createFederation()`
2657
- function instead.
2658
- - Removed `Federation.sendActivity()` method.
2659
- Use `Context.sendActivity()` method instead.
2660
- - Removed `Federation` class.
2661
- - Added `Federation` interface.
2662
- - Removed `FederationParameters` interface.
2663
-
2664
- - Added `fedify tunnel` command to expose a local HTTP server to the public
2665
- internet.
2666
-
2667
- - A scaffold project generated by the `fedify init` command has several
2668
- changes:
2669
-
2670
- - Added support for [Express] framework.
2671
- - Added support for [Nitro] framework.
2672
- - Now a scaffold project uses a [x-forwarded-fetch] middleware to
2673
- support `X-Forwarded-Proto` and `X-Forwarded-Host` headers.
2674
- - Now a scaffold project has hot reloading by default.
2675
- - Now a scaffold project has logging configuration using the [LogTape]
2676
- library.
2677
-
2678
- - Added more log messages using the [LogTape] library. Currently the below
2679
- logger categories are used:
2680
-
2681
- - `["fedify", "webfinger", "server"]`
2682
-
2683
- [#69]: https://github.com/fedify-dev/fedify/issues/69
2684
- [#110]: https://github.com/fedify-dev/fedify/issues/110
2685
- [Express]: https://expressjs.com/
2686
- [Nitro]: https://nitro.unjs.io/
2687
-
2688
-
2689
- Version 0.12.3
2690
- --------------
2691
-
2692
- Released on August 18, 2024.
2693
-
2694
- - Fixed a vulnerability where the `getActorHandle()` function had trusted
2695
- the hostname of WebFinger aliases that had not matched the hostname of the
2696
- actor ID (URI).
2697
-
2698
-
2699
- Version 0.12.2
2700
- --------------
2701
-
2702
- Released on July 31, 2024.
2703
-
2704
- - Fixed a bug where incoming activities had not been enqueued even
2705
- if the `queue` option was provided to the `createFederation()` function.
2706
-
2707
-
2708
- Version 0.12.1
2709
- --------------
2710
-
2711
- Released on July 27, 2024.
2712
-
2713
- - Fixed a bug where `fedify init -w hono` had generated scaffold files without
2714
- Fedify integration.
2715
- - Fixed a bug where `fedify init -r bun -w hono` had generated scaffold files
2716
- with a wrong port number (was 3000).
2717
-
2718
-
2719
- Version 0.12.0
2720
- --------------
2721
-
2722
- Released on July 24, 2024.
2723
-
2724
- - The `fedify` command is now [available on npm][@fedify/cli]. [[#104]]
2725
-
2726
- - Incoming activities are now queued before being dispatched to the inbox
2727
- listener if the `queue` option is provided to the `createFederation()`
2728
- function. [[#70]]
2729
-
2730
- - The type of `InboxListener` callback type's first parameter became
2731
- `Context` (was `RequestContext`).
2732
- - The type of `InboxErrorHandler` callback type's first parameter became
2733
- `Context` (was `RequestContext`).
2734
- - The type of `SharedInboxKeyDispatcher` callback type's first parameter
2735
- became `Context` (was `RequestContext`).
2736
-
2737
- - Implemented fully customizable retry policy for failed tasks in the task
2738
- queue. By default, the task queue retries the failed tasks with
2739
- an exponential backoff policy with decorrelated jitter.
2740
-
2741
- - Added `outboxRetryPolicy` option to `CreateFederationOptions` interface.
2742
- - Added `inboxRetryPolicy` option to `CreateFederationOptions` interface.
2743
- [[#70]]
2744
- - Added `RetryPolicy` callback type.
2745
- - Added `RetryContext` interface.
2746
- - Added `createExponentialBackoffPolicy()` function.
2747
- - Added `CreateExponentialBackoffPolicyOptions` interface.
2748
-
2749
- - `Federation` object now allows its task queue to be started manually.
2750
- [[#53]]
2751
-
2752
- - Added `manuallyStartQueue` option to `CreateFederationOptions`
2753
- interface.
2754
- - Added `Federation.startQueue()` method.
2755
-
2756
- - Made the router able to be insensitive to trailing slashes in the URL paths.
2757
- [[#81]]
2758
-
2759
- - Added `trailingSlashInsensitive` option to `CreateFederationOptions`
2760
- interface.
2761
- - Added `RouterOptions` interface.
2762
- - Added an optional parameter to `new Router()` constructor.
2763
-
2764
- - Added `ChatMessage` class to Activity Vocabulary API. [[#85]]
2765
-
2766
- - Added `Move` class to Activity Vocabulary API. [[#65], [#92] by Lee Dogeon]
2767
-
2768
- - Added `Read` class to Activity Vocabulary API. [[#65], [#92] by Lee Dogeon]
2769
-
2770
- - Added `Travel` class to Activity Vocabulary API.
2771
- [[#65], [#92] by Lee Dogeon]
2772
-
2773
- - Added `View` class to Activity Vocabulary API. [[#65], [#92] by Lee Dogeon]
2774
-
2775
- - Added `TentativeAccept` class to Activity Vocabulary API.
2776
- [[#65], [#92] by Lee Dogeon]
2777
-
2778
- - Added `TentativeReject` class to Activity Vocabulary API.
2779
- [[#65], [#92] by Lee Dogeon]
2780
-
2781
- - Improved multitenancy (virtual hosting) support. [[#66]]
2782
-
2783
- - Added `Context.hostname` property.
2784
- - Added `Context.host` property.
2785
- - Added `Context.origin` property.
2786
- - The type of `ActorKeyPairsDispatcher<TContextData>`'s first parameter
2787
- became `Context` (was `TContextData`).
2788
-
2789
- - During verifying HTTP Signatures and Object Integrity Proofs, once fetched
2790
- public keys are now cached. [[#107]]
2791
-
2792
- - The `verifyRequest()` function now caches the fetched public keys
2793
- when the `keyCache` option is provided.
2794
- - The `verifyProof()` function now caches the fetched public keys
2795
- when the `keyCache` option is provided.
2796
- - The `verifyObject()` function now caches the fetched public keys
2797
- when the `keyCache` option is provided.
2798
- - Added `KeyCache` interface.
2799
- - Added `VerifyRequestOptions.keyCache` property.
2800
- - Added `VerifyProofOptions.keyCache` property.
2801
- - Added `VerifyObjectOptions.keyCache` property.
2802
- - Added `FederationKvPrefixes.publicKey` property.
2803
-
2804
- - The built-in document loaders now recognize JSON-LD context provided in
2805
- an HTTP `Link` header. [[#6]]
2806
-
2807
- - The `fetchDocumentLoader()` function now recognizes the `Link` header
2808
- with the `http://www.w3.org/ns/json-ld#context` link relation.
2809
- - The `getAuthenticatedDocumentLoader()` function now returns a document
2810
- loader that recognizes the `Link` header with
2811
- the `http://www.w3.org/ns/json-ld#context` link relation.
2812
-
2813
- - Deprecated `Federation.sendActivity()` method. Use `Context.sendActivity()`
2814
- method instead.
2815
-
2816
- - The last parameter of `Federation.sendActivity()` method is no longer
2817
- optional. Also, it now takes the required `contextData` option.
2818
-
2819
- - Removed `Context.getHandleFromActorUri()` method which was deprecated in
2820
- version 0.9.0. Use `Context.parseUri()` method instead.
2821
-
2822
- - Removed `@fedify/fedify/httpsig` module which was deprecated in version
2823
- 0.9.0. Use `@fedify/fedify/sig` module instead.
2824
-
2825
- - Removed `sign()` function.
2826
- - Removed `verify()` function.
2827
- - Removed `VerifyOptions` interface.
2828
-
2829
- - Fixed a bug where the `lookupWebFinger()` function had incorrectly queried
2830
- if the given `resource` was a URL starts with `http:` or had a non-default
2831
- port number.
2832
-
2833
- - Fixed a SSRF vulnerability in the built-in document loader.
2834
- [[CVE-2024-39687]]
2835
-
2836
- - The `fetchDocumentLoader()` function now throws an error when the given
2837
- URL is not an HTTP or HTTPS URL or refers to a private network address.
2838
- - Added an optional second parameter to the `fetchDocumentLoader()`
2839
- function, which can be used to allow fetching private network addresses.
2840
- - The `getAuthenticatedDocumentLoader()` function now returns a document
2841
- loader that throws an error when the given URL is not an HTTP or HTTPS
2842
- URL or refers to a private network address.
2843
- - Added an optional second parameter to
2844
- the `getAuthenticatedDocumentLoader()` function, which can be used to
2845
- allow fetching private network addresses.
2846
-
2847
- - Added `fedify init` subcommand. [[#105]]
2848
-
2849
- - Added more log messages using the [LogTape] library. Currently the below
2850
- logger categories are used:
2851
-
2852
- - `["fedify", "federation", "queue"]`
2853
-
2854
- [@fedify/cli]: https://www.npmjs.com/package/@fedify/cli
2855
- [#6]: https://github.com/fedify-dev/fedify/issues/6
2856
- [#53]: https://github.com/fedify-dev/fedify/issues/53
2857
- [#66]: https://github.com/fedify-dev/fedify/issues/66
2858
- [#70]: https://github.com/fedify-dev/fedify/issues/70
2859
- [#81]: https://github.com/fedify-dev/fedify/issues/81
2860
- [#85]: https://github.com/fedify-dev/fedify/issues/85
2861
- [#92]: https://github.com/fedify-dev/fedify/pull/92
2862
- [#104]: https://github.com/fedify-dev/fedify/issues/104
2863
- [#105]: https://github.com/fedify-dev/fedify/issues/105
2864
- [#107]: https://github.com/fedify-dev/fedify/issues/107
2865
-
2866
-
2867
- Version 0.11.3
2868
- --------------
2869
-
2870
- Released on July 15, 2024.
2871
-
2872
- - Fixed a bug where use of `Federation.setInboxDispatcher()` after
2873
- `Federation.setInboxListeners()` had caused a `RouterError` to be
2874
- thrown even if the paths match. [[#101] by Fabien O'Carroll]
2875
-
2876
- [#101]: https://github.com/fedify-dev/fedify/pull/101
2877
-
2878
-
2879
- Version 0.11.2
2880
- --------------
2881
-
2882
- Released on July 9, 2024.
2883
-
2884
- - Fixed a vulnerability of SSRF via DNS rebinding in the built-in document
2885
- loader. [[CVE-2024-39687]]
2886
-
2887
- - The `fetchDocumentLoader()` function now throws an error when the given
2888
- domain name has any records referring to a private network address.
2889
- - The `getAuthenticatedDocumentLoader()` function now returns a document
2890
- loader that throws an error when the given domain name has any records
2891
- referring to a private network address.
2892
-
2893
-
2894
- Version 0.11.1
2895
- --------------
2896
-
2897
- Released on July 5, 2024.
2898
-
2899
- - Fixed a SSRF vulnerability in the built-in document loader.
2900
- [[CVE-2024-39687]]
2901
-
2902
- - The `fetchDocumentLoader()` function now throws an error when the given
2903
- URL is not an HTTP or HTTPS URL or refers to a private network address.
2904
- - The `getAuthenticatedDocumentLoader()` function now returns a document
2905
- loader that throws an error when the given URL is not an HTTP or HTTPS
2906
- URL or refers to a private network address.
2907
-
2908
-
2909
- Version 0.11.0
2910
- --------------
2911
-
2912
- Released on June 29, 2024.
2913
-
2914
- - Improved runtime type error messages for Activity Vocabulary API. [[#79]]
2915
-
2916
- - Added `suppressError` option to dereferencing accessors of Activity
2917
- Vocabulary classes.
2918
-
2919
- - Added more collection dispatchers. [[#78]]
2920
-
2921
- - Added `Federation.setInboxDispatcher()` method. [[#71]]
2922
- - Added `Federation.setLikedDispatcher()` method.
2923
- - Added `Context.getLikedUri()` method.
2924
- - Added `{ type: "liked"; handle: string }` case to `ParseUriResult` type.
2925
- - Renamed `linked` property (which was a typo) to `liked` in
2926
- `Application`, `Group`, `Organization`, `Person`, and `Service` classes.
2927
- - Added `Federation.setFeaturedDispatcher()` method.
2928
- - Added `Context.getFeaturedUri()` method.
2929
- - Added `{ type: "featured"; handle: string }` case to `ParseUriResult`
2930
- type.
2931
- - Added `Federation.setFeaturedTagsDispatcher()` method.
2932
- - Added `Context.getFeaturedTagsUri()` method.
2933
- - Added `{ type: "featuredTags"; handle: string }` case to
2934
- `ParseUriResult` type.
2935
-
2936
- - Frequently used JSON-LD contexts are now preloaded. [[#74]]
2937
-
2938
- - The `fetchDocumentLoader()` function now preloads the following JSON-LD
2939
- contexts:
2940
-
2941
- - <https://www.w3.org/ns/activitystreams>
2942
- - <https://w3id.org/security/v1>
2943
- - <https://w3id.org/security/data-integrity/v1>
2944
- - <https://www.w3.org/ns/did/v1>
2945
- - <https://w3id.org/security/multikey/v1>
2946
-
2947
- - The default `rules` for `kvCache()` function are now 5 minutes for all
2948
- URLs.
2949
-
2950
- - Added `Invite` class to Activity Vocabulary API.
2951
- [[#65], [#80] by Randy Wressell]
2952
-
2953
- - Added `Join` class to Activity Vocabulary API.
2954
- [[#65], [#80] by Randy Wressell]
2955
-
2956
- - Added `Leave` class to Activity Vocabulary API.
2957
- [[#65], [#80] by Randy Wressell]
2958
-
2959
- - Added `Listen` class to Activity Vocabulary API.
2960
- [[#65], [#80] by Randy Wressell]
2961
-
2962
- - Added `Offer` class to Activity Vocabulary API.
2963
- [[#65], [#76] by Lee Dogeon]
2964
-
2965
- - The below properties of `Collection` and `CollectionPage` in Activity
2966
- Vocabulary API now do not accept `Link` objects:
2967
-
2968
- - `Collection.current`
2969
- - `Collection.first`
2970
- - `Collection.last`
2971
- - `CollectionPage.partOf`
2972
- - `CollectionPage.next`
2973
- - `CollectionPage.prev`
2974
-
2975
- - Added `featured` property to `Actor` types in Activity Vocabulary API.
2976
- [[#78]]
2977
-
2978
- - Added `Application.getFeatured()` method.
2979
- - Added `Application.featuredId` property.
2980
- - `new Application()` constructor now accepts `featured` option.
2981
- - `Application.clone()` method now accepts `featured` option.
2982
- - Added `Group.getFeatured()` method.
2983
- - Added `Group.featuredId` property.
2984
- - `new Group()` constructor now accepts `featured` option.
2985
- - `Group.clone()` method now accepts `featured` option.
2986
- - Added `Organization.getFeatured()` method.
2987
- - Added `Organization.featuredId` property.
2988
- - `new Organization()` constructor now accepts `featured` option.
2989
- - `Organization.clone()` method now accepts `featured` option.
2990
- - Added `Person.getFeatured()` method.
2991
- - Added `Person.featuredId` property.
2992
- - `new Person()` constructor now accepts `featured` option.
2993
- - `Person.clone()` method now accepts `featured` option.
2994
- - Added `Service.getFeatured()` method.
2995
- - Added `Service.featuredId` property.
2996
- - `new Service()` constructor now accepts `featured` option.
2997
- - `Service.clone()` method now accepts `featured` option.
2998
-
2999
- - Added `featuredTags` property to `Actor` types in Activity Vocabulary API.
3000
- [[#78]]
3001
-
3002
- - Added `Application.getFeaturedTags()` method.
3003
- - Added `Application.featuredTagsId` property.
3004
- - `new Application()` constructor now accepts `featuredTags` option.
3005
- - `Application.clone()` method now accepts `featuredTags` option.
3006
- - Added `Group.getFeaturedTags()` method.
3007
- - Added `Group.featuredTagsId` property.
3008
- - `new Group()` constructor now accepts `featuredTags` option.
3009
- - `Group.clone()` method now accepts `featuredTags` option.
3010
- - Added `Organization.getFeaturedTags()` method.
3011
- - Added `Organization.featuredTagsId` property.
3012
- - `new Organization()` constructor now accepts `featuredTags` option.
3013
- - `Organization.clone()` method now accepts `featuredTags` option.
3014
- - Added `Person.getFeaturedTags()` method.
3015
- - Added `Person.featuredTagsId` property.
3016
- - `new Person()` constructor now accepts `featuredTags` option.
3017
- - `Person.clone()` method now accepts `featuredTags` option.
3018
- - Added `Service.getFeaturedTags()` method.
3019
- - Added `Service.featuredTagsId` property.
3020
- - `new Service()` constructor now accepts `featuredTags` option.
3021
- - `Service.clone()` method now accepts `featuredTags` option.
3022
-
3023
- - Added `target` property to `Activity` class in Activity Vocabulary API.
3024
-
3025
- - Added `Activity.getTarget()` method.
3026
- - Added `Activity.getTargets()` method.
3027
- - Added `Activity.targetId` property.
3028
- - Added `Activity.targetIds` property.
3029
- - `new Activity()` constructor now accepts `target` option.
3030
- - `new Activity()` constructor now accepts `targets` option.
3031
- - `Activity.clone()` method now accepts `target` option.
3032
- - `Activity.clone()` method now accepts `targets` option.
3033
-
3034
- - Added `result` property to `Activity` class in Activity Vocabulary API.
3035
-
3036
- - Added `Activity.getResult()` method.
3037
- - Added `Activity.getResults()` method.
3038
- - Added `Activity.resultId` property.
3039
- - Added `Activity.resultIds` property.
3040
- - `new Activity()` constructor now accepts `result` option.
3041
- - `new Activity()` constructor now accepts `results` option.
3042
- - `Activity.clone()` method now accepts `result` option.
3043
- - `Activity.clone()` method now accepts `results` option.
3044
-
3045
- - Added `origin` property to `Activity` class in Activity Vocabulary API.
3046
-
3047
- - Added `Activity.getOrigin()` method.
3048
- - Added `Activity.getOrigins()` method.
3049
- - Added `Activity.originId` property.
3050
- - Added `Activity.originIds` property.
3051
- - `new Activity()` constructor now accepts `origin` option.
3052
- - `new Activity()` constructor now accepts `origins` option.
3053
- - `Activity.clone()` method now accepts `origin` option.
3054
- - `Activity.clone()` method now accepts `origins` option.
3055
-
3056
- - Added `instrument` property to `Activity` class in Activity Vocabulary API.
3057
-
3058
- - Added `Activity.getInstrument()` method.
3059
- - Added `Activity.getInstruments()` method.
3060
- - Added `Activity.instrumentId` property.
3061
- - Added `Activity.instrumentIds` property.
3062
- - `new Activity()` constructor now accepts `instrument` option.
3063
- - `new Activity()` constructor now accepts `instruments` option.
3064
- - `Activity.clone()` method now accepts `instrument` option.
3065
- - `Activity.clone()` method now accepts `instruments` option.
3066
-
3067
- - The `items` property of `OrderedCollection` and `OrderedCollectionPage`
3068
- in Activity Vocabulary API is now represented as `orderedItems`
3069
- (was `items`) in JSON-LD.
3070
-
3071
- - The key pair or the key pair for signing outgoing HTTP requests made from
3072
- the shared inbox now can be configured. This improves the compatibility
3073
- with other ActivityPub implementations that require authorized fetches
3074
- (i.e., secure mode).
3075
-
3076
- - Added `SharedInboxKeyDispatcher` type.
3077
- - Renamed `InboxListenerSetter` interface to `InboxListenerSetters`.
3078
- - Added `InboxListenerSetters.setSharedKeyDispatcher()` method.
3079
-
3080
- - Followed up the [change in `eddsa-jcs-2022` specification][eddsa-jcs-2022]
3081
- for Object Integrity Proofs. [[FEP-8b32], [#54]]
3082
-
3083
- [eddsa-jcs-2022]: https://codeberg.org/fediverse/fep/pulls/338
3084
- [#71]: https://github.com/fedify-dev/fedify/issues/71
3085
- [#74]: https://github.com/fedify-dev/fedify/issues/74
3086
- [#76]: https://github.com/fedify-dev/fedify/pull/76
3087
- [#78]: https://github.com/fedify-dev/fedify/issues/78
3088
- [#79]: https://github.com/fedify-dev/fedify/issues/79
3089
- [#80]: https://github.com/fedify-dev/fedify/pull/80
3090
-
3091
-
3092
- Version 0.10.2
3093
- --------------
3094
-
3095
- Released on July 9, 2024.
3096
-
3097
- - Fixed a vulnerability of SSRF via DNS rebinding in the built-in document
3098
- loader. [[CVE-2024-39687]]
3099
-
3100
- - The `fetchDocumentLoader()` function now throws an error when the given
3101
- domain name has any records referring to a private network address.
3102
- - The `getAuthenticatedDocumentLoader()` function now returns a document
3103
- loader that throws an error when the given domain name has any records
3104
- referring to a private network address.
3105
-
3106
-
3107
- Version 0.10.1
3108
- --------------
3109
-
3110
- Released on July 5, 2024.
3111
-
3112
- - Fixed a SSRF vulnerability in the built-in document loader.
3113
- [[CVE-2024-39687]]
3114
-
3115
- - The `fetchDocumentLoader()` function now throws an error when the given
3116
- URL is not an HTTP or HTTPS URL or refers to a private network address.
3117
- - The `getAuthenticatedDocumentLoader()` function now returns a document
3118
- loader that throws an error when the given URL is not an HTTP or HTTPS
3119
- URL or refers to a private network address.
3120
-
3121
-
3122
- Version 0.10.0
3123
- --------------
3124
-
3125
- Released on June 18, 2024.
3126
-
3127
- Starting with this release, Fedify, previously distributed under [AGPL 3.0],
3128
- is now distributed under the [MIT License] to encourage wider adoption.
3129
-
3130
- - Besides RSA-PKCS#1-v1.5, Fedify now supports Ed25519 for signing and
3131
- verifying the activities. [[#55]]
3132
-
3133
- - Added an optional parameter to `generateCryptoKeyPair()` function,
3134
- `algorithm`, which can be either `"RSASSA-PKCS1-v1_5"` or `"Ed25519"`.
3135
- - The `importJwk()` function now accepts Ed25519 keys.
3136
- - The `exportJwk()` function now exports Ed25519 keys.
3137
- - The `importSpki()` function now accepts Ed25519 keys.
3138
- - The `exportJwk()` function now exports Ed25519 keys.
3139
-
3140
- - Now multiple key pairs can be registered for an actor. [[FEP-521a], [#55]]
3141
-
3142
- - Added `Context.getActorKeyPairs()` method.
3143
- - Deprecated `Context.getActorKey()` method.
3144
- Use `Context.getActorKeyPairs()` method instead.
3145
- - Added `ActorKeyPair` interface.
3146
- - Added `ActorCallbackSetters.setKeyPairsDispatcher()` method.
3147
- - Added `ActorKeyPairsDispatcher` type.
3148
- - Deprecated `ActorCallbackSetters.setKeyPairDispatcher()` method.
3149
- - Deprecated `ActorKeyPairDispatcher` type.
3150
- - Deprecated the third parameter of the `ActorDispatcher` callback type.
3151
- Use `Context.getActorKeyPairs()` method instead.
3152
-
3153
- - Added `Multikey` class to Activity Vocabulary API. [[FEP-521a], [#55]]
3154
-
3155
- - Added `importMultibaseKey()` function.
3156
- - Added `exportMultibaseKey()` function.
3157
-
3158
- - Added `assertionMethod` property to the `Actor` types in the Activity
3159
- Vocabulary API. [[FEP-521a], [#55]]
3160
-
3161
- - Added `Application.getAssertionMethod()` method.
3162
- - Added `Application.getAssertionMethods()` method.
3163
- - `new Application()` constructor now accepts `assertionMethod` option.
3164
- - `new Application()` constructor now accepts `assertionMethods` option.
3165
- - `Application.clone()` method now accepts `assertionMethod` option.
3166
- - `Application.clone()` method now accepts `assertionMethods` option.
3167
- - Added `Group.getAssertionMethod()` method.
3168
- - Added `Group.getAssertionMethods()` method.
3169
- - `new Group()` constructor now accepts `assertionMethod` option.
3170
- - `new Group()` constructor now accepts `assertionMethods` option.
3171
- - `Group.clone()` method now accepts `assertionMethod` option.
3172
- - `Group.clone()` method now accepts `assertionMethods` option.
3173
- - Added `Organization.getAssertionMethod()` method.
3174
- - Added `Organization.getAssertionMethods()` method.
3175
- - `new Organization()` constructor now accepts `assertionMethod` option.
3176
- - `new Organization()` constructor now accepts `assertionMethods` option.
3177
- - `Organization.clone()` method now accepts `assertionMethod` option.
3178
- - `Organization.clone()` method now accepts `assertionMethods` option.
3179
- - Added `Person.getAssertionMethod()` method.
3180
- - Added `Person.getAssertionMethods()` method.
3181
- - `new Person()` constructor now accepts `assertionMethod` option.
3182
- - `new Person()` constructor now accepts `assertionMethods` option.
3183
- - `Person.clone()` method now accepts `assertionMethod` option.
3184
- - `Person.clone()` method now accepts `assertionMethods` option.
3185
- - Added `Service.getAssertionMethod()` method.
3186
- - Added `Service.getAssertionMethods()` method.
3187
- - `new Service()` constructor now accepts `assertionMethod` option.
3188
- - `new Service()` constructor now accepts `assertionMethods` option.
3189
- - `Service.clone()` method now accepts `assertionMethod` option.
3190
- - `Service.clone()` method now accepts `assertionMethods` option.
3191
-
3192
- - Added `DataIntegrityProof` class to Activity Vocabulary API.
3193
- [[FEP-8b32], [#54]]
3194
-
3195
- - Added `proof` property to the `Object` class in the Activity
3196
- Vocabulary API. [[FEP-8b32], [#54]]
3197
-
3198
- - Added `Object.getProof()` method.
3199
- - Added `Object.getProofs()` method.
3200
- - `new Object()` constructor now accepts `proof` option.
3201
- - `new Object()` constructor now accepts `proofs` option.
3202
- - `Object.clone()` method now accepts `proof` option.
3203
- - `Object.clone()` method now accepts `proofs` option.
3204
-
3205
- - Implemented Object Integrity Proofs. [[FEP-8b32], [#54]]
3206
-
3207
- - If there are any Ed25519 key pairs, the `Context.sendActivity()` and
3208
- `Federation.sendActivity()` methods now make Object Integrity Proofs
3209
- for the activity to be sent.
3210
- - If the incoming activity has Object Integrity Proofs, the inbox listener
3211
- now verifies them and ignores HTTP Signatures (if any).
3212
- - Added `signObject()` function.
3213
- - Added `SignObjectOptions` interface.
3214
- - Added `createProof()` function.
3215
- - Added `CreateProofOptions` interface.
3216
- - Added `verifyObject()` function.
3217
- - Added `VerifyObjectOptions` interface.
3218
- - Added `verifyProof()` function.
3219
- - Added `VerifyProofOptions` interface.
3220
- - Added `SenderKeyPair` interface.
3221
- - The type of `Federation.sendActivity()` method's first parameter became
3222
- `SenderKeyPair[]` (was `{ keyId: URL; privateKey: CryptoKey }`).
3223
- - The `Context.sendActivity()` method's first parameter now accepts
3224
- `SenderKeyPair[]` as well.
3225
-
3226
- - In the future, `Federation` class will become an interface.
3227
- For the forward compatibility, the following changes are made:
3228
-
3229
- - Added `createFederation()` function.
3230
- - Added `CreateFederationOptions` interface.
3231
- - Deprecated `new Federation()` constructor. Use `createFederation()`
3232
- function instead.
3233
- - Deprecated `FederationParameters` interface.
3234
-
3235
- - Added `Arrive` class to Activity Vocabulary API.
3236
- [[#65], [#68] by Randy Wressell]
3237
-
3238
- - Added `Question` class to Activity Vocabulary API.
3239
-
3240
- - Added `context` option to `Object.toJsonLd()` method. This applies to
3241
- any subclasses of the `Object` class too.
3242
-
3243
- - Deprecated `treatHttps` option in `FederationParameters` interface.
3244
- Instead, use the [x-forwarded-fetch] library to recognize the
3245
- `X-Forwarded-Host` and `X-Forwarded-Proto` headers.
3246
-
3247
- - Removed the `Federation.handle()` method which was deprecated in version
3248
- 0.6.0.
3249
-
3250
- - Removed the `integrateHandlerOptions()` function from
3251
- `@fedify/fedify/x/fresh` which was deprecated in version 0.6.0.
3252
-
3253
- - Ephemeral actors and inboxes that the `fedify inbox` command spawns are
3254
- now more interoperable with other ActivityPub implementations.
3255
-
3256
- - Ephemeral actors now have the following properties: `summary`,
3257
- `following`, `followers`, `outbox`, `manuallyApprovesFollowers`, and
3258
- `url`.
3259
- - Improved the compatibility of the `fedify inbox` command with Misskey
3260
- and Mitra.
3261
-
3262
- - Added more log messages using the [LogTape] library. Currently the below
3263
- logger categories are used:
3264
-
3265
- - `["fedify", "sig", "proof"]`
3266
- - `["fedify", "sig", "key"]`
3267
- - `["fedify", "vocab", "lookup"]`
3268
- - `["fedify", "webfinger", "lookup"]`
3269
-
3270
- [#54]: https://github.com/fedify-dev/fedify/issues/54
3271
- [#55]: https://github.com/fedify-dev/fedify/issues/55
3272
- [#65]: https://github.com/fedify-dev/fedify/issues/65
3273
- [#68]: https://github.com/fedify-dev/fedify/pull/68
3274
- [AGPL 3.0]: https://www.gnu.org/licenses/agpl-3.0.en.html
3275
- [MIT License]: https://minhee.mit-license.org/
3276
- [FEP-521a]: https://w3id.org/fep/521a
3277
- [FEP-8b32]: https://w3id.org/fep/8b32
3278
- [x-forwarded-fetch]: https://github.com/dahlia/x-forwarded-fetch
3279
-
3280
-
3281
- Version 0.9.3
3282
- -------------
3283
-
3284
- Released on July 9, 2024.
3285
-
3286
- - Fixed a vulnerability of SSRF via DNS rebinding in the built-in document
3287
- loader. [[CVE-2024-39687]]
3288
-
3289
- - The `fetchDocumentLoader()` function now throws an error when the given
3290
- domain name has any records referring to a private network address.
3291
- - The `getAuthenticatedDocumentLoader()` function now returns a document
3292
- loader that throws an error when the given domain name has any records
3293
- referring to a private network address.
3294
-
3295
-
3296
- Version 0.9.2
3297
- -------------
3298
-
3299
- Released on July 5, 2024.
3300
-
3301
- - Fixed a SSRF vulnerability in the built-in document loader.
3302
- [[CVE-2024-39687]]
3303
-
3304
- - The `fetchDocumentLoader()` function now throws an error when the given
3305
- URL is not an HTTP or HTTPS URL or refers to a private network address.
3306
- - The `getAuthenticatedDocumentLoader()` function now returns a document
3307
- loader that throws an error when the given URL is not an HTTP or HTTPS
3308
- URL or refers to a private network address.
3309
-
3310
- [CVE-2024-39687]: https://github.com/fedify-dev/fedify/security/advisories/GHSA-p9cg-vqcc-grcx
3311
-
3312
-
3313
- Version 0.9.1
3314
- -------------
3315
-
3316
- Released on June 13, 2024.
3317
-
3318
- - Fixed a bug of Activity Vocabulary API that `clone()` method of Vocabulary
3319
- classes had not cloned the `id` property from the source object.
3320
-
3321
-
3322
- Version 0.9.0
3323
- -------------
3324
-
3325
- Released on June 2, 2024.
3326
-
3327
- - Added `Tombstone` class to Activity Vocabulary API.
3328
-
3329
- - Added `Hashtag` class to Activity Vocabulary API. [[#48]]
3330
-
3331
- - Added `Emoji` class to Activity Vocabulary API. [[#48]]
3332
-
3333
- - Added an actor handle normalization function.
3334
-
3335
- - Added `normalizeActorHandle()` function.
3336
- - Added `NormalizeActorHandleOptions` interface.
3337
- - The `getActorHandle()` function now guarantees that the returned
3338
- actor handle is normalized.
3339
- - Added the second optional parameter to `getActorHandle()` function.
3340
- - The return type of `getActorHandle()` function became
3341
- ``Promise<`@${string}@${string}` | `${string}@${string}`>``
3342
- (was ``Promise<`@${string}@${string}`>``).
3343
-
3344
- - Added `excludeBaseUris` option to `Context.sendActivity()` and
3345
- `Federation.sendActivity()` methods.
3346
-
3347
- - Added `SendActivityOptions.excludeBaseUris` property.
3348
- - Added `ExtractInboxesParameters.excludeBaseUris` property.
3349
-
3350
- - The `Context` now can parse URIs of objects, inboxes, and collections as
3351
- well as actors.
3352
-
3353
- - Added `Context.parseUri()` method.
3354
- - Added `ParseUriResult` type.
3355
- - Deprecated `Context.getHandleFromActorUri()` method.
3356
-
3357
- - The time window for signature verification is now configurable. [[#52]]
3358
-
3359
- - The default time window for signature verification is now a minute (was
3360
- 30 seconds).
3361
- - Added `signatureTimeWindow` option to `FederationParameters` interface.
3362
- - Added `VerifyOptions` interface.
3363
- - The signature of the `verify()` function is revamped; it now optionally
3364
- takes a `VerifyOptions` object as the second parameter.
3365
-
3366
- - Renamed the `@fedify/fedify/httpsig` module to `@fedify/fedify/sig`, and
3367
- also:
3368
-
3369
- - Deprecated `sign()` function. Use `signRequest()` instead.
3370
- - Deprecated `verify()` function. Use `verifyRequest()` instead.
3371
- - Deprecated `VerifyOptions` interface. Use `VerifyRequestOptions`
3372
- instead.
3373
-
3374
- - When signing an HTTP request, the `algorithm` parameter is now added to
3375
- the `Signature` header. This change improves the compatibility with
3376
- Misskey and other implementations that require the `algorithm` parameter.
3377
-
3378
- - Added more log messages using the [LogTape] library. Currently the below
3379
- logger categories are used:
3380
-
3381
- - `["fedify", "federation", "actor"]`
3382
- - `["fedify", "federation", "http"]`
3383
- - `["fedify", "sig", "http"]`
3384
- - `["fedify", "sig", "key"]`
3385
- - `["fedify", "sig", "owner"]`
3386
-
3387
- [#48]: https://github.com/fedify-dev/fedify/issues/48
3388
- [#52]: https://github.com/fedify-dev/fedify/issues/52
3389
-
3390
-
3391
- Version 0.8.0
3392
- -------------
3393
-
3394
- Released on May 6, 2024.
3395
-
3396
- - The CLI toolchain for testing and debugging is now available on JSR:
3397
- [@fedify/cli]. You can install it with
3398
- `deno install -A --unstable-fs --unstable-kv --unstable-temporal -n fedify
3399
- jsr:@fedify/cli`, or download a standalone executable from the [releases]
3400
- page.
3401
-
3402
- - Added `fedify` command.
3403
- - Added `fedify lookup` subcommand.
3404
- - Added `fedify inbox` subcommand.
3405
-
3406
- - Implemented [followers collection synchronization mechanism][FEP-8fcf].
3407
-
3408
- - Added `RequestContext.sendActivity()` overload that takes `"followers"`
3409
- as the second parameter.
3410
- - Added the second type parameter to `CollectionCallbackSetters`
3411
- interface.
3412
- - Added the second type parameter to `CollectionDispatcher` type.
3413
- - Added the fourth parameter to `CollectionDispatcher` type.
3414
- - Added the second type parameter to `CollectionCounter` type.
3415
- - Added the third parameter to `CollectionCounter` type.
3416
- - Added the second type parameter to `CollectionCursor` type.
3417
- - Added the third parameter to `CollectionCursor` type.
3418
-
3419
- - Relaxed the required type for activity recipients.
3420
-
3421
- - Added `Recipient` interface.
3422
- - The type of the second parameter of `Context.sendActivity()` method
3423
- became `Recipient | Recipient[]` (was `Actor | Actor[]`). However,
3424
- since `Recipient` is a supertype of `Actor`, the existing code should
3425
- work without any change.
3426
-
3427
- - Followers collection now has to consist of `Recipient` objects only.
3428
- (It could consist of `URL`s as well as `Actor`s before.)
3429
-
3430
- - The type of `Federation.setFollowersDispatcher()` method's second
3431
- parameter became `CollectionDispatcher<Recipient, TContextData, URL>`
3432
- (was `CollectionDispatcher<Actor | URL, TContextData>`).
3433
-
3434
- - Some of the responsibility of a document loader was separated to a context
3435
- loader and a document loader.
3436
-
3437
- - Added `contextLoader` option to constructors, `fromJsonLd()` static
3438
- methods, `clone()` methods, and all non-scalar accessors (`get*()`) of
3439
- Activity Vocabulary classes.
3440
- - Renamed `documentLoader` option to `contextLoader` in `toJsonLd()`
3441
- methods of Activity Vocabulary objects.
3442
- - Added `contextLoader` option to `LookupObjectOptions` interface.
3443
- - Added `contextLoader` property to `Context` interface.
3444
- - Added `contextLoader` option to `FederationParameters` interface.
3445
- - Renamed `documentLoader` option to `contextLoader` in
3446
- `RespondWithObjectOptions` interface.
3447
- - Added `GetKeyOwnerOptions` interface.
3448
- - The type of the second parameter of `getKeyOwner()` function became
3449
- `GetKeyOwnerOptions` (was `DocumentLoader`).
3450
- - Added `DoesActorOwnKeyOptions` interface.
3451
- - The type of the third parameter of `doesActorOwnKey()` function became
3452
- `DoesActorOwnKeyOptions` (was `DocumentLoader`).
3453
-
3454
- - Added `width` and `height` properties to `Document` class for better
3455
- compatibility with Mastodon. [[#47]]
3456
-
3457
- - Added `Document.width` property.
3458
- - Added `Document.height` property.
3459
- - `new Document()` constructor now accepts `width` option.
3460
- - `new Document()` constructor now accepts `height` option.
3461
- - `Document.clone()` method now accepts `width` option.
3462
- - `Document.clone()` method now accepts `height` option.
3463
-
3464
- - Removed the dependency on *@js-temporal/polyfill* on Deno, and Fedify now
3465
- requires `--unstable-temporal` flag. On other runtime, it still depends
3466
- on *@js-temporal/polyfill*.
3467
-
3468
- - Added more log messages using the [LogTape] library. Currently the below
3469
- logger categories are used:
3470
-
3471
- - `["fedify", "federation", "collection"]`
3472
- - `["fedify", "httpsig", "verify"]`
3473
- - `["fedify", "runtime", "docloader"]`
3474
-
3475
- - Fixed a bug where the authenticated document loader had thrown `InvalidUrl`
3476
- error when the URL redirection was involved in Bun.
3477
-
3478
- - Fixed a bug of `lookupObject()` that it had failed to look up the actor
3479
- object when WebFinger response had no links with
3480
- `"type": "application/activity+json"` but had `"type":
3481
- "application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\""`.
3482
-
3483
- [@fedify/cli]: https://jsr.io/@fedify/cli
3484
- [releases]: https://github.com/fedify-dev/fedify/releases
3485
- [FEP-8fcf]: https://w3id.org/fep/8fcf
3486
- [#47]: https://github.com/fedify-dev/fedify/issues/47
3487
-
3488
-
3489
- Version 0.7.0
3490
- -------------
3491
-
3492
- Released on April 23, 2024.
3493
-
3494
- - Added `PUBLIC_COLLECTION` constant for [public addressing].
3495
-
3496
- - `Federation` now supports [authorized fetch] for actor dispatcher and
3497
- collection dispatchers.
3498
-
3499
- - Added `ActorCallbackSetters.authorize()` method.
3500
- - Added `CollectionCallbackSetters.authorize()` method.
3501
- - Added `AuthorizedPredicate` type.
3502
- - Added `RequestContext.getSignedKey()` method.
3503
- - Added `RequestContext.getSignedKeyOwner()` method.
3504
- - Added `FederationFetchOptions.onUnauthorized` option for handling
3505
- unauthorized fetches.
3506
- - Added `getKeyOwner()` function.
3507
-
3508
- - The default implementation of `FederationFetchOptions.onNotAcceptable`
3509
- option now responds with `Vary: Accept, Signature` header.
3510
-
3511
- - Added log messages using the [LogTape] library. Currently the below
3512
- logger categories are used:
3513
-
3514
- - `["fedify"]`
3515
- - `["fedify", "federation"]`
3516
- - `["fedify", "federation", "inbox"]`
3517
- - `["fedify", "federation", "outbox"]`
3518
-
3519
- - Added `RequestContext.getActor()` method.
3520
-
3521
- - Activity Vocabulary classes now have `typeId` static property.
3522
-
3523
- - Dispatcher setters and inbox listener setters in `Federation` now take
3524
- a path as `` `${string}{handle}${string}` `` instead of `string`
3525
- so that it is more type-safe.
3526
-
3527
- - Added generalized object dispatchers. [[#33]]
3528
-
3529
- - Added `Federation.setObjectDispatcher()` method.
3530
- - Added `ObjectDispatcher` type.
3531
- - Added `ObjectAuthorizePredicate` type.
3532
- - Added `Context.getObjectUri()` method.
3533
- - Added `RequestContext.getObject()` method.
3534
-
3535
- [public addressing]: https://www.w3.org/TR/activitypub/#public-addressing
3536
- [authorized fetch]: https://swicg.github.io/activitypub-http-signature/#authorized-fetch
3537
- [LogTape]: https://github.com/dahlia/logtape
3538
- [#33]: https://github.com/fedify-dev/fedify/issues/33
3539
-
3540
-
3541
- Version 0.6.1
3542
- -------------
3543
-
3544
- Released on April 17, 2024.
3545
-
3546
- - Fixed a bug of `new Federation()` constructor that if it is once called
3547
- the process will never exit. [[#39]]
3548
-
3549
-
3550
- Version 0.6.0
3551
- -------------
3552
-
3553
- Released on April 9, 2024.
3554
-
3555
- - `DocumentLoader` is now propagated to the loaded remote objects from
3556
- Activity Vocabulary objects. [[#27]]
3557
-
3558
- - Added `options` parameter to Activity Vocabulary constructors.
3559
- - Added `options` parameter to `clone()` method of Activity Vocabulary
3560
- objects.
3561
- - The Activity Vocabulary object passed to `InboxListener` now implicitly
3562
- loads remote object with an authenticated `DocumentLoader`.
3563
-
3564
- - Added `Federation.fetch()` method.
3565
-
3566
- - Deprecated `Federation.handle()` method. Use `Federation.fetch()`
3567
- method instead.
3568
- - Renamed `FederationHandlerParameters` type to `FederationFetchOptions`.
3569
- - Added `integrateFetchOptions()` function.
3570
- - Deprecated `integrateHandlerOptions()` function.
3571
-
3572
- - Added `@fedify/fedify/x/hono` module for integrating with [Hono] middleware.
3573
- [[#25]]
3574
-
3575
- - Added `federation()` function.
3576
- - Added `ContextDataFactory` type.
3577
-
3578
- - `Context.sendActivity()` method now throws `TypeError` instead of silently
3579
- failing when the given `Activity` object lacks the actor property.
3580
-
3581
- - `Context.sendActivity()` method now uses an authenticated document
3582
- loader under the hood.
3583
-
3584
- - Added outbox error handler to `Federation`.
3585
-
3586
- - Added `onOutboxError` option to `new Federation()` constructor.
3587
- - Added `OutboxErrorHandler` type.
3588
-
3589
- [Hono]: https://hono.dev/
3590
- [#25]: https://github.com/fedify-dev/fedify/issues/25
3591
- [#27]: https://github.com/fedify-dev/fedify/issues/27
3592
-
3593
-
3594
- Version 0.5.2
3595
- -------------
3596
-
3597
- Released on April 17, 2024.
3598
-
3599
- - Fixed a bug of `new Federation()` constructor that if it is once called
3600
- the process will never exit. [[#39]]
3601
-
3602
- [#39]: https://github.com/fedify-dev/fedify/issues/39
3603
-
3604
-
3605
- Version 0.5.1
3606
- -------------
3607
-
3608
- Released on April 5, 2024.
3609
-
3610
- - Fixed a bug of `Federation` that its actor/collection dispatchers had done
3611
- content negotiation before determining if the resource exists or not.
3612
- It also fixed a bug that `integrateHandler()` from `@fedify/fedify/x/fresh`
3613
- had responded with `406 Not Acceptable` instead of `404 Not Found` when
3614
- the resource does not exist in the web browser. [[#34]]
3615
-
3616
- [#34]: https://github.com/fedify-dev/fedify/issues/34
3617
-
3618
-
3619
- Version 0.5.0
3620
- -------------
3621
-
3622
- Released on April 2, 2024.
3623
-
3624
- - Fedify is now available on npm: [@fedify/fedify]. [[#24]]
3625
-
3626
- - Abstract key-value store for caching.
3627
-
3628
- - Added `KvStore` interface.
3629
- - Added `KvStoreSetOptions` interface.
3630
- - Added `KvKey` type.
3631
- - Added `DenoKvStore` class.
3632
- - `KvCacheParameters.kv` option now accepts a `KvStore` instead of
3633
- `Deno.Kv`.
3634
- - `KvCacheParameters.prefix` option now accepts a `KvKey` instead of
3635
- `Deno.KvKey`.
3636
- - `FederationParameters.kv` option now accepts a `KvStore` instead of
3637
- `Deno.Kv`.
3638
- - `FederationKvPrefixes.activityIdempotence` option now accepts a `KvKey`
3639
- instead of `Deno.KvKey`.
3640
- - `FederationKvPrefixes.remoteDocument` option now accepts a `KvKey`
3641
- instead of `Deno.KvKey`.
3642
-
3643
- - Abstract message queue for outgoing activities.
3644
-
3645
- - Added `MessageQueue` interface.
3646
- - Added `MessageQueueEnqueueOptions` interface.
3647
- - Added `InProcessMessageQueue` class.
3648
- - Added `FederationParameters.queue` option.
3649
-
3650
- - Added `@fedify/fedify/x/denokv` module for adapting `Deno.Kv` to `KvStore`
3651
- and `MessageQueue`. It is only available in Deno runtime.
3652
-
3653
- - Added `DenoKvStore` class.
3654
- - Added `DenoKvMessageQueue` class.
3655
-
3656
- - Added `PropertyValue` to Activity Vocabulary API. [[#29]]
3657
-
3658
- - Added `PropertyValue` class.
3659
- - `new Object()` constructor's `attachments` option now accepts
3660
- `PropertyValue` objects.
3661
- - `new Object()` constructor's `attachment` option now accepts
3662
- a `PropertyValue` object.
3663
- - `Object.getAttachments()` method now yields `PropertyValue` objects
3664
- besides `Object` and `Link` objects.
3665
- - `Object.getAttachment()` method now returns a `PropertyValue` object
3666
- besides an `Object` and a `Link` object.
3667
- - `Object.clone()` method's `attachments` option now accepts
3668
- `PropertyValue` objects.
3669
- - `Object.clone()` method's `attachment` option now accepts
3670
- a `PropertyValue` object.
3671
-
3672
- - Removed dependency on *jose*.
3673
-
3674
- - Added `exportSpki()` function.
3675
- - Added `importSpki()` function.
3676
-
3677
- - Fixed a bug that `Application.manuallyApprovesFollowers`,
3678
- `Group.manuallyApprovesFollowers`, `Organization.manuallyApprovesFollowers`,
3679
- `Person.manuallyApprovesFollowers`, and `Service.manuallyApprovesFollowers`
3680
- properties were not properly displayed in Mastodon.
3681
-
3682
- [@fedify/fedify]: https://www.npmjs.com/package/@fedify/fedify
3683
- [#24]: https://github.com/fedify-dev/fedify/discussions/24
3684
- [#29]: https://github.com/fedify-dev/fedify/issues/29
3685
-
3686
-
3687
- Version 0.4.0
3688
- -------------
3689
-
3690
- Released on March 26, 2024.
3691
-
3692
- - Added `@fedify/fedify/x/fresh` module for integrating with [Fresh]
3693
- middleware.
3694
-
3695
- - Added `integrateHandler()` function.
3696
- - Added `integrateHandlerOptions()` function.
3697
-
3698
- - Added `getActorHandle()` function.
3699
-
3700
- - Fedify now has authenticated document loader. [[#12]]
3701
-
3702
- - Added `Context.getDocumentLoader()` method.
3703
- - Added `getAuthenticatedDocumentLoader()` function.
3704
- - Added `AuthenticatedDocumentLoaderFactory` type.
3705
- - Added `authenticatedDocumentLoaderFactory` option to `new Federation()`
3706
- constructor.
3707
- - `Context.documentLoader` property now returns an authenticated document
3708
- loader in personal inbox listeners. (Note that it's not affected in
3709
- shared inbox listeners.)
3710
-
3711
- - Added singular accessors to `Object`'s `icon` and `image` properties.
3712
-
3713
- - `new Object()` constructor now accepts `icon` option.
3714
- - `new Object()` constructor now accepts `image` option.
3715
- - Added `Object.getIcon()` method.
3716
- - Added `Object.getImage()` method.
3717
- - `Object.clone()` method now accepts `icon` option.
3718
- - `Object.clone()` method now accepts `image` option.
3719
-
3720
- - `Object`'s `icon` and `image` properties no more accept `Link` objects.
3721
-
3722
- - `new Object()` constructor's `icons` option no more accepts `Link`
3723
- objects.
3724
- - `new Object()` constructor's `images` option no more accepts `Link`
3725
- objects.
3726
- - `Object.getIcons()` method no more yields `Link` objects.
3727
- - `Object.getImages()` method no more yields `Link` objects.
3728
- - `Object.clone()` method's `icons` option no more accepts `Link` objects.
3729
- - `Object.clone()` method's `images` option no more accepts `Link`
3730
- objects.
3731
-
3732
- - `Object`'s `attributedTo` property was renamed to `attribution`.
3733
-
3734
- - `new Object()` constructor's `attributedTo` option was renamed to
3735
- `attribution`.
3736
- - `new Object()` constructor's `attributedTos` option was renamed to
3737
- `attributions`.
3738
- - `Object.getAttributedTo()` method is renamed to
3739
- `Object.getAttribution()`.
3740
- - `Object.getAttributedTos()` method is renamed to
3741
- `Object.getAttributions()`.
3742
- - `Object.clone()` method's `attributedTo` option is renamed to
3743
- `attribution`.
3744
- - `Object.clone()` method's `attributedTos` option is renamed to
3745
- `attributions`.
3746
-
3747
- - `Object`'s `attribution` property (was `attributedTo`) now accepts only
3748
- `Actor` objects.
3749
-
3750
- - `new Object()` constructor's `attribution` option (was `attributedTo`)
3751
- now accepts only an `Actor` object.
3752
- - `new Object()` constructor's `attributions` option (was `attributedTos`)
3753
- now accepts only `Actor` objects.
3754
- - `Object.getAttribution()` method (was `getAttributedTo()`) now returns
3755
- only an `Actor` object.
3756
- - `Object.getAttributions()` method (was `getAttributedTos()`) now returns
3757
- only `Actor` objects.
3758
- - `Object.clone()` method's `attribution` option (`attributedTo`) now
3759
- accepts only an `Actor` object.
3760
- - `Object.clone()` method's `attributions` option (`attributedTos`) now
3761
- accepts only `Actor` objects.
3762
-
3763
- - `Activity`'s `object` property no more accepts `Link` objects.
3764
-
3765
- - `new Activity()` constructor's `object` option no more accepts a `Link`
3766
- object.
3767
- - `new Activity()` constructor's `objects` option no more accepts `Link`
3768
- objects.
3769
- - `Activity.getObject()` method no more returns a `Link` object.
3770
- - `Activity.getObjects()` method no more returns `Link` objects.
3771
- - `Activity.clone()` method's `object` option no more accepts a `Link`
3772
- object.
3773
- - `Activity.clone()` method's `objects` option no more accepts `Link`
3774
- objects.
3775
-
3776
- - `Activity`'s `actor` property now accepts only `Actor` objects.
3777
-
3778
- - `new Activity()` constructor's `actor` option now accepts only
3779
- an `Actor` object.
3780
- - `new Activity()` constructor's `actors` option now accepts only `Actor`
3781
- objects.
3782
- - `Activity.getActor()` method now returns only an `Actor` object.
3783
- - `Activity.getActors()` method now returns only `Actor` objects.
3784
- - `Activity.clone()` method's `actor` option now accepts only an `Actor`
3785
- object.
3786
- - `Activity.clone()` method's `actors` option now accepts only `Actor`
3787
- objects.
3788
-
3789
- - Added `sensitive` property to `Object` class.
3790
-
3791
- - `new Object()` constructor now accepts `sensitive` option.
3792
- - Added `Object.sensitive` attribute.
3793
- - `Object.clone()` method now accepts `sensitive` option.
3794
-
3795
- - Now `lookupWebFinger()` follows redirections.
3796
-
3797
- - The `http://webfinger.net/rel/profile-page` links in WebFinger responses
3798
- now omit `type` property.
3799
-
3800
- [Fresh]: https://fresh.deno.dev/
3801
- [#12]: https://github.com/fedify-dev/fedify/issues/12
3802
-
3803
-
3804
- Version 0.3.0
3805
- -------------
3806
-
3807
- Released on March 15, 2024.
3808
-
3809
- - Added utility functions for responding with an ActivityPub object:
3810
-
3811
- - Added `respondWithObject()` function.
3812
- - Added `respondWithObjectIfAcceptable()` function.
3813
- - Added `RespondWithObjectOptions` interface.
3814
-
3815
- - Added utility functions for generating and exporting cryptographic keys
3816
- which are compatible with popular ActivityPub software:
3817
-
3818
- - Added `generateCryptoKeyPair()` function.
3819
- - Added `exportJwk()` function.
3820
- - Added `importJwk()` function.
3821
-
3822
- - The following functions and methods now throw `TypeError` if the specified
3823
- `CryptoKey` is not `extractable`:
3824
-
3825
- - `Context.getActorKey()` method
3826
- - `Context.sendActivity()` method
3827
- - `Federation.sendActivity()` method
3828
-
3829
- - Added `immediate` option to `Context.sendActivity()` and
3830
- `Federation.sendActivity()` methods.
3831
-
3832
- - Added `SendActivityOptions` interface.
3833
-
3834
- - Now `onNotFound`/`onNotAcceptable` options are optional for
3835
- `Federation.handle()` method. [[#9]]
3836
-
3837
- [#9]: https://github.com/fedify-dev/fedify/issues/9
3838
-
3839
-
3840
- Version 0.2.0
3841
- -------------
3842
-
3843
- Released on March 10, 2024.
3844
-
3845
- - Implemented [NodeInfo] 2.1 protocol. [[#1]]
3846
-
3847
- - Now `Federation.handle()` accepts requests for */.well-known/nodeinfo*.
3848
- - Added `Federation.setNodeInfoDispatcher()` method.
3849
- - Added `Context.getNodeInfoUri()` method.
3850
- - Added `NodeInfo` interface.
3851
- - Added `Software` interface.
3852
- - Added `Protocol` type.
3853
- - Added `Services` interface.
3854
- - Added `InboundService` type.
3855
- - Added `OutboundService` type.
3856
- - Added `Usage` interface.
3857
- - Added `NodeInfoDispatcher` type.
3858
- - Added `nodeInfoToJson()` function.
3859
-
3860
- - Implemented [WebFinger] client.
3861
-
3862
- - Added `lookupObject()` function.
3863
- - Added `lookupWebFinger()` function.
3864
-
3865
- - `Federation.handle()` now responds with `Access-Control-Allow-Origin: *`
3866
- header for WebFinger requests.
3867
-
3868
- - `fetchDocumentLoader()`, the default document loader, now sends `Accept:
3869
- application/activity+json, application/ld+json` header (was `Accept:
3870
- application/ld+json` only).
3871
-
3872
- [NodeInfo]: https://nodeinfo.diaspora.software/
3873
- [WebFinger]: https://datatracker.ietf.org/doc/html/rfc7033
3874
- [#1]: https://github.com/fedify-dev/fedify/issues/1
3875
-
3876
-
3877
- Version 0.1.0
3878
- -------------
3879
-
3880
- Initial release. Released on March 8, 2024.
3881
-
3882
- <!-- cSpell: ignore Dogeon Fabien Wressell Emelia Fróði Karlsson -->
3883
- <!-- cSpell: ignore Hana Heesun Kyunghee Jiyu Revath Kumar -->