Unverified Commit caa05f81 authored by Hong Minhee's avatar Hong Minhee
Browse files

`Object.source` property & `Source` class

parent d1b1171c
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -8,6 +8,15 @@ Version 0.14.0

To be released.

 -  Added `source` property to `Object` class in Activity Vocabulary API.
    [[#114]]

     -  Added `Object.source` property.
     -  `new Object()` constructor now accepts `source` option.
     -  `Object.clone()` method now accepts `source` option.

 -  Added `Source` class to Activity Vocabulary API.  [[#114]]

 -  Improved the performance of `Object.toJsonLd()` method.

     -  `Object.toJsonLd()` method no longer guarantees that the returned
@@ -24,6 +33,8 @@ To be released.
    Bun, and fills the *deno.json* file with the default `compilerOptions` on
    Deno.

[#114]: https://github.com/dahlia/fedify/issues/114


Version 0.13.0
--------------
+735 −108

File changed.

Preview size limit exceeded, changes collapsed.

+186 −0

File changed.

Preview size limit exceeded, changes collapsed.

+13 −0
Original line number Diff line number Diff line
@@ -330,6 +330,19 @@ properties:
  range:
  - "http://www.w3.org/2001/XMLSchema#boolean"

- singularName: source
  functional: true
  compactName: source
  uri: "https://www.w3.org/ns/activitystreams#source"
  description: |
    The `source` property is intended to convey some sort of source from which
    the `content` markup was derived, as a form of provenance, or to support
    future editing by clients.  In general, clients do the conversion from
    `source` to `content`, not the other way around. 
  untyped: true
  range:
  - "https://www.w3.org/ns/activitystreams#Source"

- singularName: proof
  pluralName: proofs
  singularAccessor: true

src/vocab/source.yaml

0 → 100644
+26 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading