Skip to content

Commit 611b3f4

Browse files
Merge pull request #493 from autonomys/chore/v1.6.0
chore: release v1.6.0
2 parents 3faea53 + 3a51c64 commit 611b3f4

File tree

26 files changed

+88
-70
lines changed

26 files changed

+88
-70
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ permissions:
3030
jobs:
3131
release:
3232
runs-on: ubuntu-latest
33+
timeout-minutes: 60
3334
steps:
3435
- name: Checkout 🛎️
3536
uses: actions/checkout@v3

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
Future changes will appear here.
44

5+
## [1.6.0] - 2025-11-12
6+
7+
### Features
8+
9+
- improve XDM messenger developer experience ([#492](https://github.com/autonomys/auto-sdk/pull/492)) [@jfrank-summit](https://github.com/jfrank-summit)
10+
- improved XDM functionality in auto-xdm, add integration tests (⚠️ breaking changes) ([#490](https://github.com/autonomys/auto-sdk/pull/490)) [@jfrank-summit](https://github.com/jfrank-summit)
11+
12+
### Chores
13+
14+
- update CODEOWNERS ([#491](https://github.com/autonomys/auto-sdk/pull/491)) [@jfrank-summit](https://github.com/jfrank-summit)
15+
- bump version to v1.5.20 ([#489](https://github.com/autonomys/auto-sdk/pull/489)) [@clostao](https://github.com/clostao)
16+
517
## [1.5.20] - 2025-10-30
618

719
### Features
@@ -402,5 +414,7 @@ Future changes will appear here.
402414
[1.5.17]: https://github.com/autonomys/auto-sdk/releases/tag/v1.5.17
403415
[1.5.18]: https://github.com/autonomys/auto-sdk/releases/tag/v1.5.18
404416
[1.5.19]: https://github.com/autonomys/auto-sdk/compare/v1.5.19
417+
418+
[Unreleased]: https://github.com/autonomys/auto-sdk/compare/v1.6.0...HEAD
419+
[1.6.0]: https://github.com/autonomys/auto-sdk/compare/v1.5.20...v1.6.0
405420
[1.5.20]: https://github.com/autonomys/auto-sdk/releases/tag/v1.5.20
406-
[Unreleased]: https://github.com/autonomys/auto-sdk/compare/v1.5.20...HEAD

examples/auto-drive-create-next-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-next-app",
3-
"version": "1.5.20",
3+
"version": "1.6.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

examples/next/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "auto-sdk-next-example",
3-
"version": "1.5.20",
3+
"version": "1.6.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

examples/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node",
3-
"version": "1.5.20",
3+
"version": "1.6.0",
44
"private": true,
55
"license": "MIT",
66
"packageManager": "[email protected]",

integration-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@autonomys/integration-tests",
3-
"version": "0.1.0",
3+
"version": "1.6.0",
44
"private": true,
55
"description": "Integration tests for Autonomys SDK packages",
66
"type": "module",

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "1.5.20",
3+
"version": "1.6.0",
44
"npmClient": "yarn"
55
}

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"clean": "lerna run clean",
1515
"format": "lerna run format",
1616
"test": "lerna run test",
17+
"test:unit": "lerna run test --ignore @autonomys/integration-tests",
1718
"test:integration": "cd integration-tests && yarn wait-for-ready && yarn test",
1819
"test:integration:watch": "cd integration-tests && yarn test:watch",
1920
"integration:up": "cd integration-tests && yarn docker:up",
@@ -23,7 +24,7 @@
2324
"integration:ps": "cd integration-tests && yarn docker:ps",
2425
"integration:health": "cd integration-tests && yarn wait-for-ready",
2526
"prepare": "husky install",
26-
"prepublish": "yarn build && yarn test",
27+
"prepublish": "yarn build && yarn test:unit",
2728
"publish": "yarn prepublish && lerna publish --no-private",
2829
"changelog": "node scripts/generate-pr-changelog.js",
2930
"changelog:commit": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 --commit-path . --pkg ./lerna.json --release-count 0 --skip-unreleased",

packages/auto-agents/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@autonomys/auto-agents",
3-
"version": "1.5.20",
3+
"version": "1.6.0",
44
"license": "MIT",
55
"main": "dist/index.js",
66
"type": "module",
@@ -26,8 +26,8 @@
2626
"README.md"
2727
],
2828
"dependencies": {
29-
"@autonomys/auto-dag-data": "^1.5.20",
30-
"@autonomys/auto-drive": "^1.5.20",
29+
"@autonomys/auto-dag-data": "^1.6.0",
30+
"@autonomys/auto-drive": "^1.6.0",
3131
"ethers": "6.13.5"
3232
},
3333
"devDependencies": {

0 commit comments

Comments
 (0)