Skip to content

Commit

Permalink
chore(releng) bump version to 17.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dsawali committed Dec 13, 2023
1 parent ff6c3b6 commit bcebcae
Show file tree
Hide file tree
Showing 122 changed files with 1,680 additions and 920 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": "17.5.0-beta-RC.1",
"version": "17.5.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -25,10 +25,10 @@
},
"dependencies": {
"@airgap/beacon-sdk": "4.0.12",
"@taquito/beacon-wallet": "^17.5.0-beta-RC.1",
"@taquito/core": "^17.5.0-beta-RC.1",
"@taquito/taquito": "^17.5.0-beta-RC.1",
"@taquito/utils": "^17.5.0-beta-RC.1",
"@taquito/beacon-wallet": "^17.5.0",
"@taquito/core": "^17.5.0",
"@taquito/taquito": "^17.5.0",
"@taquito/utils": "^17.5.0",
"buffer": "^6.0.3",
"svelte-select": "^5.7.0",
"vite-compatible-readable-stream": "^3.6.1"
Expand Down
34 changes: 34 additions & 0 deletions docs/version.md
Expand Up @@ -2,6 +2,40 @@
title: Versions
author: Jev Bjorsell
---
# Taquito 17.5.0

**Important Note:**
In this version, we replaced instances of `Axios` in favour of `Fetch`.

We are not expecting any breaking changes, but if there are any issues that you see regarding this, please reach out to the Taquito team.

## Summary

### New Features
- `@taquito/taquito` - Expose and publicly `smartContractAbstractionSemantic` #2534

### Improvement
- `@taquito/http-utils` - Removed `Axios` as a dependency of Taquito in favour of `fetch`/`node-fetch` #2461
### Documentation
- Updated RPC nodes on the website [PR#2732](https://github.com/ecadlabs/taquito/pull/2732
- Updated Michelson encoder documentation to reference `generateSchema` instead of the outdated `extractSchema` #2630
- Added a Taquito Chatbot assistant for the Taquito website to help answer user questions #2684

### Internals
- Removed archive node, and references to it in Taquito [PR#2743](https://github.com/ecadlabs/taquito/pull/2743)
- Updated Sass, Lerna, and Firebase versions [PR#2749](https://github.com/ecadlabs/taquito/pull/2749)
- Updated integration tests to increase speed and reliability #2741


## `@taquito/http-utils` - Removed `Axios` in favour of `fetch`
The `taquito/http-utils` is responsible for handling all HTTP incoming and outgoing HTTP requests in Taquito. It utilized `Axios` as a main dependency to handle requests coming in and out of Taquito.

Now that browsers and Node have supported `fetch` natively, it makes more sense for us to move towards it.

Axios came with quite a large dependency tree, as well as multiple workarounds we needed to include for it to work properly (i.e. the `axios-fetch-adapter`)

With this change we hope for a more stable HTTP handler in Taquito while reducing the package size at the same time.


# Taquito v17.4.0

Expand Down
22 changes: 11 additions & 11 deletions example/package.json
@@ -1,7 +1,7 @@
{
"name": "@taquito/example",
"private": true,
"version": "17.5.0-beta-RC.1",
"version": "17.5.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 @@ -41,16 +41,16 @@
},
"dependencies": {
"@ledgerhq/hw-transport-node-hid": "^6.27.21",
"@taquito/ledger-signer": "^17.5.0-beta-RC.1",
"@taquito/local-forging": "^17.5.0-beta-RC.1",
"@taquito/michel-codec": "^17.5.0-beta-RC.1",
"@taquito/michelson-encoder": "^17.5.0-beta-RC.1",
"@taquito/rpc": "^17.5.0-beta-RC.1",
"@taquito/sapling": "^17.5.0-beta-RC.1",
"@taquito/signer": "^17.5.0-beta-RC.1",
"@taquito/taquito": "^17.5.0-beta-RC.1",
"@taquito/tzip16": "^17.5.0-beta-RC.1",
"@taquito/utils": "^17.5.0-beta-RC.1",
"@taquito/ledger-signer": "^17.5.0",
"@taquito/local-forging": "^17.5.0",
"@taquito/michel-codec": "^17.5.0",
"@taquito/michelson-encoder": "^17.5.0",
"@taquito/rpc": "^17.5.0",
"@taquito/sapling": "^17.5.0",
"@taquito/signer": "^17.5.0",
"@taquito/taquito": "^17.5.0",
"@taquito/tzip16": "^17.5.0",
"@taquito/utils": "^17.5.0",
"bignumber.js": "^9.1.2"
},
"devDependencies": {
Expand Down
30 changes: 15 additions & 15 deletions integration-tests/package.json
Expand Up @@ -10,26 +10,26 @@
"test:mondaynet-secret-key": "RUN_MONDAYNET_WITH_SECRET_KEY=true jest --runInBand",
"test": "jest"
},
"version": "17.5.0-beta-RC.1",
"version": "17.5.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": "^17.5.0-beta-RC.1",
"@taquito/core": "^17.5.0-beta-RC.1",
"@taquito/http-utils": "^17.5.0-beta-RC.1",
"@taquito/local-forging": "^17.5.0-beta-RC.1",
"@taquito/michel-codec": "^17.5.0-beta-RC.1",
"@taquito/michelson-encoder": "^17.5.0-beta-RC.1",
"@taquito/remote-signer": "^17.5.0-beta-RC.1",
"@taquito/rpc": "^17.5.0-beta-RC.1",
"@taquito/sapling": "^17.5.0-beta-RC.1",
"@taquito/signer": "^17.5.0-beta-RC.1",
"@taquito/taquito": "^17.5.0-beta-RC.1",
"@taquito/tzip12": "^17.5.0-beta-RC.1",
"@taquito/tzip16": "^17.5.0-beta-RC.1",
"@taquito/utils": "^17.5.0-beta-RC.1",
"@taquito/contracts-library": "^17.5.0",
"@taquito/core": "^17.5.0",
"@taquito/http-utils": "^17.5.0",
"@taquito/local-forging": "^17.5.0",
"@taquito/michel-codec": "^17.5.0",
"@taquito/michelson-encoder": "^17.5.0",
"@taquito/remote-signer": "^17.5.0",
"@taquito/rpc": "^17.5.0",
"@taquito/sapling": "^17.5.0",
"@taquito/signer": "^17.5.0",
"@taquito/taquito": "^17.5.0",
"@taquito/tzip12": "^17.5.0",
"@taquito/tzip16": "^17.5.0",
"@taquito/utils": "^17.5.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": "17.5.0-beta-RC.1"
"version": "17.5.0"
}

0 comments on commit bcebcae

Please sign in to comment.