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
15 changes: 9 additions & 6 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,14 @@ jobs:

# Only on staging: auto-merge the rc release PR so an rc is produced
# hands-free on every merge into staging. The "PR for dev and staging"
# ruleset lets the qubic-release-bot App bypass the review requirement
# (bypass_mode: pull_request) — this is NOT allowed on main. The merge is
# a push to staging, which re-runs this workflow and creates the rc tag +
# release. Interpolations go through env (not the run body) to avoid
# template injection.
# ruleset makes the qubic-release-bot App a bypass actor
# (bypass_mode: pull_request), so --admin lets the bot force the merge
# past the required review + status check. A plain --merge is refused
# while the PR is still BLOCKED (review pending / commitlint not yet
# finished). main is NOT bypassable, so production stays human-gated.
# The merge is a push to staging, which re-runs this workflow and creates
# the rc tag + release. Interpolations go through env (not the run body)
# to avoid template injection.
- name: Auto-merge staging rc release PR
if: github.ref_name == 'staging' && steps.release.outputs.prs_created == 'true'
env:
Expand All @@ -77,7 +80,7 @@ jobs:
run: |
pr_number=$(echo "$PRS_JSON" | jq -r '.[0].number')
echo "Auto-merging staging rc release PR #${pr_number}"
gh pr merge "$pr_number" --repo "$TARGET_REPO" --merge
gh pr merge "$pr_number" --repo "$TARGET_REPO" --merge --admin

# Production deploy. Runs ONLY when a stable release was actually cut on main
# (release_created == true). The promotion merge into main only opens the
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.28.0"
".": "1.30.0"
}
2 changes: 1 addition & 1 deletion .release-please-manifest.staging.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.28.0"
".": "1.29.0-rc"
}
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,29 @@

* **smart_contracts:** refresh smart contracts data ([5ad4609](https://github.com/qubic/static/commit/5ad460913bf912e7f84a86f356b29f25e06908c6))

## [1.30.0](https://github.com/qubic/static/compare/v1.29.0...v1.30.0) (2026-08-14)


### Features

* **smart_contracts:** refresh smart contracts data ([fdf462a](https://github.com/qubic/static/commit/fdf462a5a4e6f0eaa869ad6e3cd79782dcde50a0))

## [1.29.0](https://github.com/qubic/static/compare/v1.28.0...v1.29.0) (2026-08-14)


### Features

* add Bit2Me exchange address to exchanges.json ([f63a3d1](https://github.com/qubic/static/commit/f63a3d1e7b07143292191ee669392cd7cf1f5df4))
* **exchanges:** add Bit2Me exchange address ([8337144](https://github.com/qubic/static/commit/8337144f06784bd76887d7a697f4455fbf7c471a))

## [1.29.0-rc](https://github.com/qubic/static/compare/v1.28.0...v1.29.0-rc) (2026-08-14)


### Features

* add Bit2Me exchange address to exchanges.json ([f63a3d1](https://github.com/qubic/static/commit/f63a3d1e7b07143292191ee669392cd7cf1f5df4))
* **exchanges:** add Bit2Me exchange address ([8337144](https://github.com/qubic/static/commit/8337144f06784bd76887d7a697f4455fbf7c471a))

## [1.27.1](https://github.com/qubic/static/compare/v1.27.0...v1.27.1) (2026-06-14)


Expand Down
25 changes: 25 additions & 0 deletions data/smart_contracts.json
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,11 @@
"id": 102,
"name": "Unsubscribe Oracle",
"sourceIdentifier": "UnsubscribeOracle"
},
{
"id": 103,
"name": "Trigger OC",
"sourceIdentifier": "TriggerOC"
}
],
"allowTransferShares": true,
Expand Down Expand Up @@ -897,6 +902,21 @@
"name": "Transfer Share Management Rights",
"fee": 200,
"sourceIdentifier": "TransferShareManagementRights"
},
{
"id": 9,
"name": "Create Asset Raffle",
"sourceIdentifier": "createAssetRaffle"
},
{
"id": 10,
"name": "Buy Asset Raffle Ticket",
"sourceIdentifier": "buyAssetRaffleTicket"
},
{
"id": 11,
"name": "Cancel Asset Raffle",
"sourceIdentifier": "cancelAssetRaffle"
}
],
"allowTransferShares": true,
Expand Down Expand Up @@ -1378,6 +1398,11 @@
"id": 13,
"name": "Vote Gov Change",
"sourceIdentifier": "VoteGovChange"
},
{
"id": 14,
"name": "Admin Reconcile Stake",
"sourceIdentifier": "AdminReconcileStake"
}
],
"firstUseEpoch": 218,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qubic-static-api",
"version": "1.28.0",
"version": "1.30.0",
"description": "Static data and assets for Qubic blockchain",
"private": true,
"packageManager": "pnpm@9.11.0",
Expand Down
Loading