Skip to content

Commit

Permalink
chore(releng) bump version to 19.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dsawali committed Mar 7, 2024
1 parent 3556aaf commit 6a8721a
Show file tree
Hide file tree
Showing 41 changed files with 270 additions and 231 deletions.
10 changes: 5 additions & 5 deletions apps/taquito-test-dapp/package.json
@@ -1,7 +1,7 @@
{
"name": "taquito-test-dapp-vite",
"private": true,
"version": "19.1.0-RC.2",
"version": "19.1.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -25,10 +25,10 @@
},
"dependencies": {
"@airgap/beacon-sdk": "4.1.2",
"@taquito/beacon-wallet": "^19.1.0-RC.2",
"@taquito/core": "^19.1.0-RC.2",
"@taquito/taquito": "^19.1.0-RC.2",
"@taquito/utils": "^19.1.0-RC.2",
"@taquito/beacon-wallet": "^19.1.0",
"@taquito/core": "^19.1.0",
"@taquito/taquito": "^19.1.0",
"@taquito/utils": "^19.1.0",
"buffer": "^6.0.3",
"svelte-select": "^5.7.0",
"vite-compatible-readable-stream": "^3.6.1"
Expand Down
39 changes: 39 additions & 0 deletions docs/version.md
Expand Up @@ -2,6 +2,45 @@
title: Versions
author: Jev Bjorsell
---

# Taquito v19.1.0

**Potential Breaking Changes**:
- `@taquito/rpc` - replaced `OperationBalanceUpdatesItem` in favour of `OperationMetadataBalanceUpdates` #2817 #2827
- `@taquito/taquito` - Several optimizations made to fees and estimation in Taquito #2532
- removed `DEFAULT_GAS_LIMIT`, `DEFAULT_STORAGE_LIMIT`, `DEFAULT_FEE` in favour of `getRevealFee`, more details
- Added a small buffer to `gasLimit` (varying depending on operations)
- Reduced `suggestedFeeMutez` buffer from 100 to 20 per op
- Refined `gasLimit` and `storageLimit` according to `simulate_operation` results from the octez-client

## Summary

### New Features
- `@taquito/taquito` - Added smart rollup execute outbox message operation #2321 (please note that this feature is not fully tested due to some parts requiring the use of `octez-client`)
`@taquito/beacon-wallet` - added beacon-wallet bundle script to output a `.zip` bundle for browser only environments #2744

### Improvement
- `@taquito/michelson-encoder` - replaced references of `[['unit']]` to be `UnitValue` instead [PR#2813](https://github.com/ecadlabs/taquito/pull/2813)
- `@taquito/taquito` - added 20 storageLimit buffer to prevent `storage_exhausted` error #2854
- `@taquito/taquito` - removed the storageLimit cap mechanism #2855

### Documentation
- Added michel-codec to Typedoc documentation #2806
- Updated `docs` and `examples` to use `methodsObject` instead of `methods` wherever needed [PR#2813](https://github.com/ecadlabs/taquito/pull/2813)
- Removed `giganode` references from Taquito documentation [PR#2813](https://github.com/ecadlabs/taquito/pull/2813)

### Deprecation
- `@taquito/utils` - Deprecated several util methods and updated their names into something more representative. Slight improvements to existing util methods #2372 #2274
- `@taquito/taquito` - Deprecated `methods` in favour of `methodsObject`. `methodsObject`'s syntax is more consistent with storage params, supports all Michelson data types, and will be maintained going forward #2813

### Internals
- Updated various dependencies in Taquito website and the Test DApp (Sass, Firebase, Algoliasearch, Dotenv) [PR#2834](https://github.com/ecadlabs/taquito/pull/2834)
- Updated integration tests to use network types instead of hard coding RPC URL #2164
- Organized integration tests into more meaningful subfolders and renamed some files for brevity #2203
- Resolved dependabot updates [PR#2849](https://github.com/ecadlabs/taquito/pull/2849)
- Added confirmation blocks on older integration tests [PR#2847](https://github.com/ecadlabs/taquito/pull/2847)
- Added small buffer to operation reveal fee fixed value [PR#2848](https://github.com/ecadlabs/taquito/pull/2848)

# Taquito v19.0.2

### Bug Fixes
Expand Down
22 changes: 11 additions & 11 deletions example/package.json
@@ -1,7 +1,7 @@
{
"name": "@taquito/example",
"private": true,
"version": "19.1.0-RC.2",
"version": "19.1.0",
"scripts": {
"example": "node -r ts-node/register --preserve-symlinks example-node.ts",
"example:activation": "node -r ts-node/register --preserve-symlinks example-activate.ts",
Expand Down Expand Up @@ -42,16 +42,16 @@
},
"dependencies": {
"@ledgerhq/hw-transport-node-hid": "^6.27.21",
"@taquito/ledger-signer": "^19.1.0-RC.2",
"@taquito/local-forging": "^19.1.0-RC.2",
"@taquito/michel-codec": "^19.1.0-RC.2",
"@taquito/michelson-encoder": "^19.1.0-RC.2",
"@taquito/rpc": "^19.1.0-RC.2",
"@taquito/sapling": "^19.1.0-RC.2",
"@taquito/signer": "^19.1.0-RC.2",
"@taquito/taquito": "^19.1.0-RC.2",
"@taquito/tzip16": "^19.1.0-RC.2",
"@taquito/utils": "^19.1.0-RC.2",
"@taquito/ledger-signer": "^19.1.0",
"@taquito/local-forging": "^19.1.0",
"@taquito/michel-codec": "^19.1.0",
"@taquito/michelson-encoder": "^19.1.0",
"@taquito/rpc": "^19.1.0",
"@taquito/sapling": "^19.1.0",
"@taquito/signer": "^19.1.0",
"@taquito/taquito": "^19.1.0",
"@taquito/tzip16": "^19.1.0",
"@taquito/utils": "^19.1.0",
"bignumber.js": "^9.1.2"
},
"devDependencies": {
Expand Down
30 changes: 15 additions & 15 deletions integration-tests/package.json
Expand Up @@ -12,26 +12,26 @@
"originate-known-contracts": "node -r ts-node/register originate-known-contracts.ts",
"originate-known-contracts-and-run-test": "node -r ts-node/register originate-known-contracts.ts && jest"
},
"version": "19.1.0-RC.2",
"version": "19.1.0",
"dependencies": {
"@ledgerhq/devices": "8.0.7",
"@ledgerhq/hw-transport": "6.28.8",
"@ledgerhq/hw-transport-node-hid": "6.27.21",
"@ledgerhq/hw-transport-node-hid-noevents": "6.27.19",
"@taquito/contracts-library": "^19.1.0-RC.2",
"@taquito/core": "^19.1.0-RC.2",
"@taquito/http-utils": "^19.1.0-RC.2",
"@taquito/local-forging": "^19.1.0-RC.2",
"@taquito/michel-codec": "^19.1.0-RC.2",
"@taquito/michelson-encoder": "^19.1.0-RC.2",
"@taquito/remote-signer": "^19.1.0-RC.2",
"@taquito/rpc": "^19.1.0-RC.2",
"@taquito/sapling": "^19.1.0-RC.2",
"@taquito/signer": "^19.1.0-RC.2",
"@taquito/taquito": "^19.1.0-RC.2",
"@taquito/tzip12": "^19.1.0-RC.2",
"@taquito/tzip16": "^19.1.0-RC.2",
"@taquito/utils": "^19.1.0-RC.2",
"@taquito/contracts-library": "^19.1.0",
"@taquito/core": "^19.1.0",
"@taquito/http-utils": "^19.1.0",
"@taquito/local-forging": "^19.1.0",
"@taquito/michel-codec": "^19.1.0",
"@taquito/michelson-encoder": "^19.1.0",
"@taquito/remote-signer": "^19.1.0",
"@taquito/rpc": "^19.1.0",
"@taquito/sapling": "^19.1.0",
"@taquito/signer": "^19.1.0",
"@taquito/taquito": "^19.1.0",
"@taquito/tzip12": "^19.1.0",
"@taquito/tzip16": "^19.1.0",
"@taquito/utils": "^19.1.0",
"bignumber.js": "^9.1.2",
"bip39": "3.1.0",
"blakejs": "^1.2.1"
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
@@ -1,4 +1,4 @@
{
"useNx": true,
"version": "19.1.0-RC.2"
"version": "19.1.0"
}

0 comments on commit 6a8721a

Please sign in to comment.