Skip to content

Commit

Permalink
Merge branch 'main' into async-graphql-dynamic-schema
Browse files Browse the repository at this point in the history
* main:
  Update breaking API calls for new `p2panda-rs` version (#293)
  Update Cargo.lock as well
  Use released p2panda-rs version 0.7.0
  Migrate CLI from `structopt` to `clap` (#289)
  Increase timeout for failing materializer test
  Introduce requeue flag (#286)
  Do transactions correctly (#285)
  Add libp2p service and configuration (#282)
  • Loading branch information
adzialocha committed Mar 16, 2023
2 parents e336758 + a792dac commit e5161fc
Show file tree
Hide file tree
Showing 29 changed files with 3,640 additions and 710 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Install Protocol Buffers compiler
run: sudo apt-get install protobuf-compiler

- name: Checkout repository
uses: actions/checkout@v3

Expand Down Expand Up @@ -67,6 +70,9 @@ jobs:
--health-retries 5
steps:
- name: Install Protocol Buffers compiler
run: sudo apt-get install protobuf-compiler

- name: Checkout repository
uses: actions/checkout@v3

Expand Down Expand Up @@ -99,6 +105,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Install Protocol Buffers compiler
run: sudo apt-get install protobuf-compiler

- name: Checkout repository
uses: actions/checkout@v3

Expand Down Expand Up @@ -152,6 +161,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Install Protocol Buffers compiler
run: sudo apt-get install protobuf-compiler

- name: Checkout repository
uses: actions/checkout@v3

Expand Down Expand Up @@ -179,6 +191,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Install Protocol Buffers compiler
run: sudo apt-get install protobuf-compiler

- name: Checkout repository
uses: actions/checkout@v3

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Migrate CLI from `structopt` to `clap` [#289](https://github.com/p2panda/aquadoggo/pull/289)
- Introduce libp2p networking service and configuration [#282](https://github.com/p2panda/aquadoggo/pull/282)
- Rework test runner and test node population patterns and refactor test_utils [#277](https://github.com/p2panda/aquadoggo/pull/277)
- 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)

### Fixed

- Correct use of `sqlx` transactions [#285](https://github.com/p2panda/aquadoggo/pull/285)
- Fix race-condition of mutably shared static schema store during testing [#269](https://github.com/p2panda/aquadoggo/pull/269)
- Introduce flag to requeue tasks in worker queue, fixes race-condition in materialization logic [#286](https://github.com/p2panda/aquadoggo/pull/286)
- Update breaking API calls for new `p2panda-rs` 0.7.0 version [#293](https://github.com/p2panda/aquadoggo/pull/293)

## [0.4.0]

Expand Down
Loading

0 comments on commit e5161fc

Please sign in to comment.