Skip to content

Commit 345dd0c

Browse files
authored
Merge branch 'fastapi:master' into master
2 parents 172d9a5 + d1df85e commit 345dd0c

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,17 @@ updates:
1414
interval: daily
1515
commit-message:
1616
prefix:
17+
# npm
18+
- package-ecosystem: npm
19+
directory: /
20+
schedule:
21+
interval: daily
22+
commit-message:
23+
prefix:
24+
# Docker
25+
- package-ecosystem: docker
26+
directory: /
27+
schedule:
28+
interval: weekly
29+
commit-message:
30+
prefix:

backend/app/models.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ class ItemUpdate(ItemBase):
7575
# Database model, database table inferred from class name
7676
class Item(ItemBase, table=True):
7777
id: uuid.UUID = Field(default_factory=uuid.uuid4, primary_key=True)
78-
title: str = Field(max_length=255)
7978
owner_id: uuid.UUID = Field(
8079
foreign_key="user.id", nullable=False, ondelete="CASCADE"
8180
)

frontend/src/components/Common/Sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const Sidebar = () => {
4949
<DrawerBody>
5050
<Flex flexDir="column" justify="space-between">
5151
<Box>
52-
<SidebarItems />
52+
<SidebarItems onClose={() => setOpen(false)} />
5353
<Flex
5454
as="button"
5555
onClick={() => {

release-notes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,19 @@
44

55
### Fixes
66

7+
* 🐛 Close sidebar drawer on user selection. PR [#1515](https://github.com/fastapi/full-stack-fastapi-template/pull/1515) by [@dtellz](https://github.com/dtellz).
78
* 🐛 Fix required password validation when editing user fields. PR [#1508](https://github.com/fastapi/full-stack-fastapi-template/pull/1508) by [@jpizquierdo](https://github.com/jpizquierdo).
89

910
### Refactors
1011

12+
* ♻️ Remove redundant field in inherited class. PR [#1520](https://github.com/fastapi/full-stack-fastapi-template/pull/1520) by [@tzway](https://github.com/tzway).
1113
* 🎨 Add minor UI tweaks in Skeletons and other components. PR [#1507](https://github.com/fastapi/full-stack-fastapi-template/pull/1507) by [@alejsdev](https://github.com/alejsdev).
1214
* 🎨 Add minor UI tweaks. PR [#1506](https://github.com/fastapi/full-stack-fastapi-template/pull/1506) by [@alejsdev](https://github.com/alejsdev).
1315

16+
### Internal
17+
18+
* 🔧 Add npm and docker package ecosystems to Dependabot configuration. PR [#1535](https://github.com/fastapi/full-stack-fastapi-template/pull/1535) by [@alejsdev](https://github.com/alejsdev).
19+
1420
## 0.8.0
1521

1622
### Features

0 commit comments

Comments
 (0)