Add yarn version plugin (#524)

* Add yarn version and bump minor versions

* Update Changelog

* Include more files in bundle

* Remove yarn version artifact for now

Co-authored-by: nambrot <nambrot@googlemail.com>
pull/547/head
Yorke Rhodes 3 years ago committed by GitHub
parent 165f60e622
commit 5e639a2f1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 550
      .yarn/plugins/@yarnpkg/plugin-version.cjs
  2. 2
      .yarnrc.yml
  3. 11
      solidity/app/package.json
  4. 9
      solidity/core/package.json
  5. 13
      typescript/deploy/package.json
  6. 15
      typescript/hardhat/package.json
  7. 8
      typescript/infra/package.json
  8. 22
      typescript/sdk/CHANGELOG.md
  9. 11
      typescript/sdk/package.json
  10. 7
      typescript/utils/package.json
  11. 38
      yarn.lock

File diff suppressed because one or more lines are too long

@ -5,5 +5,7 @@ plugins:
spec: "@yarnpkg/plugin-workspace-tools"
- path: .yarn/plugins/@yarnpkg/plugin-outdated.cjs
spec: "https://mskelton.dev/yarn-outdated/v3"
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs
spec: "@yarnpkg/plugin-version"
yarnPath: .yarn/releases/yarn-3.2.0.cjs

@ -1,10 +1,10 @@
{
"name": "@abacus-network/app",
"description": "Solidity contracts for Abacus apps",
"version": "0.1.1",
"version": "0.2.1-alpha3",
"dependencies": {
"@abacus-network/core": "^0.1.1",
"@abacus-network/utils": "^0.1.1",
"@abacus-network/core": "^0.2.1-alpha3",
"@abacus-network/utils": "^0.2.1-alpha3",
"@openzeppelin/contracts-upgradeable": "^4.5.0"
},
"devDependencies": {
@ -28,6 +28,11 @@
"directories": {
"test": "test"
},
"files": [
"/dist",
"/contracts",
"/interfaces"
],
"homepage": "https://www.useabacus.network",
"keywords": [
"Abacus",

@ -1,9 +1,9 @@
{
"name": "@abacus-network/core",
"description": "Core solidity contracts for Abacus",
"version": "0.1.1",
"version": "0.2.1-alpha3",
"dependencies": {
"@abacus-network/utils": "^0.1.1",
"@abacus-network/utils": "^0.2.1-alpha3",
"@openzeppelin/contracts": "^4.6.0",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"@summa-tx/memview-sol": "^2.0.0"
@ -28,6 +28,11 @@
"directories": {
"test": "test"
},
"files": [
"/dist",
"/contracts",
"/interfaces"
],
"homepage": "https://www.useabacus.network",
"keywords": [
"Abacus",

@ -1,11 +1,11 @@
{
"name": "@abacus-network/deploy",
"description": "Deploy tools for the Abacus network",
"version": "0.1.1",
"version": "0.2.1-alpha3",
"dependencies": {
"@abacus-network/core": "^0.1.1",
"@abacus-network/sdk": "^0.1.1",
"@abacus-network/utils": "^0.1.1",
"@abacus-network/core": "^0.2.1-alpha3",
"@abacus-network/sdk": "^0.2.1-alpha3",
"@abacus-network/utils": "^0.2.1-alpha3",
"@types/debug": "^4.1.7",
"@types/yargs": "^17.0.10",
"axios": "^0.21.3",
@ -33,5 +33,8 @@
"check": "tsc --noEmit",
"prettier": "prettier --write ./src"
},
"types": "dist/src/index.d.ts"
"types": "dist/src/index.d.ts",
"files": [
"/dist"
]
}

@ -1,12 +1,12 @@
{
"name": "@abacus-network/hardhat",
"description": "Hardhat related tools for the Abacus network",
"version": "0.1.1",
"version": "0.2.1-alpha3",
"dependencies": {
"@abacus-network/core": "^0.1.1",
"@abacus-network/deploy": "^0.1.1",
"@abacus-network/sdk": "^0.1.1",
"@abacus-network/utils": "^0.1.1",
"@abacus-network/core": "^0.2.1-alpha3",
"@abacus-network/deploy": "^0.2.1-alpha3",
"@abacus-network/sdk": "^0.2.1-alpha3",
"@abacus-network/utils": "^0.2.1-alpha3",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"ethereum-waffle": "^3.2.2",
@ -35,5 +35,8 @@
"prettier": "prettier --write ./src ./test",
"test": "hardhat test"
},
"types": "dist/index.d.ts"
"types": "dist/index.d.ts",
"files": [
"/dist"
]
}

@ -1,11 +1,11 @@
{
"name": "@abacus-network/infra",
"description": "Infrastructure utilities for the Abacus Network",
"version": "0.1.1",
"version": "0.2.1-alpha3",
"dependencies": {
"@abacus-network/core": "^0.1.1",
"@abacus-network/deploy": "^0.1.1",
"@abacus-network/sdk": "^0.1.1",
"@abacus-network/core": "^0.2.1-alpha3",
"@abacus-network/deploy": "^0.2.1-alpha3",
"@abacus-network/sdk": "^0.2.1-alpha3",
"@aws-sdk/client-iam": "^3.74.0",
"@aws-sdk/client-kms": "3.48.0",
"@aws-sdk/client-s3": "^3.74.0",

@ -1,13 +1,21 @@
# Changelog
## Unreleased
## 0.2.0
- [Strongly type InterchainGasCalculator](https://github.com/abacus-network/abacus-monorepo/pull/433): Adds type guards and uses chainNames instead of domain IDs in `InterchainGasCalculator`
- Renamed `MultiProvider`'s `getDomainConnection` to `getChainConnection`
- Renamed `MultiGeneric`'s `domainMap` to `chainMap`
- Rename the mapping from chain names to domain IDs from `domains` to `chainMetadata`
- Removes the `AbacusCore` argument in the `RouterDeployer` constructor, and instead adds an optional `debug` logger argument
- Unify deploy and app abstractions by @yorhodes in https://github.com/abacus-network/abacus-monorepo/pull/507
- Remove AbacusCore as an argument to RouterDeployer https://github.com/abacus-network/abacus-monorepo/pull/469
- Dedupe hardhat and core deploy https://github.com/abacus-network/abacus-monorepo/pull/449
- Remove Controller from SDK package https://github.com/abacus-network/abacus-monorepo/pull/497
- Add `debug` logging library https://github.com/abacus-network/abacus-monorepo/pull/457
- Consistent naming of chain and domain https://github.com/abacus-network/abacus-monorepo/pull/446
- Strongly type GasCalculator https://github.com/abacus-network/abacus-monorepo/pull/433
- Add default ChainConnection configs https://github.com/abacus-network/abacus-monorepo/pull/434
Minor
- Bump typechain version to fix bug by @yorhodes in https://github.com/abacus-network/abacus-monorepo/pull/517
- Remove `TransactionConfig` https://github.com/abacus-network/abacus-monorepo/pull/465/files
## 0.1.1
Initial Alpha Release of the SDK
- Initial Alpha Release of the SDK

@ -1,10 +1,10 @@
{
"name": "@abacus-network/sdk",
"description": "The official SDK for the Abacus Network",
"version": "0.1.1",
"version": "0.2.1-alpha3",
"dependencies": {
"@abacus-network/core": "^0.1.1",
"@abacus-network/utils": "^0.1.1",
"@abacus-network/core": "^0.2.1-alpha3",
"@abacus-network/utils": "^0.2.1-alpha3",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"celo-ethers-provider": "^0.0.0",
@ -35,5 +35,8 @@
"prettier": "prettier --write ./src ./test",
"test": "mocha --config .mocharc.json './test/**/*.test.ts'"
},
"types": "dist/index.d.ts"
"types": "dist/index.d.ts",
"files": [
"/dist"
]
}

@ -1,7 +1,7 @@
{
"name": "@abacus-network/utils",
"description": "General utilities for the Abacus network",
"version": "0.1.1",
"version": "0.2.1-alpha3",
"dependencies": {
"chai": "^4.3.0",
"ethers": "^5.4.7"
@ -21,5 +21,8 @@
"check": "tsc --noEmit",
"prettier": "prettier --write ./src"
},
"types": "dist/index.d.ts"
"types": "dist/index.d.ts",
"files": [
"/dist"
]
}

@ -9,8 +9,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@abacus-network/app@workspace:solidity/app"
dependencies:
"@abacus-network/core": ^0.1.1
"@abacus-network/utils": ^0.1.1
"@abacus-network/core": ^0.2.1-alpha3
"@abacus-network/utils": ^0.2.1-alpha3
"@nomiclabs/hardhat-ethers": ^2.0.1
"@nomiclabs/hardhat-waffle": ^2.0.1
"@openzeppelin/contracts-upgradeable": ^4.5.0
@ -31,11 +31,11 @@ __metadata:
languageName: unknown
linkType: soft
"@abacus-network/core@^0.1.1, @abacus-network/core@workspace:solidity/core":
"@abacus-network/core@^0.2.1-alpha3, @abacus-network/core@workspace:solidity/core":
version: 0.0.0-use.local
resolution: "@abacus-network/core@workspace:solidity/core"
dependencies:
"@abacus-network/utils": ^0.1.1
"@abacus-network/utils": ^0.2.1-alpha3
"@nomiclabs/hardhat-ethers": ^2.0.1
"@nomiclabs/hardhat-waffle": ^2.0.1
"@openzeppelin/contracts": ^4.6.0
@ -57,13 +57,13 @@ __metadata:
languageName: unknown
linkType: soft
"@abacus-network/deploy@^0.1.1, @abacus-network/deploy@workspace:typescript/deploy":
"@abacus-network/deploy@^0.2.1-alpha3, @abacus-network/deploy@workspace:typescript/deploy":
version: 0.0.0-use.local
resolution: "@abacus-network/deploy@workspace:typescript/deploy"
dependencies:
"@abacus-network/core": ^0.1.1
"@abacus-network/sdk": ^0.1.1
"@abacus-network/utils": ^0.1.1
"@abacus-network/core": ^0.2.1-alpha3
"@abacus-network/sdk": ^0.2.1-alpha3
"@abacus-network/utils": ^0.2.1-alpha3
"@types/debug": ^4.1.7
"@types/node": ^16.9.1
"@types/yargs": ^17.0.10
@ -80,10 +80,10 @@ __metadata:
version: 0.0.0-use.local
resolution: "@abacus-network/hardhat@workspace:typescript/hardhat"
dependencies:
"@abacus-network/core": ^0.1.1
"@abacus-network/deploy": ^0.1.1
"@abacus-network/sdk": ^0.1.1
"@abacus-network/utils": ^0.1.1
"@abacus-network/core": ^0.2.1-alpha3
"@abacus-network/deploy": ^0.2.1-alpha3
"@abacus-network/sdk": ^0.2.1-alpha3
"@abacus-network/utils": ^0.2.1-alpha3
"@nomiclabs/hardhat-ethers": ^2.0.5
"@nomiclabs/hardhat-waffle": ^2.0.2
ethereum-waffle: ^3.2.2
@ -98,9 +98,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@abacus-network/infra@workspace:typescript/infra"
dependencies:
"@abacus-network/core": ^0.1.1
"@abacus-network/deploy": ^0.1.1
"@abacus-network/sdk": ^0.1.1
"@abacus-network/core": ^0.2.1-alpha3
"@abacus-network/deploy": ^0.2.1-alpha3
"@abacus-network/sdk": ^0.2.1-alpha3
"@aws-sdk/client-iam": ^3.74.0
"@aws-sdk/client-kms": 3.48.0
"@aws-sdk/client-s3": ^3.74.0
@ -143,12 +143,12 @@ __metadata:
languageName: unknown
linkType: soft
"@abacus-network/sdk@^0.1.1, @abacus-network/sdk@workspace:typescript/sdk":
"@abacus-network/sdk@^0.2.1-alpha3, @abacus-network/sdk@workspace:typescript/sdk":
version: 0.0.0-use.local
resolution: "@abacus-network/sdk@workspace:typescript/sdk"
dependencies:
"@abacus-network/core": ^0.1.1
"@abacus-network/utils": ^0.1.1
"@abacus-network/core": ^0.2.1-alpha3
"@abacus-network/utils": ^0.2.1-alpha3
"@ethersproject/bignumber": ^5.5.0
"@ethersproject/bytes": ^5.5.0
"@types/node": ^16.9.1
@ -163,7 +163,7 @@ __metadata:
languageName: unknown
linkType: soft
"@abacus-network/utils@^0.1.1, @abacus-network/utils@workspace:typescript/utils":
"@abacus-network/utils@^0.2.1-alpha3, @abacus-network/utils@workspace:typescript/utils":
version: 0.0.0-use.local
resolution: "@abacus-network/utils@workspace:typescript/utils"
dependencies:

Loading…
Cancel
Save