Skip to content

Commit

Permalink
Tokio Postgres + Axum (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
deankarn committed Mar 19, 2023
1 parent 0acef91 commit 0c32e3d
Show file tree
Hide file tree
Showing 19 changed files with 1,292 additions and 1,679 deletions.
2 changes: 2 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[registries.crates-io]
protocol = "sparse"
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
org.opencontainers.image.description=This contains a no nonsense, horizontally scalable, ordered job runner backed by Postgres.
org.opencontainers.image.licenses: Apache-2.0 OR MIT
- name: Build and push Docker image
- name: Build and Push Docker image
uses: docker/build-push-action@v3
with:
context: .
Expand Down
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.0] - 2023-03-18
### Changed
- SQLX -> Tokio Postgres + Deadpool. Better performance and allows for finer grained control.
- Actix Web -> Axum.
- Switched to internal migrations runner with proper locking semantics.

## [0.11.0] - 2023-01-03
### Added
- Building of arm64 docker image.
Expand Down Expand Up @@ -107,7 +113,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Future Job support using new `run_at` Job field.
- Reschedule endpoint allowing the Job Runner to manage a unique/singleton Job rescheduling itself.

[Unreleased]: https://github.com/rust-playground/relay-rs/compare/v0.11.0...HEAD
[Unreleased]: https://github.com/rust-playground/relay-rs/compare/v0.12.0...HEAD
[0.12.0]: https://github.com/rust-playground/relay-rs/compare/v0.11.0...v0.12.0
[0.11.0]: https://github.com/rust-playground/relay-rs/compare/v0.10.0...v0.11.0
[0.10.0]: https://github.com/rust-playground/relay-rs/compare/v0.9.0...v0.10.0
[0.9.0]: https://github.com/rust-playground/relay-rs/compare/v0.8.0...v0.9.0
Expand All @@ -121,4 +128,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[0.5.0]: https://github.com/rust-playground/relay-rs/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/rust-playground/relay-rs/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/rust-playground/relay-rs/compare/55f4ffca5f12ebce195d6b53cf2d2f92c9036614...v0.3.0
[0.2.0]: https://github.com/rust-playground/relay-rs/commit/55f4ffca5f12ebce195d6b53cf2d2f92c9036614
[0.2.0]: https://github.com/rust-playground/relay-rs/commit/55f4ffca5f12ebce195d6b53cf2d2f92c9036614

0 comments on commit 0c32e3d

Please sign in to comment.