Skip to content

Commit

Permalink
Merge branch 'main' into query-sql
Browse files Browse the repository at this point in the history
* main:
  Create and validate abstract queries (#302)
  Handle null value for viewId in nextArgs
  Introduce `identify` and `rendezvous` network protocols (#304)
  Restructure graphql modules (#307)
  • Loading branch information
adzialocha committed Mar 28, 2023
2 parents c68506f + 0dfddcd commit 74b4b52
Show file tree
Hide file tree
Showing 24 changed files with 1,000 additions and 412 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Introduce `identify` and `rendezvous` network protocols / behaviours [#304](https://github.com/p2panda/aquadoggo/pull/304)

### Added

- Introduce libp2p networking service and configuration [#282](https://github.com/p2panda/aquadoggo/pull/282)
Expand All @@ -19,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Implement API changes to p2panda-rs storage traits, new and breaking db migration [#268](https://github.com/p2panda/aquadoggo/pull/268)
- Move all test utils into one module [#275](https://github.com/p2panda/aquadoggo/pull/275)
- Use new version of `async-graphql` for dynamic schema generation [#287](https://github.com/p2panda/aquadoggo/pull/287)
- Restructure `graphql` module [#307](https://github.com/p2panda/aquadoggo/pull/307)
- Removed replication service for now, preparing for new replication protocol [#296](https://github.com/p2panda/aquadoggo/pull/296)

### Fixed
Expand Down
205 changes: 201 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions aquadoggo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ authors = [
"pietgeursen <pietgeursen@gmail.com>",
"sandreae <contact@samandreae.com>",
"sophiiistika <sophiiistika@mailbox.org>",
"glyph <glyph@mycelial.technology>",
]
description = "Embeddable p2p network node"
license = "AGPL-3.0-or-later"
Expand Down Expand Up @@ -38,6 +39,9 @@ libp2p = { version = "^0.51.0", features = [
"quic",
"ping",
"mdns",
"identify",
"rendezvous",
"serde",
] }
lipmaa-link = "^0.2.2"
log = "^0.4.17"
Expand Down
Loading

0 comments on commit 74b4b52

Please sign in to comment.