-
Notifications
You must be signed in to change notification settings - Fork 2k
Upgrade aiohttp #9348
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
Merged
msmith-techempower
merged 19 commits into
TechEmpower:master
from
Dreamsorcerer:patch-1
Mar 18, 2025
Merged
Upgrade aiohttp #9348
Changes from 6 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
0ed30d3
Upgrade aiohttp
Dreamsorcerer 5228f7e
Update aiohttp.dockerfile
Dreamsorcerer 08e9ddb
Update aiohttp-pg-raw.dockerfile
Dreamsorcerer 3ed5ad1
Update aiohttp-pg-raw.dockerfile
Dreamsorcerer a5e8ca2
Update main.py
Dreamsorcerer bf3b64a
Update models.py
Dreamsorcerer 4ab07f3
Update frameworks/Python/aiohttp/requirements.txt
Dreamsorcerer 831595d
Update models.py
Dreamsorcerer 58be08c
Update aiohttp.dockerfile
Dreamsorcerer c0303c3
Update aiohttp-pg-raw.dockerfile
Dreamsorcerer f770061
Update requirements.txt
Dreamsorcerer 1beae77
Update requirements.txt
Dreamsorcerer 69e353a
Update requirements.txt
Dreamsorcerer d4ea7ae
Update aiohttp-pg-raw.dockerfile
Dreamsorcerer 6240663
Update aiohttp.dockerfile
Dreamsorcerer 0a77938
Update main.py
Dreamsorcerer d8119ee
Update requirements.txt
Dreamsorcerer 092fd0d
Update aiohttp-pg-raw.dockerfile
Dreamsorcerer 2afb4cc
Update aiohttp.dockerfile
Dreamsorcerer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,20 +1,20 @@ | ||
| from sqlalchemy import Column, Integer, String | ||
| from sqlalchemy.ext.declarative import declarative_base | ||
| from sqlalchemy.orm import DeclarativeBase, Mapped | ||
|
|
||
| Base = declarative_base() | ||
| class Base(DeclarativeBase): | ||
| """Base for models.""" | ||
|
|
||
|
|
||
| class World(Base): | ||
| __tablename__ = 'world' | ||
| id = Column(Integer, primary_key=True) | ||
| randomnumber = Column(Integer) | ||
| id: Mapped[int] = mapped_column(primary_key=True) | ||
| randomnumber: Mapped[int] | ||
|
|
||
| sa_worlds = World.__table__ | ||
|
|
||
|
|
||
| class Fortune(Base): | ||
| __tablename__ = 'fortune' | ||
| id = Column(Integer, primary_key=True) | ||
| message = Column(String) | ||
| id: Mapped[int] = mapped_column(primary_key=True) | ||
| message: Mapped[str] | ||
|
|
||
| sa_fortunes = Fortune.__table__ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,8 @@ | ||
| aiohttp==3.10.2 | ||
| asyncpg==0.25.0 | ||
| cchardet==2.1.7 | ||
| gunicorn==20.1 | ||
| aiohttp==3.10.10 | ||
| asyncpg==0.30.0 | ||
| gunicorn==23.0.0 | ||
| jinja2==3.1.4 | ||
| psycopg2==2.9.2 | ||
| SQLAlchemy==1.4.29 | ||
| ujson==5.4.0 | ||
| uvloop==0.16 | ||
| psycopg2==3.2.3 | ||
| SQLAlchemy==2.0.36 | ||
| ujson==5.10.0 | ||
| uvloop==0.21.0 | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.