From dd20c8b2c1672b57ff76a7bf1d6ef3521be7596e Mon Sep 17 00:00:00 2001 From: Nicolas Mahe Date: Wed, 29 Mar 2023 17:55:22 +0700 Subject: [PATCH] update changelog for beta 15 --- docs/pages/graphql-api/changelog.mdx | 25 +++++++++++++++++++++++++ docs/pages/webhook/changelog.mdx | 20 ++++++++++++++++++++ 2 files changed, 45 insertions(+) diff --git a/docs/pages/graphql-api/changelog.mdx b/docs/pages/graphql-api/changelog.mdx index 7c66c2f7..24509748 100644 --- a/docs/pages/graphql-api/changelog.mdx +++ b/docs/pages/graphql-api/changelog.mdx @@ -4,6 +4,31 @@ title: 'Changelog' # Changelog +## v1.0.0-beta.15 + +> Published the 2023-03-29 + +#### Breaking Changes + +- Removed `assetExists` and `ownerExists` from filter `OwnershipFilter` +- Removed `isFollowed` and `isWatched` resolvers and filters from Account, Asset and Collection + +#### Added + +- New admin APIs: + - Add new `setRole` mutation only available to admins. This mutation let you change the role of any user and upgrade/downgrade them as admin. + - Add a new query `admins` returning the list of all the current admin of the platform +- Add autogenerated `slug` to `Asset` to identify any asset with an url-friendly identifier. This identifier is composed of the asset's name and a few random characters. + +#### Changed + +- Type of `Ownership.quantity` changed from `Uint256` to `Int256` +- Increase performance on resolvers on `Auction.winningOffer`, `collection.numberOfOwners`, `collection.totalListed`, `collection.supply`, and `asset.royalties`. + +#### Fixed + +- Fix results of filter `content: { match: XXX }` when the search contains multiple words, singular/plural and some other cases + ## v1.0.0-beta.14 > Published the 2023-03-09 diff --git a/docs/pages/webhook/changelog.mdx b/docs/pages/webhook/changelog.mdx index a1be3085..8c62b977 100644 --- a/docs/pages/webhook/changelog.mdx +++ b/docs/pages/webhook/changelog.mdx @@ -4,6 +4,26 @@ title: 'Changelog' # Changelog +## v1.0.0-beta.15 + +> Published the 2023-03-29 + +#### Added + +- Add new webhook types + - `TRADE_CREATED` + - `AUCTION_ENDED` + - `BID_EXPIRED` + - `OFFER_EXPIRED` + - `AUCTION_BID_EXPIRED` +- Add properties `type` and `auction` to `Offer` payload +- Add property `collection` to `Asset` payload +- Add type `chainId` + +#### Changed + +- Change type of `address` property to a dedicated `Address` type based on `string` type + ## v1.0.0-beta.11 > Published the 2023-02-07