Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(changesets): versioning packages #1781

Merged
merged 2 commits into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/curvy-owls-think.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/dirty-guests-jog.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/dull-dolls-tap.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eighty-pumpkins-juggle.md

This file was deleted.

21 changes: 0 additions & 21 deletions .changeset/fast-dragons-rescue.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/fluffy-panthers-wait.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/heavy-trainers-serve.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hot-onions-burn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/loud-rocks-walk.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/loud-wolves-rest.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/mighty-berries-try.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/shy-bottles-kick.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/shy-jars-arrive.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/silent-hounds-walk.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/sweet-rings-reply.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tame-eels-repair.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thick-otters-camp.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/wet-knives-reflect.md

This file was deleted.

2 changes: 2 additions & 0 deletions internal/check-imports/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,5 @@
## null

## null

## null
10 changes: 10 additions & 0 deletions packages/abi-coder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## 0.75.0

### Minor Changes

- Introduce the v1 encoding scheme and use correct file naming conventions for `@fuel-ts/abi-coder`, by [@danielbate](https://github.com/danielbate) (See [#1780](https://github.com/FuelLabs/fuels-ts/pull/1780))

### Patch Changes

- Use interal utilities for arrayify, hexlify, concat and BytesLike, by [@danielbate](https://github.com/danielbate) (See [#1775](https://github.com/FuelLabs/fuels-ts/pull/1775))

## 0.74.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/abi-coder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/abi-coder",
"version": "0.74.0",
"version": "0.75.0",
"description": "",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/abi-typegen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @fuel-ts/abi-typegen

## 0.75.0

### Patch Changes

- Use interal utilities for arrayify, hexlify, concat and BytesLike, by [@danielbate](https://github.com/danielbate) (See [#1775](https://github.com/FuelLabs/fuels-ts/pull/1775))

## 0.74.0

## 0.73.0
Expand Down
2 changes: 1 addition & 1 deletion packages/abi-typegen/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/abi-typegen",
"version": "0.74.0",
"version": "0.75.0",
"description": "Generates Typescript definitions from Sway ABI Json files",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"bin": {
Expand Down
24 changes: 24 additions & 0 deletions packages/account/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Change Log

## 0.75.0

### Minor Changes

- - Add `outputVariables` and `missingContractIds` to the return of `estimateTxDependencies`
- Removed `estimatedOutputs` from return of `getTransactionCost`
- Add `outputVariables` and `missingContractIds` to the return of `getTransactionCost`
- Avoid reassigning `inputs` and `outputs` from the estimated TX at `BaseInvocationScope`, by [@Torres-ssf](https://github.com/Torres-ssf) (See [`4bee7751`](https://github.com/FuelLabs/fuels-ts/commit/4bee7751f89c88f5e623c676b157b4a4a515b09b))
- - For a contract call, reduced the number of dry run calls before the call from 4 to 1
- For a contract simulation, reduced the number of dry run calls before the simulation from 3 to 1
- For a transfer from an account, reduced the number of dry run calls from 2 to 1
- Optimized predicate estimation so that there are no calls to the node if all predicates in a transaction have been estimated
- `Predicate.estimateTxDependencies` now returns receipts which are used for the purposes of the optimizations mentioned above
- `BaseInvocationScope.fundWithRequiredCoins` now calculates the `fee` parameter internally so it was removed from the function signature, by [@nedsalk](https://github.com/nedsalk) (See [#1767](https://github.com/FuelLabs/fuels-ts/pull/1767))
- 🐞 fix assemble of transfer operations, by [@Torres-ssf](https://github.com/Torres-ssf) (See [#1787](https://github.com/FuelLabs/fuels-ts/pull/1787))

### Patch Changes

- exports InvocationCallResult, by [@Torres-ssf](https://github.com/Torres-ssf) (See [#1765](https://github.com/FuelLabs/fuels-ts/pull/1765))
- 🐞 Fixed subscriptions hanging when not closed by user even after connection is closed, by [@nedsalk](https://github.com/nedsalk) (See [#1793](https://github.com/FuelLabs/fuels-ts/pull/1793))
- Use interal utilities for arrayify, hexlify, concat and BytesLike, by [@danielbate](https://github.com/danielbate) (See [#1775](https://github.com/FuelLabs/fuels-ts/pull/1775))
- ✨ feat: migrate over @fuels/assets package into the TS SDK, by [@Dhaiwat10](https://github.com/Dhaiwat10) (See [#1747](https://github.com/FuelLabs/fuels-ts/pull/1747))
- remove unused connectors types, by [@Torres-ssf](https://github.com/Torres-ssf) (See [#1792](https://github.com/FuelLabs/fuels-ts/pull/1792))

## 0.74.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/account/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/account",
"version": "0.74.0",
"version": "0.75.0",
"description": "",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/address/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.75.0

### Patch Changes

- Use interal utilities for arrayify, hexlify, concat and BytesLike, by [@danielbate](https://github.com/danielbate) (See [#1775](https://github.com/FuelLabs/fuels-ts/pull/1775))

## 0.74.0

## 0.73.0
Expand Down
2 changes: 1 addition & 1 deletion packages/address/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/address",
"version": "0.74.0",
"version": "0.75.0",
"description": "Utilities for encoding and decoding addresses",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/contract/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.75.0

### Patch Changes

- Use interal utilities for arrayify, hexlify, concat and BytesLike, by [@danielbate](https://github.com/danielbate) (See [#1775](https://github.com/FuelLabs/fuels-ts/pull/1775))

## 0.74.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/contract",
"version": "0.74.0",
"version": "0.75.0",
"description": "",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
13 changes: 13 additions & 0 deletions packages/create-fuels/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# create-fuels

## 0.75.0

### Minor Changes

- ✨ feat: add new options to the `create-fuels` CLI:
-c, --contract Include contract program
-p, --predicate Include predicate program
-s, --script Include script program
--pnpm Use pnpm as the package manager
--npm Use npm as the package manager
-cs, -cp, -sp, -cps Shorthand to include combination of contract, script and predicate programs
-h, --help display help for command, by [@Dhaiwat10](https://github.com/Dhaiwat10) (See [#1777](https://github.com/FuelLabs/fuels-ts/pull/1777))

## 0.74.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/create-fuels/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-fuels",
"version": "0.74.0",
"version": "0.75.0",
"description": "",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"bin": {
Expand Down
6 changes: 6 additions & 0 deletions packages/crypto/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.75.0

### Patch Changes

- Use interal utilities for arrayify, hexlify, concat and BytesLike, by [@danielbate](https://github.com/danielbate) (See [#1775](https://github.com/FuelLabs/fuels-ts/pull/1775))

## 0.74.0

## 0.73.0
Expand Down
2 changes: 1 addition & 1 deletion packages/crypto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/crypto",
"version": "0.74.0",
"version": "0.75.0",
"description": "Utilities for encrypting and decrypting data",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
11 changes: 11 additions & 0 deletions packages/errors/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @fuel-ts/errors

## 0.75.0

### Minor Changes

- Introduce the v1 encoding scheme and use correct file naming conventions for `@fuel-ts/abi-coder`, by [@danielbate](https://github.com/danielbate) (See [#1780](https://github.com/FuelLabs/fuels-ts/pull/1780))

### Patch Changes

- exports InvocationCallResult, by [@Torres-ssf](https://github.com/Torres-ssf) (See [#1765](https://github.com/FuelLabs/fuels-ts/pull/1765))
- Use interal utilities for arrayify, hexlify, concat and BytesLike, by [@danielbate](https://github.com/danielbate) (See [#1775](https://github.com/FuelLabs/fuels-ts/pull/1775))

## 0.74.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/errors/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/errors",
"version": "0.74.0",
"version": "0.75.0",
"description": "Error class and error codes that the fuels-ts library throws",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/forc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## 0.75.0

## 0.74.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/forc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/forc",
"version": "0.74.0",
"version": "0.75.0",
"description": "NPM bin wrapper around Fuel `forc`",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"bin": {
Expand Down
2 changes: 2 additions & 0 deletions packages/fuel-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @fuel-ts/fuel-core

## 0.75.0

## 0.74.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/fuel-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/fuel-core",
"version": "0.74.0",
"version": "0.75.0",
"description": "NPM bin wrapper around `fuel-core`",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"bin": {
Expand Down
7 changes: 7 additions & 0 deletions packages/fuels/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 0.75.0

### Patch Changes

- Use interal utilities for arrayify, hexlify, concat and BytesLike, by [@danielbate](https://github.com/danielbate) (See [#1775](https://github.com/FuelLabs/fuels-ts/pull/1775))
- Adding new `forcBuildFlags` property to `fuels` config, by [@arboleya](https://github.com/arboleya) (See [#1788](https://github.com/FuelLabs/fuels-ts/pull/1788))

## 0.74.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/fuels/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fuels",
"version": "0.74.0",
"version": "0.75.0",
"description": "Fuel TS SDK",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"bin": {
Expand Down
6 changes: 6 additions & 0 deletions packages/hasher/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.75.0

### Patch Changes

- Use interal utilities for arrayify, hexlify, concat and BytesLike, by [@danielbate](https://github.com/danielbate) (See [#1775](https://github.com/FuelLabs/fuels-ts/pull/1775))

## 0.74.0

## 0.73.0
Expand Down
2 changes: 1 addition & 1 deletion packages/hasher/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/hasher",
"version": "0.74.0",
"version": "0.75.0",
"description": "Sha256 hash utility for Fuel",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
Loading
Loading