@fedify/fedify 0.6.0-dev.113 → 0.7.0-dev.116

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of @fedify/fedify might be problematic. Click here for more details.

package/CHANGES.md CHANGED
@@ -3,11 +3,21 @@
3
3
  Fedify changelog
4
4
  ================
5
5
 
6
- Version 0.6.0
6
+ Version 0.7.0
7
7
  -------------
8
8
 
9
9
  To be released.
10
10
 
11
+ - Added `PUBLIC_COLLECTION` constant for [public addressing].
12
+
13
+ [public addressing]: https://www.w3.org/TR/activitypub/#public-addressing
14
+
15
+
16
+ Version 0.6.0
17
+ -------------
18
+
19
+ Released on April 9, 2024.
20
+
11
21
  - `DocumentLoader` is now propagated to the loaded remote objects from
12
22
  Activity Vocabulary objects. [[#27]]
13
23
 
package/README.md CHANGED
@@ -51,7 +51,7 @@ join our [Matrix chat space][Matrix] or [GitHub Discussions].
51
51
  [Mastodon], [Lemmy], [Pixelfed], [PeerTube], and so on.
52
52
 
53
53
  [JSR]: https://jsr.io/@fedify/fedify
54
- [JSR badge]: https://jsr.io/badges/@fedify/fedify?_v=0.5.1
54
+ [JSR badge]: https://jsr.io/badges/@fedify/fedify?v=0.6.0
55
55
  [npm]: https://www.npmjs.com/package/@fedify/fedify
56
56
  [npm badge]: https://img.shields.io/npm/v/@fedify/fedify?logo=npm
57
57
  [GitHub Actions]: https://github.com/dahlia/fedify/actions/workflows/build.yaml
@@ -0,0 +1,9 @@
1
+ /**
2
+ * The special public collection for [public addressing]. *Do not mutate this
3
+ * object.*
4
+ *
5
+ * [public addressing]: https://www.w3.org/TR/activitypub/#public-addressing
6
+ *
7
+ * @since 0.7.0
8
+ */
9
+ export const PUBLIC_COLLECTION = new URL("https://www.w3.org/ns/activitystreams#Public");
package/esm/vocab/mod.js CHANGED
@@ -50,5 +50,6 @@
50
50
  * @module
51
51
  */
52
52
  export * from "./actor.js";
53
+ export * from "./constants.js";
53
54
  export * from "./lookup.js";
54
55
  export * from "./vocab.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/fedify",
3
- "version": "0.6.0-dev.113+4573e798",
3
+ "version": "0.7.0-dev.116+6ef7c7a4",
4
4
  "description": "An ActivityPub server framework",
5
5
  "keywords": [
6
6
  "ActivityPub",
@@ -0,0 +1,11 @@
1
+ /// <reference types="node" />
2
+ /**
3
+ * The special public collection for [public addressing]. *Do not mutate this
4
+ * object.*
5
+ *
6
+ * [public addressing]: https://www.w3.org/TR/activitypub/#public-addressing
7
+ *
8
+ * @since 0.7.0
9
+ */
10
+ export declare const PUBLIC_COLLECTION: URL;
11
+ //# sourceMappingURL=constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/vocab/constants.ts"],"names":[],"mappings":";AAAA;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB,EAAE,GAE/B,CAAC"}
@@ -50,6 +50,7 @@
50
50
  * @module
51
51
  */
52
52
  export * from "./actor.js";
53
+ export * from "./constants.js";
53
54
  export * from "./lookup.js";
54
55
  export * from "./vocab.js";
55
56
  //# sourceMappingURL=mod.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../../src/vocab/mod.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AACH,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC"}
1
+ {"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../../src/vocab/mod.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AACH,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC"}