-
Notifications
You must be signed in to change notification settings - Fork 179
Dev #1074
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
Merged
Dev #1074
Changes from 16 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
3d46aec
chore: bump v2.6.5 rd2 (#1067)
transphorm 657d8af
chore: update tooling dependencies (#1069)
transphorm 5c569e6
chore: minor fixes across monorepo (#1068)
transphorm 045a805
fix yarn build; add workflow ci (#1075)
transphorm 8e385cb
feat: add functions for disclosing aadhaar attributes (#1033)
Nesopie c11c9af
chore: update monorepo artifacts (#1079)
transphorm f85a23a
cleans up unused parts of sdk interface, adds inline documentation, (…
aaronmgdr 729ee76
Feat/aadhaar sdk (#1082)
Nesopie 30cc43e
feat: change to gcp attestation verification (#959)
Nesopie 8983ac2
Mobile SDK: move provingMachine from the app (#1052)
shazarre 3397fcf
Revert "Mobile SDK: move provingMachine from the app (#1052)" (#1084)
transphorm 48e4a53
fix: sdk (#1085)
Nesopie 1d648ef
bump sdk (#1086)
Nesopie c2406f0
chore update mobile app types (#1087)
transphorm a0123d2
feat: add contract utils (#1088)
Nesopie 86c595b
Feat/contracts npm publish (#1089)
Nesopie b21df03
fix: use celo sepolia in common (#1091)
Nesopie b0ae194
chore: export selfappbuilder (#1092)
Nesopie a005bde
[SELF-747] feat: clone android passport reader during setup (#1080)
transphorm 779fea5
address version mismatches and package resolutions (#1081)
transphorm d0a66a1
fix: aadhaar verifier abi (#1096)
Nesopie 664be08
fix: go-sdk (#1090)
Vishalkulkarni45 2df4dc4
SELF-725: add iOS qrcode opener and aadhaar screen (#1038)
remicolin 48a8146
fix aadhaar screen test (#1101)
transphorm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
Contracts publish won’t trigger on push; add path + default false.
You added the
contracts_changedoutput, but the workflow never runs on commits that touch onlycontracts/package.jsonbecause it’s missing fromon.push.paths(Lines 8–10). Also, unlike the other packages,contracts_changedlacks a defaultfalse, which can yield an empty output."contracts/package.json"toon.push.paths.contracts_changed=falsesimilarly to the others.🏁 Script executed:
Length of output: 95
🏁 Script executed:
Length of output: 7745
Add contracts/package.json to push paths and initialize contracts_changed=false
on.push.paths omits "contracts/package.json" (so pushes that only touch contracts won't run the workflow) and the check-version step sets contracts_changed=true but never writes a default false — add "contracts/package.json" under on.push.paths and echo "contracts_changed=false" in the Check for version changes (id: check-version) to match the other package checks.
.github/workflows/npm-publish.yml — update on.push.paths (top) and detect-changes → Check for version changes (id: check-version).
🤖 Prompt for AI Agents