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: dag-jose implementation using IPLD schema/code generation #23

Merged
merged 27 commits into from
Nov 26, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f1fcd6d
feat: `dag-jose` implementation using IPLD schema/code generation
smrz2001 Sep 7, 2021
b492074
cleanup
smrz2001 Nov 14, 2021
f1e1565
support for "flattened" JOSE objects
smrz2001 Nov 15, 2021
9a2c58a
updates from review
smrz2001 Nov 16, 2021
4f4cc32
comments and renaming
smrz2001 Nov 16, 2021
8c43685
validate (then ignore) `link` when encoding
smrz2001 Nov 17, 2021
1e13125
updates and test fixes
smrz2001 Nov 17, 2021
9e74eec
first pass of unit tests
smrz2001 Nov 17, 2021
3176246
update dependencies
smrz2001 Nov 17, 2021
074958e
test fixes
smrz2001 Nov 19, 2021
42cd9eb
Introduce tests using fixtures from the ipld/ipld repo. (#24)
warpfork Nov 19, 2021
b8b195c
Merge remote-tracking branch 'origin/feat/dagjose-schema' into feat/d…
smrz2001 Nov 19, 2021
81244a6
test fixes
smrz2001 Nov 19, 2021
bfeb8fe
test fixes
smrz2001 Nov 19, 2021
67cf807
test fixes
smrz2001 Nov 19, 2021
837389d
test fixes
smrz2001 Nov 19, 2021
be1fa03
cleanup docs
smrz2001 Nov 23, 2021
cf9f2fd
remove `link` from encoded JWS
smrz2001 Nov 25, 2021
7b15497
fix up tests
smrz2001 Nov 25, 2021
b695464
minor updates and add TODOs
smrz2001 Nov 25, 2021
a8f96a0
add CID matching to spec tests
smrz2001 Nov 25, 2021
4bd8a79
remove travis.yml file and add TODOs to README.md
smrz2001 Nov 25, 2021
1893006
Update spec_test.go
smrz2001 Nov 26, 2021
411bf52
updates from review
smrz2001 Nov 26, 2021
5573e40
update to latest ipld repo
smrz2001 Nov 26, 2021
062415b
use newest go-ipld-prime
smrz2001 Nov 26, 2021
d17634a
check err from traversal
smrz2001 Nov 26, 2021
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 .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: go

go:
- "1.14"
- "1.17"

env:
- GO111MODULE=on
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ To read a JWS from IPFS:

```go
import (
"github.com/alexjg/dagjose" cidlink "github.com/ipld/go-ipld-prime/linking/cid"
"github.com/ceramicnetwork/dagjose"
"github.com/ipld/go-ipld-prime/linking/cid"
)
// Here we're creating a `CID` which points to a JWS
jwsCid, err := cid.Decode("some cid")
Expand Down
109 changes: 0 additions & 109 deletions dagjose/dagjose.go

This file was deleted.

242 changes: 0 additions & 242 deletions dagjose/dagjose_assembler.go

This file was deleted.

Loading