Skip to content

Commit ee513d0

Browse files
committed
Update to 0.7.1 release
1 parent 46447f9 commit ee513d0

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

README.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Accelerate your next web development project with this FastAPI/Nuxt.js base project generator.
66

7-
This project is a comprehensively updated fork of [Sebastián Ramírez's](https://github.com/tiangolo) [Full Stack FastAPI and PostgreSQL Base Project Generator](https://github.com/tiangolo/full-stack-fastapi-postgresql). FastAPI is updated to version 0.88 (November 2022), SQLAlchemy to version 1.4.45 (December 2022), and the frontend to Nuxt 3 (November 2022).
7+
This project is a comprehensively updated fork of [Sebastián Ramírez's](https://github.com/tiangolo) [Full Stack FastAPI and PostgreSQL Base Project Generator](https://github.com/tiangolo/full-stack-fastapi-postgresql). FastAPI is updated to version 0.88 (November 2022), SQLAlchemy to version 2.0 (January 2023), and the frontend to Nuxt 3.2 (February 2023).
88

99
Generate a backend and frontend stack using Python, including interactive API documentation.
1010

@@ -49,7 +49,7 @@ Generate a backend and frontend stack using Python, including interactive API do
4949
- **Docker Compose** integration and optimization for local development.
5050
- **Authentication** user management schemas, models, crud and apis already built, with OAuth2 JWT token support & default hashing. Offers _magic link_ authentication, with password fallback, with cookie management, including `access` and `refresh` tokens.
5151
- [**FastAPI**](https://github.com/tiangolo/fastapi) backend with [Inboard](https://inboard.bws.bio/) one-repo Docker images:
52-
- **SQLAlchemy** version 1.4 support for models.
52+
- **SQLAlchemy** version 2.0 support for models.
5353
- **MJML** templates for common email transactions.
5454
- **Metadata Schema** based on [Dublin Core](https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#section-3) for inheritance.
5555
- **Common CRUD** support via generic inheritance.
@@ -156,7 +156,7 @@ And start them:
156156
docker-compose up -d
157157
```
158158

159-
**NOTE:** I find that the **Nuxt** container does not run well in development mode, and does not refresh on changes. In particular, `nuxt/content` is very unpredictable in dev mode running in the container. It is far better to run the `frontend` outside of the container to take advantage of live refresh.
159+
**NOTE:** If you install new Node packages, you will need to rebuild the `frontend`. I also find that `frontend` behaves inconsistently in development mode, and may not refresh on changes. In particular, `nuxt/content` is very unpredictable in dev mode running in the container. You may have more success running the `frontend` outside of the container to take advantage of live refresh.
160160

161161
Change into the `/frontend` folder, and:
162162

@@ -215,6 +215,15 @@ After using this generator, your new project (the directory created) will contai
215215

216216
## Release Notes
217217

218+
### 0.7.1
219+
220+
- SQLAlchemy 1.4 -> 2.0
221+
- Nuxt.js 3.0 -> 3.2.2
222+
- Fixed: `tokenUrl` in `app/api/deps.py`. Thanks to @Choiuijin1125.
223+
- Fixed: SMTP options for TLS must be `ssl`. Thanks to @raouldo.
224+
- Fixed: `libgeos` is a dependency for `shapely` which is a dependency for `neomodel`, and which doesn't appear to be installed correctly on Macs. Thanks to @valsha and @Mocha-L.
225+
- Fixed: `frontend` fails to start in development. Thanks to @pabloapast and @dividor.
226+
218227
### 0.7.0
219228

220229
- New feature: magic (email-based) login, with password fallback

0 commit comments

Comments
 (0)