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

✨ fully implement HTTP 1.1 #19

Open
lstuma opened this issue Oct 31, 2023 · 3 comments
Open

✨ fully implement HTTP 1.1 #19

lstuma opened this issue Oct 31, 2023 · 3 comments
Labels
🌐 Protocols & Standards Issues related to conforming with protocols or global standards. ✨ new feature New feature or request ⚡ performance Performance related issue

Comments

@lstuma
Copy link
Member

lstuma commented Oct 31, 2023

No description provided.

@lstuma lstuma added ✨ new feature New feature or request 🚑 critical Issue needs to be fixed ASAP ⚡ performance Performance related issue and removed 🚑 critical Issue needs to be fixed ASAP labels Oct 31, 2023
lstuma referenced this issue Nov 1, 2023
 ├─ 🏗️ middleware is now structured into three parts
 │    ├─ preprocessing: parse request, evaluate and validate request
 │    ├─ proccessing: gather response from application logic
 │    └─ postprocessing: add server-side headers etc.
 └─ 🔧🎨 rewrote pigeon.conf.settings
       ├─  can now be imported using `from pigeon.conf import settings` and cannot be directly created from module
       └─ if one wishes to create settings from a module one must first create a pigeon.conf.settings.Settings object and then use Settings.override(module) to overwrite the settings using the module
lstuma referenced this issue Nov 1, 2023
 + checking for Host header in HTTP/1.1 requests or higher
 + allow reuse of connection for multiple HTTP requests
@lstuma
Copy link
Member Author

lstuma commented Nov 1, 2023

still missing HTTP/1.1 features (taken from https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Evolution_of_HTTP):

  • chunked responses
  • chunked requests
  • content negotiation
  • cache-control

lstuma referenced this issue Nov 1, 2023
├── ✨ the tags:
│     pigeon.middleware.MiddlewareTags
│     attribute will be set by the middleware for every
│     request
└── ✏️🐛 fixed typo
@lstuma
Copy link
Member Author

lstuma commented Nov 1, 2023

  • chunked responses
  • chunked requests
  • content negotiation
  • cache-control

lstuma referenced this issue Nov 2, 2023
├── ✨ added content-negotiation
├── 💥🏗️ rework of midleware main processing
└── 🔧 rework of settings
lstuma referenced this issue Nov 2, 2023
├── 🏗️💥 major changes to midleware main processing
└── 🔧 rework of settings
@lstuma
Copy link
Member Author

lstuma commented Nov 2, 2023

  • chunked responses
  • chunked requests
  • content negotiation
  • cache-control

@lstuma lstuma changed the title ✨ implement HTTP 1.1 ✨ fully implement HTTP 1.1 Nov 5, 2023
@lstuma lstuma added the 🌐 Protocols & Standards Issues related to conforming with protocols or global standards. label Nov 6, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🌐 Protocols & Standards Issues related to conforming with protocols or global standards. ✨ new feature New feature or request ⚡ performance Performance related issue
Projects
None yet
Development

No branches or pull requests

1 participant