Skip to content
This repository was archived by the owner on Oct 19, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v1.7.0-rc1](https://github.com/nevermined-io/components-catalog/compare/v1.6.5...v1.7.0-rc1)

> 13 June 2023

- pass account by argument instead of get from the list [`4c663e9`](https://github.com/nevermined-io/components-catalog/commit/4c663e922bada1cb26d10adbbc39586379711979)
- fix doc lint issues [`0c66736`](https://github.com/nevermined-io/components-catalog/commit/0c66736dd2feb0233c80775e8561441b2ba1c78d)
- addresss comment [`bac396d`](https://github.com/nevermined-io/components-catalog/commit/bac396d8801ca378515ec21e8b719d600194cee1)

#### [v1.6.5](https://github.com/nevermined-io/components-catalog/compare/v1.6.4...v1.6.5)

> 2 June 2023

- set different search options [`#304`](https://github.com/nevermined-io/components-catalog/pull/304)
- improvements in search subscriptions [`d7e1262`](https://github.com/nevermined-io/components-catalog/commit/d7e12623c91bbb73499bbe1bc1ced72c1bfed1c8)
- Adding v1.6.4 Changelog updates [`9a0b0eb`](https://github.com/nevermined-io/components-catalog/commit/9a0b0eba69cdaa6c72a2669bd1c098519cbb6ab7)

#### [v1.6.4](https://github.com/nevermined-io/components-catalog/compare/v1.6.3...v1.6.4)

> 1 June 2023
Expand Down
5 changes: 3 additions & 2 deletions catalog/integration-tests/catalog-dtp.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ describe('DTP', () => {

(async () => {
const result = await publishNFT1155({
publisher,
nftAttributes,
password,
cryptoConfig,
Expand Down Expand Up @@ -128,11 +129,11 @@ describe('DTP', () => {
try {
const result = await nfts.access({
did: ddoResult.id,
buyer: consumer,
nftHolder: publisher.getId(),
nftAmount: BigNumber.from(1),
ercType: 1155,
password,
accountIndex: 1
})

setAgreementId(result)
Expand Down Expand Up @@ -171,7 +172,7 @@ describe('DTP', () => {

(async () => {
try {
const result = await assets.downloadNFT({did: ddoResult.id, ercType: 1155, path: undefined, fileIndex: 1, password, accountIndex: 1}) as string
const result = await assets.downloadNFT({did: ddoResult.id, consumer, ercType: 1155, path: undefined, fileIndex: 1, password}) as string
setIsDownloaded(result)
} catch (error: any) {
console.error(error.message)
Expand Down
2 changes: 1 addition & 1 deletion catalog/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nevermined-io/catalog",
"version": "1.6.6",
"version": "1.7.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
Expand Down
Loading