Skip to content
Snippets Groups Projects
  1. Oct 15, 2023
  2. Oct 12, 2023
  3. Oct 05, 2023
    • Mario Oenning's avatar
      fix(deps): update dependencies · 2166426d
      Mario Oenning authored
      
      * Updating typing-extensions (4.5.0 -> 4.8.0)
      * Installing annotated-types (0.5.0)
      * Updating anyio (3.6.2 -> 3.7.1)
      * Installing pydantic-core (2.10.1)
      * Updating certifi (2023.5.7 -> 2023.7.22)
      * Updating cffi (1.15.1 -> 1.16.0)
      * Updating greenlet (2.0.2 -> 3.0.0)
      * Updating markupsafe (2.1.2 -> 2.1.3)
      * Updating packaging (23.1 -> 23.2)
      * Updating pluggy (1.0.0 -> 1.3.0)
      * Updating pydantic (1.10.7 -> 2.4.2)
      * Updating charset-normalizer (3.1.0 -> 3.3.0)
      * Updating click (8.1.3 -> 8.1.7)
      * Updating coverage (7.2.7 -> 7.3.2)
      * Updating cryptography (40.0.2 -> 41.0.4)
      * Updating dnspython (2.3.0 -> 2.4.2)
      * Updating execnet (1.9.0 -> 2.0.2)
      * Updating fastapi (0.100.1 -> 0.103.2)
      * Updating httpcore (0.17.0 -> 0.17.3)
      * Updating parse (1.19.0 -> 1.19.1)
      * Updating prometheus-client (0.16.0 -> 0.17.1)
      * Updating pytest (7.4.0 -> 7.4.2)
      * Updating redis (4.6.0 -> 5.0.1)
      * Updating urllib3 (2.0.2 -> 2.0.6)
      * Updating aiofiles (23.1.0 -> 23.2.1)
      * Updating alembic (1.11.2 -> 1.12.0)
      * Updating fakeredis (2.17.0 -> 2.19.0)
      * Updating filelock (3.12.2 -> 3.12.4)
      * Updating orjson (3.9.2 -> 3.9.7)
      * Updating protobuf (4.23.4 -> 4.24.4)
      * Updating pygit2 (1.12.2 -> 1.13.1)
      * Updating werkzeug (2.3.6 -> 3.0.0)
      
      Signed-off-by: default avatarmoson <moson@archlinux.org>
      2166426d
  4. Oct 02, 2023
  5. Sep 30, 2023
  6. Sep 26, 2023
  7. Sep 03, 2023
  8. Sep 01, 2023
    • Mario Oenning's avatar
      fix(test): Clear previous prometheus data for test · 1433553c
      Mario Oenning authored
      
      It could happen that test data is already generated by a previous test.
      (running in the same worker)
      
      Make sure we clear everything before performing our checks.
      
      Signed-off-by: default avatarmoson <moson@archlinux.org>
      1433553c
    • Mario Oenning's avatar
      fix(test): Remove file locking and semaphore · 5699e9bb
      Mario Oenning authored
      
      All tests within a file run in the same worker and out test DB names
      are unique per file as well. We don't really need a locking
      mechanism here.
      
      Same is valid for the test-emails. The only potential issue is that it
      might try to create the same directory multiple times and thus run
      into an error. However, that can be covered by specifying
      "exist_ok=True" with os.makedirs such that those errors are ignored.
      
      Signed-off-by: default avatarmoson <moson@archlinux.org>
      5699e9bb
  9. Aug 27, 2023
  10. Aug 18, 2023
  11. Aug 04, 2023
  12. Jul 27, 2023
  13. Jul 25, 2023
  14. Jul 24, 2023
  15. Jul 23, 2023
  16. Jul 22, 2023
  17. Jul 20, 2023
  18. Jul 17, 2023
  19. Jul 15, 2023
  20. Jul 13, 2023
    • Mario Oenning's avatar
      fix: /rss lazy load issue & perf improvements · 27819b44
      Mario Oenning authored
      
      Some fixes for the /rss endpoints
      
      * Load all data in one go:
      Previously data was lazy loaded thus it made several sub-queries per
      package (> 200 queries for composing the rss data for a single request).
      Now we are performing a single SQL query.
      (request time improvement: 550ms -> 130ms)
      This also fixes aurweb-errors#510 and alike
      
      * Remove some "dead code":
      The fields "source, author, link" were never included in the rss output
      (wrong or insufficient data passed to the different entry.xyz functions)
      Nobody seems to be missing them anyways, so let's remove em.
      
      * Remove "Last-Modified" header:
      Obsolete since nginx can/will only handle "If-Modified-Since" requests
      in it's current configuration. All requests are passed to fastapi anyways.
      
      Signed-off-by: default avatarmoson <moson@archlinux.org>
      27819b44
  21. Jul 10, 2023
  22. Jul 09, 2023
  23. Jul 08, 2023
Loading