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 #22

Closed
wants to merge 40 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
c403bc1
fix(pkg): minor updates
smrz2001 Sep 7, 2021
58b8c0d
feat(dagjose): `go-ipfs` plugin integration updates
smrz2001 Sep 15, 2021
f679812
review updates and minor cleanup
smrz2001 Oct 8, 2021
d1f4425
feat(dagjose): fix cbor encoding (#15)
Geo25rey Oct 13, 2021
9b36168
review updates and minor cleanup
smrz2001 Oct 13, 2021
ca0cc34
more cleanup
smrz2001 Oct 13, 2021
afca06d
more cleanup
smrz2001 Oct 14, 2021
9eb7584
revert formatting changes
smrz2001 Oct 21, 2021
3a71121
revert formatting changes
smrz2001 Oct 21, 2021
7def0d0
revert formatting changes
smrz2001 Oct 21, 2021
6c02ab3
revert formatting changes
smrz2001 Oct 22, 2021
b0f7472
revert formatting changes
smrz2001 Oct 22, 2021
5aaefc2
revert formatting changes
smrz2001 Oct 22, 2021
de5f0f4
revert formatting changes
smrz2001 Oct 22, 2021
28b35d7
revert formatting changes
smrz2001 Oct 22, 2021
fdfa0dc
revert formatting changes
smrz2001 Oct 22, 2021
4f52339
revert formatting changes
smrz2001 Oct 22, 2021
33dfe9d
Add fast-path to Encoding
smrz2001 Oct 25, 2021
2da4291
Update Decode to match the strictness of Encode
smrz2001 Oct 25, 2021
c0403af
Consistent file naming and assembler updates
smrz2001 Oct 26, 2021
b2f42bc
try using schema generation
smrz2001 Nov 2, 2021
5b7bbde
try using schema generation
smrz2001 Nov 4, 2021
4cc9751
try using schema generation
smrz2001 Nov 4, 2021
cb9e8f2
try using schema generation
smrz2001 Nov 4, 2021
e7e841a
try using schema generation
smrz2001 Nov 5, 2021
2de06ee
try using schema generation
smrz2001 Nov 5, 2021
d5c04b5
try using schema generation
smrz2001 Nov 5, 2021
b4f840f
try using schema generation
smrz2001 Nov 5, 2021
eac63f3
try using schema generation
smrz2001 Nov 6, 2021
b2600e0
try using schema generation
smrz2001 Nov 6, 2021
6ec7389
cleanup
smrz2001 Nov 6, 2021
c90a3c6
updates
smrz2001 Nov 8, 2021
cbdb744
updates
smrz2001 Nov 9, 2021
90cc3fc
updates
smrz2001 Nov 11, 2021
deea418
updates
smrz2001 Nov 11, 2021
955c888
updates
smrz2001 Nov 11, 2021
ea090af
updates
smrz2001 Nov 12, 2021
914af67
updates
smrz2001 Nov 12, 2021
e0edc21
updates
smrz2001 Nov 12, 2021
f63e75b
updates
smrz2001 Nov 12, 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.16"

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