Skip to content
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.1.0] - 2025-10-22

### Updated

- Updated to ardrive-core-js@3.1.0

## [3.0.5] - 2025-10-16

### Fixed

- Fixed contentType handling to use logical OR operator instead of nullish coalescing to properly fallback to MIME type detection from file extension

## [3.0.4] - 2025-10-13

### Fixed

- Correctly use seconds for Unix-Time Tag on ArFS Entities

## [3.0.3] - 2025-08-01

### Fixed

- Fixes manifest lastModifiedDate timestamp to be milliseconds instead of seconds

## [3.0.2] - 2025-06-25

### Changed

- Upload using turbo-sdk
- Use @ardrive/ardrive-promise-cache over Core implementation
- Updates several deps

## [3.0.1] - 2025-06-20

### Changed
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "ardrive-cli",
"version": "3.0.5",
"version": "3.1.0",
"description": "The ArDrive Command Line Interface (CLI is a Node.js application for terminal-based ArDrive workflows. It also offers utility operations for securely interacting with Arweave wallets and inspecting various Arweave blockchain conditions.",
"main": "./lib/index.js",
"bin": {
"ardrive": "./lib/index.js"
},
"types": "./lib/index.d.ts",
"dependencies": {
"ardrive-core-js": "3.0.5",
"ardrive-core-js": "3.1.0",
"arweave": "1.15.7",
"axios": "^0.21.1",
"commander": "^8.2.0",
Expand Down
26 changes: 21 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1152,6 +1152,13 @@ __metadata:
languageName: node
linkType: hard

"@noble/ciphers@npm:^2.0.1":
version: 2.0.1
resolution: "@noble/ciphers@npm:2.0.1"
checksum: 45302417111002b0b10464aa4a232ae7b18c18f6e9b4eb1571efd1310a0ee0aad00d4e8e8e1942f99315a49cd37a0210bafb697a2e44a866999891e616a2180b
languageName: node
linkType: hard

"@noble/curves@npm:1.2.0":
version: 1.2.0
resolution: "@noble/curves@npm:1.2.0"
Expand Down Expand Up @@ -1207,6 +1214,13 @@ __metadata:
languageName: node
linkType: hard

"@noble/hashes@npm:^2.0.1":
version: 2.0.1
resolution: "@noble/hashes@npm:2.0.1"
checksum: aea67a671ca464027cd512d07666a804bd99abc343ba98c93ee8463a1c870c5594f8de468279ef3c60f3b23b6330db9f1a92bd23723b8a911ec73bddc9420248
languageName: node
linkType: hard

"@noble/hashes@npm:~1.6.0":
version: 1.6.1
resolution: "@noble/hashes@npm:1.6.1"
Expand Down Expand Up @@ -2245,7 +2259,7 @@ __metadata:
"@types/source-map-support": ^0
"@typescript-eslint/eslint-plugin": ^6.2.1
"@typescript-eslint/parser": ^6.2.1
ardrive-core-js: 3.0.5
ardrive-core-js: 3.1.0
arweave: 1.15.7
axios: ^0.21.1
chai: ^4.3.4
Expand All @@ -2272,13 +2286,15 @@ __metadata:
languageName: unknown
linkType: soft

"ardrive-core-js@npm:3.0.5":
version: 3.0.5
resolution: "ardrive-core-js@npm:3.0.5"
"ardrive-core-js@npm:3.1.0":
version: 3.1.0
resolution: "ardrive-core-js@npm:3.1.0"
dependencies:
"@ardrive/ardrive-promise-cache": ^1.1.4
"@ardrive/turbo-sdk": ^1.0.1
"@dha-team/arbundles": ^1.0.3
"@noble/ciphers": ^2.0.1
"@noble/hashes": ^2.0.1
arweave: ^1.15.7
axios: ^0.21.1
axios-retry: ^3.6.0
Expand All @@ -2294,7 +2310,7 @@ __metadata:
smartweave: ^0.4.49
utf8: ^3.0.0
uuid: ^9.0.1
checksum: c0dbf53ddb8e3d00f920ede965c03497becb87476a30a1ba3fede0a5f3d4e82b4db62b51ef27d868f72400d4f1bb9d86d2fa89198df6d8e06bee23ac00f31f1e
checksum: fa325d3bb651cc71cf3fa2bbf96feb1e265a77c9732874be09f16d636931e5a71c60c39437fb091f7f14d80d22e51fa72b69b817d3d19c83cf4e4e6fb4c9cbc6
languageName: node
linkType: hard

Expand Down
Loading