File tree Expand file tree Collapse file tree 5 files changed +36
-10
lines changed
{% if github_actions %}.github{% endif %}/workflows Expand file tree Collapse file tree 5 files changed +36
-10
lines changed Original file line number Diff line number Diff line change 22
33This file documents changes to [ fastapi-mvc/copier-project] ( https://github.com/fastapi-mvc/copier-project ) . The release numbering uses [ semantic versioning] ( http://semver.org ) .
44
5+ ## Unreleased
6+
7+ ### Features
8+
9+ * Refactor Nix expressions to flake [ fastapi-mvc/fastapi-mvc #217 ] ( https://github.com/fastapi-mvc/fastapi-mvc/issues/217 ) . PR [ #7 ] ( https://github.com/fastapi-mvc/copier-project/pull/7 )
10+
11+ ### Docs
12+
13+ * Fix api documentation tocdepth [ c0de3c0] ( https://github.com/fastapi-mvc/copier-project/commit/c0de3c07f47dee42cb6ffa974e89e4021d737c38 ) .
14+ * Update nix documentation [ 0938db7] ( https://github.com/fastapi-mvc/copier-project/commit/0938db7b519b675a14bba968db9833e013ddc3cc ) .
15+
16+ ### Internal
17+
18+ * Update project dependencies. PR [ #8 ] ( https://github.com/fastapi-mvc/copier-project/pull/8 )
19+ * pytest (7.1.3 -> 7.2.0)
20+ * pytest-asyncio (0.19.0 -> 0.20.3)
21+ * Sphinx (5.2.3 -> 5.3.0)
22+ * uvicorn (0.18.3 -> 0.20.0)
23+ * fastapi (0.85.1 -> 0.88.0)
24+ * Add development dependency - httpx. PR [ #8 ] ( https://github.com/fastapi-mvc/copier-project/pull/8 )
25+ * Update project GitHub Actions. PR [ #8 ] ( https://github.com/fastapi-mvc/copier-project/pull/8 )
26+ * cachix/cachix-action (10 -> 12)
27+ * cachix/install-nix-action (17 -> 18)
28+ * crazy-max/ghaction-github-pages (3.0.0 -> 3.1.0)
29+
530## 0.1.1 (17.10.2022)
631
732### Fixed
Original file line number Diff line number Diff line change 77[]({{repo_url}}/actions/workflows/integration.yml)
88{% - endif %}
99[](https://github.com/psf/black)
10- 
10+ 
1111
1212
1313
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ classifiers = [
1717
1818[tool.poetry.dependencies]
1919python = "^3.8"
20- fastapi = "~0.85 .0"
21- uvicorn = {extras = ["standard"], version = "~0.18.3 "}
20+ fastapi = "~0.88 .0"
21+ uvicorn = {extras = ["standard"], version = "~0.20.0 "}
2222gunicorn = "~20.1.0"
2323click = "~8.1.3"
2424{% - if redis %}
@@ -29,10 +29,11 @@ aiohttp = "~3.8.3"
2929{% - endif %}
3030
3131[tool.poetry.dev-dependencies]
32- pytest = "~7.1.3 "
32+ pytest = "~7.2.0 "
3333pytest-cov = "~4.0.0"
34- pytest-asyncio = "~0.19.0 "
34+ pytest-asyncio = "~0.20.3 "
3535requests = "~2.28.1"
36+ httpx = "~0.23.1"
3637{% - if aiohttp %}
3738aioresponses = "~0.7.3"
3839{% - endif %}
@@ -41,7 +42,7 @@ flake8-docstrings = "~1.6.0"
4142flake8-import-order = "~0.18.1"
4243flake8-todo = "^0.7"
4344black = "~22.8.0"
44- Sphinx = "~5.2.3 "
45+ Sphinx = "~5.3.0 "
4546Pallets-Sphinx-Themes = "~2.0.2"
4647myst-parser = "~0.18.1"
4748
Original file line number Diff line number Diff line change 3636 path : site
3737 retention-days : 60
3838 - name : Deploy to GitHub Pages
39- uses : crazy-max/ghaction-github-pages@v3.0 .0
39+ uses : crazy-max/ghaction-github-pages@v3.1 .0
4040 with :
4141 target_branch : gh-pages
4242 build_dir : site
Original file line number Diff line number Diff line change 3333 runs-on: ubuntu-latest
3434
3535 steps:
36- - uses: cachix/install-nix-action@v17
36+ - uses: cachix/install-nix-action@v18
3737 with:
3838 nix_path: ${{ env.NIX_CHANNEL }}
3939 - uses: actions/checkout@v3
@@ -57,15 +57,15 @@ jobs:
5757 steps:
5858 - uses: actions/checkout@v3
5959 - name: Install Nix ❄️
60- uses: cachix/install-nix-action@v17
60+ uses: cachix/install-nix-action@v18
6161 with:
6262 extra_nix_config: "system-features = nixos-test benchmark big-parallel kvm"
6363 nix_path: ${{ env.NIX_CHANNEL }}
6464 # Remove bellow step if you do not want to use Cachix - Nix binary cache.
6565 # For OpenSource projects there is free 5GB of storage.
6666 # https://www.cachix.org
6767 - name: Setup Cachix ❄️
68- uses: cachix/cachix-action@v10
68+ uses: cachix/cachix-action@v12
6969 with:
7070 name: fastapi-mvc
7171 authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
You can’t perform that action at this time.
0 commit comments