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

refactor!: upgrade to axum 0.7 #62

Merged
merged 27 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
bc916c4
refactor: add fork `activitypub-federation` submodule
kwaa Jul 26, 2024
68ba15e
refactor: use submodule
kwaa Jul 26, 2024
5fe8f1d
chore(deps): bump version
kwaa Jul 26, 2024
8687f05
fix(api_admin): update middleware
kwaa Jul 26, 2024
f8ba29b
fix(deps): move swagger-ui to workspace deps
kwaa Jul 26, 2024
88e9499
fix(backend): use axum::serve
kwaa Jul 26, 2024
e77c344
chore(tracing): bump deps version
kwaa Jul 26, 2024
9c7e326
fix(ci): checkout submodules
kwaa Jul 26, 2024
6b5b6bf
fix: remove utoipa-swagger-ui
kwaa Jul 26, 2024
93a66a5
fix(flake): update source filter
kwaa Jul 26, 2024
d0c0bff
fix(ci): set submodules=1
kwaa Jul 26, 2024
a96bd4c
fix: update submodule
kwaa Jul 26, 2024
b72a97a
fix: update submodule
kwaa Jul 26, 2024
03b9917
fix(ci): fix command
kwaa Jul 26, 2024
6a15155
fix: update submodule
kwaa Jul 26, 2024
4ba85f3
chore(justfile): update tasks
kwaa Jul 26, 2024
58d1121
refactor: remove submodule
kwaa Sep 12, 2024
ceb6134
refactor(deps): bump `activitypub-federation` to 0.6.0-alpha
kwaa Sep 12, 2024
16db82c
chore: remove submodule options
kwaa Sep 12, 2024
0da1027
chore(deps): bump apalis
kwaa Sep 12, 2024
7ddb270
chore(deps): bump scraper
kwaa Sep 12, 2024
0301532
chore(deps): bump console-subscriber
kwaa Sep 12, 2024
29e9c12
chore(deps): bump version
kwaa Sep 12, 2024
9af4432
chore(flake): remove unused filter
kwaa Sep 12, 2024
794437f
refactor(flake): move rust-analyzer to dev shell
kwaa Sep 12, 2024
4126387
chore: update flake lock
kwaa Sep 12, 2024
9ab3a6d
chore(flake): remove non-existent input
kwaa Sep 12, 2024
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: 2 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
if: "!startsWith(github.ref, 'refs/tags')"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: DeterminateSystems/nix-installer-action@v4
- uses: DeterminateSystems/magic-nix-cache-action@main
- run: nix flake check
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ jobs:
name: build ${{ matrix.target }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: dtolnay/rust-toolchain@nightly
- uses: taiki-e/install-action@just
- uses: mozilla-actions/[email protected]
Expand Down
Loading