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

[pip] Bump websockets from 14.0 to 14.1 #72

Merged
merged 1 commit into from
Nov 14, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 14, 2024

Bumps websockets from 14.0 to 14.1.

Release notes

Sourced from websockets's releases.

14.1

See https://websockets.readthedocs.io/en/stable/project/changelog.html for details.

Commits
  • 0403823 Release version 14.1.
  • d0015c9 Fix refactoring error in a78b5546.
  • 7438b8e Stop testing on PyPy 3.9.
  • 1f19487 Add changelog for previous commit.
  • de2e7fb Add close_code and close_reason to new implementations.
  • 9a2f39f Support max_queue=None like the legacy implementation.
  • 3034834 Support recv() after the connection is closed.
  • bdfc8cf Uniformize comments.
  • f17c11a Keep queued messages after abort.
  • 86bf0c5 Remove unnecessary branch.
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [websockets](https://github.com/python-websockets/websockets) from 14.0 to 14.1.
- [Release notes](https://github.com/python-websockets/websockets/releases)
- [Commits](python-websockets/websockets@14.0...14.1)

---
updated-dependencies:
- dependency-name: websockets
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Nov 14, 2024
Copy link

github-actions bot commented Nov 14, 2024

🎉 All tests #1 of d764814 passed successfully.

Coverage report
Name                                                       Stmts   Miss  Cover   Missing
----------------------------------------------------------------------------------------
server/__init__.py                                             3      0   100%
server/config.py                                              15      0   100%
server/globals.py                                             59     17    71%   15-16, 20-21, 48-54, 68-71, 88, 94, 100, 106
server/v1/__init__.py                                          5      0   100%
server/v1/app.py                                              30      0   100%
server/v1/database.py                                         33      2    94%   42, 52
server/v1/models/__init__.py                                   7      0   100%
server/v1/models/auth.py                                      38      2    95%   70-71
server/v1/models/info.py                                      33      7    79%   31, 41, 44, 47, 50, 53, 56
server/v1/models/reg_request.py                              126     16    87%   60-61, 65, 72, 79, 96, 127, 148, 151, 157, 160, 163, 166, 244, 258, 268
server/v1/models/residents.py                                138     29    79%   37-77, 113, 120, 137, 152, 171-172, 176, 183, 190, 212, 226-229, 235, 271
server/v1/models/results.py                                    8      0   100%
server/v1/models/rooms.py                                     90     36    60%   28-40, 53-84, 97-103, 139-140, 143-144, 162, 200-201, 204-205, 229
server/v1/models/snowflake.py                                 16      4    75%   22, 25-26, 31
server/v1/routes/__init__.py                                   4      0   100%
server/v1/routes/admin/__init__.py                             4      0   100%
server/v1/routes/admin/login.py                               27      0   100%
server/v1/routes/admin/registration_requests/__init__.py       4      0   100%
server/v1/routes/admin/registration_requests/accept.py        13      2    85%   40-41
server/v1/routes/admin/registration_requests/count.py         12      2    83%   49-50
server/v1/routes/admin/registration_requests/reject.py        13      2    85%   40-41
server/v1/routes/admin/registration_requests/root.py          13      2    85%   55-56
server/v1/routes/admin/residents/__init__.py                   4      0   100%
server/v1/routes/admin/residents/count.py                     12      2    83%   41-42
server/v1/routes/admin/residents/delete.py                    13      2    85%   40-41
server/v1/routes/admin/residents/root.py                      13      2    85%   55-56
server/v1/routes/admin/residents/update.py                    15      3    80%   39, 43-44
server/v1/routes/admin/rooms/__init__.py                       4      0   100%
server/v1/routes/admin/rooms/count.py                         12      2    83%   39-40
server/v1/routes/admin/rooms/delete.py                        13      5    62%   36-41
server/v1/routes/admin/rooms/root.py                          13      2    85%   41-42
server/v1/routes/admin/rooms/update.py                        16      8    50%   36-45
server/v1/routes/login.py                                     13      0   100%
server/v1/routes/register.py                                  17      0   100%
server/v1/routes/residents/__init__.py                         3      0   100%
server/v1/routes/residents/me.py                              11      1    91%   35
server/v1/routes/residents/update.py                          15      7    53%   36-44
server/v1/routes/residents/update_authorization.py            21      7    67%   43-51
server/v1/tests/__init__.py                                    1      0   100%
server/v1/utils.py                                            45      2    96%   72, 77
----------------------------------------------------------------------------------------
TOTAL                                                        932    164    82%
Performance report
  • /
$ wrk --script root.lua -d 20s http://localhost:8000
Running 20s test @ http://localhost:8000
  2 threads and 10 connections
  Thread Stats   Avg      Stdev     Max   +/- Stdev
    Latency     1.66ms  546.35us   8.12ms   59.41%
    Req/Sec     3.01k   631.72     3.90k    62.50%
  119917 requests in 20.01s, 14.52MB read
Requests/sec:   5994.04
Transfer/sec:    743.40KB
  • /api/v1/admin/login
$ wrk --script api/v1/admin/login.lua -d 20s http://localhost:8000/api/v1/admin/login
Running 20s test @ http://localhost:8000/api/v1/admin/login
  2 threads and 10 connections
  Thread Stats   Avg      Stdev     Max   +/- Stdev
    Latency     8.23ms    2.08ms  34.74ms   89.72%
    Req/Sec   613.66     36.95   686.00     78.25%
  24447 requests in 20.01s, 3.68MB read
  Non-2xx or 3xx responses: 24447
Requests/sec:   1221.58
Transfer/sec:    188.49KB

@Serious-senpai Serious-senpai merged commit 60d7687 into main Nov 14, 2024
23 checks passed
@dependabot dependabot bot deleted the dependabot/pip/websockets-14.1 branch November 14, 2024 10:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant