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

beta #404

Closed
wants to merge 34 commits into from
Closed

beta #404

Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
b42fb6d
chore: partial
janniks Jan 14, 2025
f7fbea2
chore: partial
janniks Jan 14, 2025
e5b85f9
chore: add more partial, all methods
janniks Jan 15, 2025
98173fa
chore: partial compiling
janniks Jan 16, 2025
7b0bf69
chore: add more backwards comp, compiles
janniks Jan 18, 2025
bfc7287
chore: update error handling and option casting
janniks Jan 18, 2025
caacf17
chore: add xverse overrides
janniks Jan 20, 2025
b769cf9
fix: add missing AppConfig export
janniks Jan 20, 2025
3c1c778
fix: remove stacks/auth remnants
janniks Jan 20, 2025
2886e94
fix: update xverse strictness
janniks Jan 21, 2025
abd2189
fix: make auth options less strict
janniks Jan 21, 2025
d780b0c
chore: update imports
janniks Jan 21, 2025
cab6b28
chore: add temporary eslint ignore line
janniks Jan 21, 2025
ab8b769
fix: update usersession disconnect behavior
janniks Jan 21, 2025
f9d9c45
fix: address pr feedback
janniks Jan 22, 2025
dbdd993
fix!: rename persistselection property
janniks Jan 22, 2025
9ba4342
refactor: improve error handling
janniks Jan 22, 2025
e685b75
chore: rename to uppercase
janniks Jan 22, 2025
656da16
refactor: simplify object returns
janniks Jan 22, 2025
f101055
docs: update changelog
janniks Jan 22, 2025
4b29983
docs: update readme
janniks Jan 23, 2025
80753a7
docs: add provider push
janniks Jan 23, 2025
02d8e8a
docs: add identity check
janniks Jan 23, 2025
6c44538
fix: update authenticate provider handling
janniks Jan 24, 2025
cd03207
chore: remove import
janniks Jan 24, 2025
162e427
fix: auto encode and decode base64 for psbt
janniks Jan 24, 2025
352a540
fix: update caps for sighash
janniks Jan 29, 2025
cc3d5e1
fix: add fordefi default provider
janniks Jan 29, 2025
c6778be
test: update storybook test dapp
janniks Jan 29, 2025
f3096a1
fix: add fordefi to override list
janniks Jan 30, 2025
3c2c6a6
fix: update clarity values parsing
janniks Jan 30, 2025
9c81ff0
chore: add bigint tojson
janniks Feb 3, 2025
f8c6c15
ci: add beta deploy
janniks Feb 3, 2025
25b9905
ci: switch to premajor
janniks Feb 3, 2025
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
Prev Previous commit
ci: switch to premajor
janniks committed Feb 3, 2025

Verified

This commit was signed with the committer’s verified signature.
janniks janniks
commit 25b9905f1846d8783bb27512ee239791fc7822b4
7 changes: 6 additions & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -83,7 +83,12 @@ jobs:
env:
BRANCH: ${{ steps.git-branch.outputs.branch }}
PREID: ${{ steps.preid.outputs.preid }}
run: npx lerna publish prepatch --preid $PREID --dist-tag $BRANCH --yes --no-push
run: |
if [ "${{ steps.git-branch.outputs.branch }}" = "beta" ]; then
npx lerna publish premajor --preid $PREID --dist-tag $BRANCH --yes --no-push
else
npx lerna publish prepatch --preid $PREID --dist-tag $BRANCH --yes --no-push
fi
- name: Get package versions
id: versions
run: |

Unchanged files with check annotations Beta

<FormProvider {...methods}>
<section>
<h3>showSignMessage</h3>
<form onSubmit={onSubmit}>

Check failure on line 93 in packages/connect/src/stories/ConnectPage.tsx

GitHub Actions / Code checks

Promise-returning function provided to attribute where a void return was expected
<div>
<label htmlFor="message">Message</label>
<input
<FormProvider {...methods}>
<section>
<h3>showSTXTransfer</h3>
<form onSubmit={onSubmit}>

Check failure on line 141 in packages/connect/src/stories/ConnectPage.tsx

GitHub Actions / Code checks

Promise-returning function provided to attribute where a void return was expected
<div>
<label htmlFor="amount">Amount (uSTX)</label>
<input id="amount" {...register('amount', { required: true })} defaultValue="1000" />
<FormProvider {...methods}>
<section>
<h3>showContractCall</h3>
<form onSubmit={onSubmit}>

Check failure on line 219 in packages/connect/src/stories/ConnectPage.tsx

GitHub Actions / Code checks

Promise-returning function provided to attribute where a void return was expected
<div>
<label htmlFor="contractAddress">Contract Address</label>
<input
<FormProvider {...methods}>
<section>
<h3>showContractDeploy</h3>
<form onSubmit={onSubmit}>

Check failure on line 287 in packages/connect/src/stories/ConnectPage.tsx

GitHub Actions / Code checks

Promise-returning function provided to attribute where a void return was expected
<div>
<label htmlFor="contractName">Contract Name</label>
<input
<FormProvider {...methods}>
<section>
<h3>showSignTransaction</h3>
<form onSubmit={onSubmit}>

Check failure on line 351 in packages/connect/src/stories/ConnectPage.tsx

GitHub Actions / Code checks

Promise-returning function provided to attribute where a void return was expected
<div>
<label htmlFor="txHex">Transaction (hex)</label>
<textarea
<FormProvider {...methods}>
<section>
<h3>showSignStructuredMessage</h3>
<form onSubmit={onSubmit}>

Check failure on line 411 in packages/connect/src/stories/ConnectPage.tsx

GitHub Actions / Code checks

Promise-returning function provided to attribute where a void return was expected
<div>
<label htmlFor="domain">Domain</label>
<input