Skip to content

Commit

Permalink
Merge branch 'main' into test-alchemy
Browse files Browse the repository at this point in the history
  • Loading branch information
levalleux-ludo committed Dec 6, 2023
2 parents 4b66d82 + b568b5a commit 5b5e26c
Show file tree
Hide file tree
Showing 25 changed files with 187 additions and 80 deletions.
11 changes: 11 additions & 0 deletions e2e/meta-tx-gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.6.0](https://github.com/bosonprotocol/core-components/compare/[email protected]@1.6.0) (2023-12-05)


### Features

* integrate finance widget ([#609](https://github.com/bosonprotocol/core-components/issues/609)) ([79983d1](https://github.com/bosonprotocol/core-components/commit/79983d15468e86f71bd6e15b5154a7b21fe24798))





## [1.5.2](https://github.com/bosonprotocol/core-components/compare/[email protected]@1.5.2) (2023-10-03)

**Note:** Version bump only for package meta-tx-gateway
Expand Down
4 changes: 2 additions & 2 deletions e2e/meta-tx-gateway/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "meta-tx-gateway",
"version": "1.6.0-alpha.2",
"version": "1.6.0",
"description": "",
"main": "index.js",
"private": true,
Expand All @@ -23,7 +23,7 @@
},
"homepage": "https://github.com/bosonprotocol/core-components#readme",
"dependencies": {
"@bosonprotocol/common": "^1.24.0-alpha.15",
"@bosonprotocol/common": "^1.24.0",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"ethers": "^5.7.0",
Expand Down
2 changes: 1 addition & 1 deletion e2e/tests/accounts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ describe("CoreSDK - accounts", () => {
let exist = before.some((s) => s.id === seller.id);
expect(exist).toBe(false);
const after = await coreSDK.getSellers();
expect(after.length).toEqual(before.length + 1);
expect(after.length).toBeGreaterThan(before.length);
exist = after.some((s) => s.id === seller.id);
expect(exist).toBe(true);
});
Expand Down
38 changes: 19 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.24.0](https://github.com/bosonprotocol/core-components/compare/@bosonprotocol/[email protected]...@bosonprotocol/[email protected]) (2023-12-05)


### Features

* add erc165SupportsInterface function to coreSDK ([#596](https://github.com/bosonprotocol/core-components/issues/596)) ([6a5b777](https://github.com/bosonprotocol/core-components/commit/6a5b777ef7ed6920daf3e0242cb073093893ade5))
* extend check offer condition to check if a buyer can commit to a token gated offer ([#592](https://github.com/bosonprotocol/core-components/issues/592)) ([16b69ec](https://github.com/bosonprotocol/core-components/commit/16b69ecd91370c76cddd2452999cfa8ed751c790))
* redemption widget - manage callbacks ([#594](https://github.com/bosonprotocol/core-components/issues/594)) ([c56c682](https://github.com/bosonprotocol/core-components/commit/c56c6825c7097c6c4fd3aa3eaa6699395ef824b1))





## [1.23.2](https://github.com/bosonprotocol/core-components/compare/@bosonprotocol/[email protected]...@bosonprotocol/[email protected]) (2023-10-03)

**Note:** Version bump only for package @bosonprotocol/common
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bosonprotocol/common",
"version": "1.24.0-alpha.15",
"version": "1.24.0",
"description": "Common configs, types, interfaces and utilities shared by the core components of the Boson Protocol.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand Down
20 changes: 20 additions & 0 deletions packages/core-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.33.0](https://github.com/bosonprotocol/core-components/compare/@bosonprotocol/[email protected]...@bosonprotocol/[email protected]) (2023-12-05)


### Bug Fixes

* checkTokenGatedCondition and typescript compilation warning ([#608](https://github.com/bosonprotocol/core-components/issues/608)) ([e466832](https://github.com/bosonprotocol/core-components/commit/e46683256877ef831e0897cf5e00d3249534a2dc))


### Features

* add ConditionalCommitAuthorizedEventLog ([#593](https://github.com/bosonprotocol/core-components/issues/593)) ([c799b27](https://github.com/bosonprotocol/core-components/commit/c799b2744a8c0f60401cf8c0d8df0ecf3fe5a231))
* add erc165SupportsInterface function to coreSDK ([#596](https://github.com/bosonprotocol/core-components/issues/596)) ([6a5b777](https://github.com/bosonprotocol/core-components/commit/6a5b777ef7ed6920daf3e0242cb073093893ade5))
* extend check offer condition to check if a buyer can commit to a token gated offer ([#592](https://github.com/bosonprotocol/core-components/issues/592)) ([16b69ec](https://github.com/bosonprotocol/core-components/commit/16b69ecd91370c76cddd2452999cfa8ed751c790))
* integrate finance widget ([#609](https://github.com/bosonprotocol/core-components/issues/609)) ([79983d1](https://github.com/bosonprotocol/core-components/commit/79983d15468e86f71bd6e15b5154a7b21fe24798))
* update contract offers no expiration ([#616](https://github.com/bosonprotocol/core-components/issues/616)) ([3954ade](https://github.com/bosonprotocol/core-components/commit/3954adea5a13242d8837cf71dab81f7be0498362))





# [1.32.0](https://github.com/bosonprotocol/core-components/compare/@bosonprotocol/[email protected]...@bosonprotocol/[email protected]) (2023-10-03)


Expand Down
4 changes: 2 additions & 2 deletions packages/core-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bosonprotocol/core-sdk",
"version": "1.33.0-alpha.15",
"version": "1.33.0",
"description": "Facilitates interaction with the contracts and subgraphs of the Boson Protocol",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand Down Expand Up @@ -33,7 +33,7 @@
"access": "public"
},
"dependencies": {
"@bosonprotocol/common": "^1.24.0-alpha.15",
"@bosonprotocol/common": "^1.24.0",
"@ethersproject/abi": "^5.5.0",
"@ethersproject/address": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/eth-connect-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.5.10](https://github.com/bosonprotocol/core-components/compare/@bosonprotocol/[email protected]...@bosonprotocol/[email protected]) (2023-12-05)

**Note:** Version bump only for package @bosonprotocol/eth-connect-sdk





## [1.5.9](https://github.com/bosonprotocol/core-components/compare/@bosonprotocol/[email protected]...@bosonprotocol/[email protected]) (2023-10-03)

**Note:** Version bump only for package @bosonprotocol/eth-connect-sdk
Expand Down
4 changes: 2 additions & 2 deletions packages/eth-connect-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bosonprotocol/eth-connect-sdk",
"version": "1.5.10-alpha.15",
"version": "1.5.10",
"description": "Implementation of the Web3LibAdapter interface and contract abstractions targeting eth-connect for the Boson Protocol.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand Down Expand Up @@ -30,7 +30,7 @@
"access": "public"
},
"dependencies": {
"@bosonprotocol/common": "^1.24.0-alpha.15"
"@bosonprotocol/common": "^1.24.0"
},
"devDependencies": {
"eslint": "^8.10.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/ethers-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.12.10](https://github.com/bosonprotocol/core-components/compare/@bosonprotocol/[email protected]...@bosonprotocol/[email protected]) (2023-12-05)

**Note:** Version bump only for package @bosonprotocol/ethers-sdk





## [1.12.9](https://github.com/bosonprotocol/core-components/compare/@bosonprotocol/[email protected]...@bosonprotocol/[email protected]) (2023-10-03)

**Note:** Version bump only for package @bosonprotocol/ethers-sdk
Expand Down
4 changes: 2 additions & 2 deletions packages/ethers-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bosonprotocol/ethers-sdk",
"version": "1.12.10-alpha.15",
"version": "1.12.10",
"description": "Implementation of the Web3LibAdapter interface and contract abstractions targeting ethers for the Boson Protocol.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand Down Expand Up @@ -31,7 +31,7 @@
"access": "public"
},
"dependencies": {
"@bosonprotocol/common": "^1.24.0-alpha.15"
"@bosonprotocol/common": "^1.24.0"
},
"devDependencies": {
"@typechain/ethers-v5": "^9.0.0",
Expand Down
30 changes: 30 additions & 0 deletions packages/react-kit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,36 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.22.0](https://github.com/bosonprotocol/core-components/compare/@bosonprotocol/[email protected]...@bosonprotocol/[email protected]) (2023-12-05)


### Bug Fixes

* checkTokenGatedCondition and typescript compilation warning ([#608](https://github.com/bosonprotocol/core-components/issues/608)) ([e466832](https://github.com/bosonprotocol/core-components/commit/e46683256877ef831e0897cf5e00d3249534a2dc))
* disconnect and reset flow ([#588](https://github.com/bosonprotocol/core-components/issues/588)) ([22c4b03](https://github.com/bosonprotocol/core-components/commit/22c4b03654ca7d6b1a48d5d40e4fa7f33dfd603b))
* disconnect should use same wagmi than useConfig+ upgrade wagmi and rainbowkit ([#597](https://github.com/bosonprotocol/core-components/issues/597)) ([9992101](https://github.com/bosonprotocol/core-components/commit/999210150fb490455e1f15bdd307537d7b0221e3))
* eth-reverse-reason ([#603](https://github.com/bosonprotocol/core-components/issues/603)) ([f7884e2](https://github.com/bosonprotocol/core-components/commit/f7884e236b5f700e2603fe06a17704fb77f0100a))
* excessive calls to infura provider (querying eth_chainId) ([#619](https://github.com/bosonprotocol/core-components/issues/619)) ([112bdce](https://github.com/bosonprotocol/core-components/commit/112bdce0b81ebd865ec61c3cc7017d302273e10a))
* use offers backed ([#604](https://github.com/bosonprotocol/core-components/issues/604)) ([0563904](https://github.com/bosonprotocol/core-components/commit/05639048c9183619b0c5f005b059f89e8323fed1))


### Features

* add code from eth-reverse-reason dependency ([#601](https://github.com/bosonprotocol/core-components/issues/601)) ([571bf58](https://github.com/bosonprotocol/core-components/commit/571bf58f05a0f86459a5680709b268dfef88342e))
* add redemption widget parameters to allow several usecases ([#587](https://github.com/bosonprotocol/core-components/issues/587)) ([116640e](https://github.com/bosonprotocol/core-components/commit/116640e3c649a39d6986f65bbf1750ff5eb2ed6e))
* add tx response to on error handlers in ctas ([#599](https://github.com/bosonprotocol/core-components/issues/599)) ([b7bbf37](https://github.com/bosonprotocol/core-components/commit/b7bbf379b9c819e9b719eb98ecd4756a3e54ec99))
* disable redeem confirmation based on supported or unsupported c… ([#589](https://github.com/bosonprotocol/core-components/issues/589)) ([81e3456](https://github.com/bosonprotocol/core-components/commit/81e3456e73b6487b692b2195c4720399337f051f))
* display sucess message after cancelling exchange ([#586](https://github.com/bosonprotocol/core-components/issues/586)) ([425c93c](https://github.com/bosonprotocol/core-components/commit/425c93ce4d0e7ac537991f73294bf320364c8859))
* extend check offer condition to check if a buyer can commit to a token gated offer ([#592](https://github.com/bosonprotocol/core-components/issues/592)) ([16b69ec](https://github.com/bosonprotocol/core-components/commit/16b69ecd91370c76cddd2452999cfa8ed751c790))
* improve errors ([#600](https://github.com/bosonprotocol/core-components/issues/600)) ([951ffa1](https://github.com/bosonprotocol/core-components/commit/951ffa128746b3d24fd85f9b401ba53dbe9688d5))
* integrate finance widget ([#609](https://github.com/bosonprotocol/core-components/issues/609)) ([79983d1](https://github.com/bosonprotocol/core-components/commit/79983d15468e86f71bd6e15b5154a7b21fe24798))
* redemption widget - manage callbacks ([#594](https://github.com/bosonprotocol/core-components/issues/594)) ([c56c682](https://github.com/bosonprotocol/core-components/commit/c56c6825c7097c6c4fd3aa3eaa6699395ef824b1))
* redemption widget add handlers ([#605](https://github.com/bosonprotocol/core-components/issues/605)) ([a40cd39](https://github.com/bosonprotocol/core-components/commit/a40cd3966d8d3c2c7127c64b3d797d8efd587d3d))





# [0.21.0](https://github.com/bosonprotocol/core-components/compare/@bosonprotocol/[email protected]...@bosonprotocol/[email protected]) (2023-10-10)


Expand Down
6 changes: 3 additions & 3 deletions packages/react-kit/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@bosonprotocol/react-kit",
"description": "React toolkit with smart components and hooks for building on top of the Boson Protocol.",
"version": "0.22.0-alpha.18",
"version": "0.22.1-alpha.0",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
Expand All @@ -15,8 +15,8 @@
"license": "Apache-2.0",
"dependencies": {
"@bosonprotocol/chat-sdk": "^1.3.1-alpha.9",
"@bosonprotocol/core-sdk": "^1.33.0-alpha.15",
"@bosonprotocol/ethers-sdk": "^1.12.10-alpha.15",
"@bosonprotocol/core-sdk": "^1.33.0",
"@bosonprotocol/ethers-sdk": "^1.12.10",
"@bosonprotocol/ipfs-storage": "^1.10.10",
"@davatar/react": "1.11.1",
"@ethersproject/units": "5.6.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-kit/src/components/avatar/SellerID.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const SellerInfo = styled.div<{ $withBosonStyles?: boolean }>`
`};
font-style: normal;
font-size: 14px;
font-size: 0.875rem;
font-weight: 600;
line-height: 18px;
`;
Expand Down
Loading

0 comments on commit 5b5e26c

Please sign in to comment.