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

Feat/submit #271

Merged
merged 55 commits into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from 46 commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
9a5e2dc
improved design and logic per review comments, still need to track th…
2byrds Jun 3, 2024
9348519
delegator endpoint processes dip as a long running processes. tests pass
2byrds Jun 3, 2024
042d551
small fixes to op checks
2byrds Jun 3, 2024
f589fab
small fixes on checking dip success
2byrds Jun 3, 2024
78cf663
remove unnecessary loop for interact operation
2byrds Jun 3, 2024
f9ab9a1
point to keri main for now, will use 1.2.0-dev5 when it's available
2byrds Jun 3, 2024
2c6ce5f
refactored degator end to delegating.py and corresponding tests and u…
2byrds Jun 4, 2024
f4de29d
consolidate to optype of 'delegation' and clean up tests
2byrds Jun 4, 2024
414744f
improve naming to be consistent with credentialing, and tested with s…
2byrds Jun 4, 2024
c900b85
fixes and tests rotation. also tested with signify-ts integration tes…
2byrds Jun 7, 2024
48046fd
fixed group end smids/rmids
2byrds Jun 12, 2024
6475a17
fix smid list in multisig request on_post
2byrds Jun 12, 2024
4a12a94
fix for intermittent smid/rmid dict or str
2byrds Jun 13, 2024
f41c79f
moving approval into longrunning operation, need to make approveDeleg…
2byrds Jun 13, 2024
903dfff
merged latest
2byrds Jun 13, 2024
32fc74f
successful delegated multisig integration testing with Signify-ts
2byrds Jun 13, 2024
54de5a7
set to tagged keripy 1.2.0.dev6
2byrds Jun 14, 2024
fcaf2fb
removed duplicate comment and simplified keria.dockerfile to leverage…
2byrds Jun 14, 2024
b274643
Started development on Submitter
2byrds Jun 17, 2024
8fe2ed3
continued unit testing submiter
2byrds Jun 18, 2024
2151ff6
Submitter only processes witnessed identifiers
2byrds Jun 18, 2024
99594af
added submit endpoint need to confirm wigs in long running operation
2byrds Jun 18, 2024
8f336ce
updated identifier endpoint testing to include submit operation
2byrds Jun 19, 2024
a2a8bbe
need to have operation based on cue instead of db
2byrds Jun 21, 2024
66b3e23
Remove any smids/rmids state dict test problems
2byrds Jun 21, 2024
59e7041
Removed unnecessary annotation
2byrds Jun 21, 2024
d3b3ee8
fix multisig join after original creation see https://github.com/WebO…
2byrds Jun 21, 2024
76d9a54
cleanup docker image entrypoint and instructions
2byrds Jun 22, 2024
baea95e
merged latest from fixes
2byrds Jun 22, 2024
ddcd055
submitter doers and cues decide completion of long running operation
2byrds Jun 22, 2024
b5ac15d
prepping makefile for release, will change org soon
2byrds Jun 22, 2024
d19836d
re-submit witness testing improvements
2byrds Jul 1, 2024
4cb96c1
tidy submit tests
2byrds Jul 1, 2024
50c0f28
updated to latest keripy dev tag 1.2.0.dev8
2byrds Jul 1, 2024
7eddaa3
Merge branch 'main' into feat/submit_id
2byrds Jul 5, 2024
60169d7
use image keri:1.2.0-dev8
2byrds Jul 5, 2024
8eb99ec
improve submit error message
2byrds Jul 5, 2024
38fb89c
added manual witness receipts to submit unit test
2byrds Jul 10, 2024
0892de7
simplify the witness receipts testing. Need to scrub the witness and …
2byrds Jul 10, 2024
0fd1530
server witness processing improved but still need to finish processin…
2byrds Jul 14, 2024
0ce3c00
witness receipts accounted for and submit operation completes
2byrds Jul 15, 2024
f020d76
merged latest
2byrds Jul 16, 2024
f795ab0
removed prototyped testing
2byrds Jul 16, 2024
8f2bbad
bump keria version
2byrds Jul 18, 2024
9070af8
small adjustments based on PR self-review
2byrds Jul 18, 2024
aa0df10
fix rotate test path
2byrds Jul 18, 2024
165baeb
update keria version
2byrds Jul 18, 2024
3f2ab9d
merged latest
2byrds Aug 12, 2024
f07da43
remove formatting from diff of agenting.py
2byrds Aug 12, 2024
c73b264
update formatting for better diff
2byrds Aug 12, 2024
21e0cef
update formatting for better diff
2byrds Aug 12, 2024
4ca9520
update formatting for better diff
2byrds Aug 12, 2024
1205f0b
update formatting for better diff
2byrds Aug 12, 2024
dac2135
revert keripy api change
2byrds Aug 13, 2024
5b32db9
set dev keri version
2byrds Aug 13, 2024
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: build-keria
build-keria:
@docker buildx build --platform=linux/amd64 --no-cache -f images/keria.dockerfile --tag weboftrust/keria:0.2.0-dev1 .
@docker buildx build --platform=linux/amd64 --no-cache -f images/keria.dockerfile --tag weboftrust/keria:0.2.0-dev2 .

publish-keria:
@docker push weboftrust/keria --all-tags
2 changes: 1 addition & 1 deletion images/keria.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM weboftrust/keri:1.2.0-dev6
FROM weboftrust/keri:1.2.0-dev10

WORKDIR /usr/local/var

Expand Down
Loading
Loading