Skip to content

Commit

Permalink
Add support for sync to AWS
Browse files Browse the repository at this point in the history
This approach is very similar to that of GCP, and utilizes a similar
conditional-write mechanism to prevent conflicting updates to the
`latest` key.

This updates the package major version to 1.0.0, as it modifies the
`ServerConfig` enum by adding a new variant -- a semver-breaking change.
To avoid further major version bumps from additional variants, this also
adds `#[non-exhaustive]` to the enum.
  • Loading branch information
djmitche committed Dec 3, 2024
1 parent c60e4e2 commit 28394d0
Show file tree
Hide file tree
Showing 10 changed files with 1,416 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- uses: actions-rs/toolchain@v1
with:
toolchain: "1.73.0" # MSRV
toolchain: "1.78.0" # MSRV
override: true
components: clippy

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/rust-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
features:
- ""
- "server-sync"
- "server-gcp"
- "server-aws"
- "tls-native-roots"

name: "taskchampion ${{ matrix.features == '' && 'with no features' || format('with features {0}', matrix.features) }}"
Expand Down Expand Up @@ -53,7 +55,7 @@ jobs:
strategy:
matrix:
rust:
- "1.73.0" # MSRV
- "1.78.0" # MSRV
- "stable"
os:
- ubuntu-latest
Expand Down
Loading

0 comments on commit 28394d0

Please sign in to comment.