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
9 changes: 3 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,11 @@ jobs:
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: 24
node-version: 26
registry-url: 'https://registry.npmjs.org/'

- name: Update npm
run: npm install -g npm@latest

- name: Install pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v6
with:
version: latest

Expand All @@ -48,7 +45,7 @@ jobs:
echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT

- name: Send Slack notification
uses: slackapi/slack-github-action@v2.1.1
uses: slackapi/slack-github-action@v3.0.3
with:
method: chat.postMessage
token: ${{ secrets.SLACK_BOT_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ['20', '22', '24']
os: [ubuntu-latest, windows-latest, macOS-latest]
node: ['22', '24', '26']
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- name: Checkout repository
Expand All @@ -26,7 +26,7 @@ jobs:
node-version: ${{ matrix.node }}

- name: Install pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v6
with:
version: latest

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
9.0.0 (6/18/2026)
-------------------
* BREAKING CHANGE: Require Node.js 22.19.0 or newer
* chore: Updated dependencies

8.1.5 (2/2/2026)
-------------------
* fix: Scan custom hooks path after loading the Titanium SDK
Expand Down
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "titanium",
"version": "8.1.5",
"version": "9.0.0",
"author": "TiDev, Inc. <npm@tidev.io>",
"description": "Command line interface for building Titanium SDK apps",
"type": "module",
Expand All @@ -23,27 +23,28 @@
"dependencies": {
"@xmldom/xmldom": "0.9.10",
"chalk": "5.6.2",
"commander": "14.0.3",
"commander": "15.0.0",
"execa": "9.6.1",
"fs-extra": "11.3.4",
"fs-extra": "11.3.5",
"pretty-bytes": "7.1.0",
"prompts": "2.4.2",
"semver": "7.7.4",
"undici": "8.0.2",
"which": "6.0.1",
"semver": "7.8.4",
"undici": "8.5.0",
"which": "7.0.0",
"wrap-ansi": "10.0.0",
"xpath": "0.0.34",
"yauzl": "3.3.0"
"yauzl": "3.4.0"
},
"devDependencies": {
"@reporters/github": "1.13.1",
"@vitest/coverage-istanbul": "4.1.5",
"@reporters/github": "2.0.1",
"@vitest/coverage-v8": "4.1.9",
"c8": "11.0.0",
"glob": "13.0.6",
"globals": "17.6.0",
"memory-streams": "0.1.3",
"oxlint": "1.63.0",
"proxy": "4.0.0"
"oxlint": "1.70.0",
"proxy": "4.1.0",
"vitest": "4.1.9"
},
"license": "Apache-2.0",
"bin": {
Expand All @@ -54,12 +55,11 @@
"./src"
],
"scripts": {
"coverage": "node scripts/test.js --coverage",
"coverage": "vitest --coverage",
"lint": "oxlint",
"test": "node scripts/test.js",
"test-only": "node scripts/test.js --only"
"test": "vitest"
},
"engines": {
"node": ">=20.18.1"
"node": ">=22.19.0"
}
}
}
Loading
Loading