Skip to content

Commit

Permalink
Merge tag '1.2.6'
Browse files Browse the repository at this point in the history
Fedify 1.2.6
  • Loading branch information
dahlia committed Nov 19, 2024
2 parents 58ce0c0 + b2b3d07 commit 369ed29
Show file tree
Hide file tree
Showing 9 changed files with 634 additions and 140 deletions.
230 changes: 230 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,63 @@ To be released.
[#162]: https://github.com/dahlia/fedify/issues/162


Version 1.2.6
-------------

Released on December 19, 2024.

- Fix a bug where `Actor`'s `inbox` and `outbox` properties had not been
able to be set to an `OrderedCollectionPage` object, even though it is
a subtype of `OrderedCollection` according to Activity Vocabulary
specification. [[#165]]

- The type of `Application()` constructor's `inbox` and `outbox` options
is now `OrderedCollection | OrderedCollectionPage | null | undefined`
(was `OrderedCollection | null | undefined`).
- The type of `Application.clone()` method's `inbox` and `outbox` options
is now `OrderedCollection | OrderedCollectionPage | null | undefined`
(was `OrderedCollection | null | undefined`).
- The return type of `Application.getInbox()` and
`Application.getOutbox()` methods is now `OrderedCollection |
OrderedCollectionPage | null` (was `OrderedCollection | null`).
- The type of `Group()` constructor's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The type of `Group.clone()` method's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The return type of `Group.getInbox()` and `Group.getOutbox()` methods
is now `OrderedCollection | OrderedCollectionPage | null` (was
`OrderedCollection | null`).
- The type of `Organization()` constructor's `inbox` and `outbox` options
is now `OrderedCollection | OrderedCollectionPage | null | undefined`
(was `OrderedCollection | null | undefined`).
- The type of `Organization.clone()` method's `inbox` and `outbox` options
is now `OrderedCollection | OrderedCollectionPage | null | undefined`
(was `OrderedCollection | null | undefined`).
- The return type of `Organization.getInbox()` and
`Organization.getOutbox()` methods is now `OrderedCollection |
OrderedCollectionPage | null` (was `OrderedCollection | null`).
- The type of `Person()` constructor's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The type of `Person.clone()` method's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The return type of `Person.getInbox()` and `Person.getOutbox()` methods
is now `OrderedCollection | OrderedCollectionPage | null` (was
`OrderedCollection | null`).
- The type of `Service()` constructor's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The type of `Service.clone()` method's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The return type of `Service.getInbox()` and `Service.getOutbox()`
methods is now `OrderedCollection | OrderedCollectionPage | null` (was
`OrderedCollection | null`).


Version 1.2.5
-------------

Expand Down Expand Up @@ -157,6 +214,63 @@ Released on October 31, 2024.
[#118]: https://github.com/dahlia/fedify/issues/118


Version 1.1.6
-------------

Released on November 19, 2024.

- Fix a bug where `Actor`'s `inbox` and `outbox` properties had not been
able to be set to an `OrderedCollectionPage` object, even though it is
a subtype of `OrderedCollection` according to Activity Vocabulary
specification. [[#165]]

- The type of `Application()` constructor's `inbox` and `outbox` options
is now `OrderedCollection | OrderedCollectionPage | null | undefined`
(was `OrderedCollection | null | undefined`).
- The type of `Application.clone()` method's `inbox` and `outbox` options
is now `OrderedCollection | OrderedCollectionPage | null | undefined`
(was `OrderedCollection | null | undefined`).
- The return type of `Application.getInbox()` and
`Application.getOutbox()` methods is now `OrderedCollection |
OrderedCollectionPage | null` (was `OrderedCollection | null`).
- The type of `Group()` constructor's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The type of `Group.clone()` method's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The return type of `Group.getInbox()` and `Group.getOutbox()` methods
is now `OrderedCollection | OrderedCollectionPage | null` (was
`OrderedCollection | null`).
- The type of `Organization()` constructor's `inbox` and `outbox` options
is now `OrderedCollection | OrderedCollectionPage | null | undefined`
(was `OrderedCollection | null | undefined`).
- The type of `Organization.clone()` method's `inbox` and `outbox` options
is now `OrderedCollection | OrderedCollectionPage | null | undefined`
(was `OrderedCollection | null | undefined`).
- The return type of `Organization.getInbox()` and
`Organization.getOutbox()` methods is now `OrderedCollection |
OrderedCollectionPage | null` (was `OrderedCollection | null`).
- The type of `Person()` constructor's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The type of `Person.clone()` method's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The return type of `Person.getInbox()` and `Person.getOutbox()` methods
is now `OrderedCollection | OrderedCollectionPage | null` (was
`OrderedCollection | null`).
- The type of `Service()` constructor's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The type of `Service.clone()` method's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The return type of `Service.getInbox()` and `Service.getOutbox()`
methods is now `OrderedCollection | OrderedCollectionPage | null` (was
`OrderedCollection | null`).


Version 1.1.5
-------------

Expand Down Expand Up @@ -322,6 +436,63 @@ Released on October 20, 2024.
[#150]: https://github.com/dahlia/fedify/issues/150


Version 1.0.10
--------------

Released on December 19, 2024.

- Fix a bug where `Actor`'s `inbox` and `outbox` properties had not been
able to be set to an `OrderedCollectionPage` object, even though it is
a subtype of `OrderedCollection` according to Activity Vocabulary
specification. [[#165]]

- The type of `Application()` constructor's `inbox` and `outbox` options
is now `OrderedCollection | OrderedCollectionPage | null | undefined`
(was `OrderedCollection | null | undefined`).
- The type of `Application.clone()` method's `inbox` and `outbox` options
is now `OrderedCollection | OrderedCollectionPage | null | undefined`
(was `OrderedCollection | null | undefined`).
- The return type of `Application.getInbox()` and
`Application.getOutbox()` methods is now `OrderedCollection |
OrderedCollectionPage | null` (was `OrderedCollection | null`).
- The type of `Group()` constructor's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The type of `Group.clone()` method's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The return type of `Group.getInbox()` and `Group.getOutbox()` methods
is now `OrderedCollection | OrderedCollectionPage | null` (was
`OrderedCollection | null`).
- The type of `Organization()` constructor's `inbox` and `outbox` options
is now `OrderedCollection | OrderedCollectionPage | null | undefined`
(was `OrderedCollection | null | undefined`).
- The type of `Organization.clone()` method's `inbox` and `outbox` options
is now `OrderedCollection | OrderedCollectionPage | null | undefined`
(was `OrderedCollection | null | undefined`).
- The return type of `Organization.getInbox()` and
`Organization.getOutbox()` methods is now `OrderedCollection |
OrderedCollectionPage | null` (was `OrderedCollection | null`).
- The type of `Person()` constructor's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The type of `Person.clone()` method's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The return type of `Person.getInbox()` and `Person.getOutbox()` methods
is now `OrderedCollection | OrderedCollectionPage | null` (was
`OrderedCollection | null`).
- The type of `Service()` constructor's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The type of `Service.clone()` method's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The return type of `Service.getInbox()` and `Service.getOutbox()`
methods is now `OrderedCollection | OrderedCollectionPage | null` (was
`OrderedCollection | null`).


Version 1.0.9
-------------

Expand Down Expand Up @@ -606,6 +777,65 @@ Released on September 26, 2024.
[#137]: https://github.com/dahlia/fedify/issues/137


Version 0.15.8
--------------

Released on November 159, 2024.

- Fix a bug where `Actor`'s `inbox` and `outbox` properties had not been
able to be set to an `OrderedCollectionPage` object, even though it is
a subtype of `OrderedCollection` according to Activity Vocabulary
specification. [[#165]]

- The type of `Application()` constructor's `inbox` and `outbox` options
is now `OrderedCollection | OrderedCollectionPage | null | undefined`
(was `OrderedCollection | null | undefined`).
- The type of `Application.clone()` method's `inbox` and `outbox` options
is now `OrderedCollection | OrderedCollectionPage | null | undefined`
(was `OrderedCollection | null | undefined`).
- The return type of `Application.getInbox()` and
`Application.getOutbox()` methods is now `OrderedCollection |
OrderedCollectionPage | null` (was `OrderedCollection | null`).
- The type of `Group()` constructor's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The type of `Group.clone()` method's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The return type of `Group.getInbox()` and `Group.getOutbox()` methods
is now `OrderedCollection | OrderedCollectionPage | null` (was
`OrderedCollection | null`).
- The type of `Organization()` constructor's `inbox` and `outbox` options
is now `OrderedCollection | OrderedCollectionPage | null | undefined`
(was `OrderedCollection | null | undefined`).
- The type of `Organization.clone()` method's `inbox` and `outbox` options
is now `OrderedCollection | OrderedCollectionPage | null | undefined`
(was `OrderedCollection | null | undefined`).
- The return type of `Organization.getInbox()` and
`Organization.getOutbox()` methods is now `OrderedCollection |
OrderedCollectionPage | null` (was `OrderedCollection | null`).
- The type of `Person()` constructor's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The type of `Person.clone()` method's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The return type of `Person.getInbox()` and `Person.getOutbox()` methods
is now `OrderedCollection | OrderedCollectionPage | null` (was
`OrderedCollection | null`).
- The type of `Service()` constructor's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The type of `Service.clone()` method's `inbox` and `outbox` options is
now `OrderedCollection | OrderedCollectionPage | null | undefined` (was
`OrderedCollection | null | undefined`).
- The return type of `Service.getInbox()` and `Service.getOutbox()`
methods is now `OrderedCollection | OrderedCollectionPage | null` (was
`OrderedCollection | null`).

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


Version 0.15.7
--------------

Expand Down
Loading

0 comments on commit 369ed29

Please sign in to comment.