Skip to content

Commit bddfde2

Browse files
chore: bumps package versions
1 parent 820cc38 commit bddfde2

12 files changed

Lines changed: 83 additions & 25 deletions

File tree

.changeset/incentives-kind-sync.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

.changeset/ninety-regions-yell.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

packages/client/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# @aave/client
22

3+
## 0.12.0
4+
5+
### Minor Changes
6+
7+
- b9220ee: Sync GraphQL schema with V3 backend and add the `kind` discriminator on points incentives.
8+
9+
- `SupplyPointsIncentive` / `BorrowPointsIncentive` now expose `kind: PointsProgramKind!` (`CAMPAIGN` for Merkl-backed programs, `LOYALTY` for fixed-multiplier partner programs like Ethena, Ether.fi). For `LOYALTY`, `dailyPoints` / `pointsPerThousandUsd` are always null.
10+
- New fragments: `MerklSupplyIncentive`, `MerklBorrowIncentive`, `SupplyPointsIncentive`, `BorrowPointsIncentive`, `IncentiveCriteria`, `PointsProgram`, plus extended Merit fragments (`actionKey`, `rewardTokenAddress`, `rewardTokenSymbol`, `customMessage`, `customForumLink`, `selfApr`).
11+
- New canonical `userRewards` query (supersedes `userMeritRewards`).
12+
- `RewardId` scalar mapped to a branded string in `@aave/types`.
13+
14+
- 0384b0f: Add stkGHO migration action support
15+
16+
### Patch Changes
17+
18+
- Updated dependencies [b9220ee]
19+
- Updated dependencies [0384b0f]
20+
- @aave/graphql@0.13.0
21+
- @aave/types@0.3.0
22+
- @aave/core@0.1.1
23+
324
## 0.11.0
425

526
### Minor Changes

packages/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aave/client",
3-
"version": "0.11.0",
3+
"version": "0.12.0",
44
"description": "The official JavaScript client for the Aave API",
55
"repository": {
66
"directory": "packages/client",

packages/core/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @aave/core
22

3+
## 0.1.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [b9220ee]
8+
- @aave/types@0.3.0
9+
310
## 0.1.0
411

512
### Minor Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aave/core",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "The shared core across Aave SDKs.",
55
"repository": {
66
"directory": "packages/core",

packages/graphql/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# @aave/graphql
22

3+
## 0.13.0
4+
5+
### Minor Changes
6+
7+
- b9220ee: Sync GraphQL schema with V3 backend and add the `kind` discriminator on points incentives.
8+
9+
- `SupplyPointsIncentive` / `BorrowPointsIncentive` now expose `kind: PointsProgramKind!` (`CAMPAIGN` for Merkl-backed programs, `LOYALTY` for fixed-multiplier partner programs like Ethena, Ether.fi). For `LOYALTY`, `dailyPoints` / `pointsPerThousandUsd` are always null.
10+
- New fragments: `MerklSupplyIncentive`, `MerklBorrowIncentive`, `SupplyPointsIncentive`, `BorrowPointsIncentive`, `IncentiveCriteria`, `PointsProgram`, plus extended Merit fragments (`actionKey`, `rewardTokenAddress`, `rewardTokenSymbol`, `customMessage`, `customForumLink`, `selfApr`).
11+
- New canonical `userRewards` query (supersedes `userMeritRewards`).
12+
- `RewardId` scalar mapped to a branded string in `@aave/types`.
13+
14+
- 0384b0f: Add stkGHO migration action support
15+
16+
### Patch Changes
17+
18+
- Updated dependencies [b9220ee]
19+
- @aave/types@0.3.0
20+
321
## 0.12.0
422

523
### Minor Changes

packages/graphql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aave/graphql",
3-
"version": "0.12.0",
3+
"version": "0.13.0",
44
"description": "GraphQL bindings for the Aave API",
55
"repository": {
66
"directory": "packages/graphql",

packages/react/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# @aave/react
22

3+
## 0.10.0
4+
5+
### Minor Changes
6+
7+
- b9220ee: Sync GraphQL schema with V3 backend and add the `kind` discriminator on points incentives.
8+
9+
- `SupplyPointsIncentive` / `BorrowPointsIncentive` now expose `kind: PointsProgramKind!` (`CAMPAIGN` for Merkl-backed programs, `LOYALTY` for fixed-multiplier partner programs like Ethena, Ether.fi). For `LOYALTY`, `dailyPoints` / `pointsPerThousandUsd` are always null.
10+
- New fragments: `MerklSupplyIncentive`, `MerklBorrowIncentive`, `SupplyPointsIncentive`, `BorrowPointsIncentive`, `IncentiveCriteria`, `PointsProgram`, plus extended Merit fragments (`actionKey`, `rewardTokenAddress`, `rewardTokenSymbol`, `customMessage`, `customForumLink`, `selfApr`).
11+
- New canonical `userRewards` query (supersedes `userMeritRewards`).
12+
- `RewardId` scalar mapped to a branded string in `@aave/types`.
13+
14+
- 0384b0f: Add stkGHO migration action support
15+
16+
### Patch Changes
17+
18+
- Updated dependencies [b9220ee]
19+
- Updated dependencies [0384b0f]
20+
- @aave/graphql@0.13.0
21+
- @aave/client@0.12.0
22+
- @aave/types@0.3.0
23+
324
## 0.9.1
425

526
### Patch Changes

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aave/react",
3-
"version": "0.9.1",
3+
"version": "0.10.0",
44
"description": "The official React bindings for the Aave Protocol",
55
"repository": {
66
"directory": "packages/react",

0 commit comments

Comments
 (0)