kinto 19.6.0__tar.gz → 23.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (428) hide show
  1. {kinto-19.6.0 → kinto-23.3.0}/.github/workflows/publish.yml +6 -6
  2. {kinto-19.6.0 → kinto-23.3.0}/.github/workflows/scheduled.yml +1 -1
  3. {kinto-19.6.0 → kinto-23.3.0}/.github/workflows/test.yml +20 -16
  4. {kinto-19.6.0 → kinto-23.3.0}/.gitignore +0 -1
  5. {kinto-19.6.0 → kinto-23.3.0}/CONTRIBUTORS.rst +1 -0
  6. {kinto-19.6.0 → kinto-23.3.0}/Dockerfile +2 -1
  7. {kinto-19.6.0 → kinto-23.3.0}/Makefile +58 -66
  8. {kinto-19.6.0/kinto.egg-info → kinto-23.3.0}/PKG-INFO +6 -5
  9. {kinto-19.6.0 → kinto-23.3.0}/README.rst +1 -2
  10. kinto-23.3.0/SUPPORT.md +3 -0
  11. {kinto-19.6.0 → kinto-23.3.0}/app.wsgi +2 -0
  12. {kinto-19.6.0 → kinto-23.3.0}/constraints.in +0 -1
  13. {kinto-19.6.0 → kinto-23.3.0}/constraints.txt +28 -26
  14. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/accounts.rst +0 -131
  15. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/authentication.rst +3 -3
  16. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/errors.rst +1 -1
  17. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/history.rst +68 -0
  18. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/index.rst +0 -1
  19. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/openapi.rst +3 -3
  20. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/openid.rst +1 -1
  21. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/permissions.rst +5 -5
  22. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/utilities.rst +5 -0
  23. {kinto-19.6.0 → kinto-23.3.0}/docs/api/index.rst +7 -6
  24. {kinto-19.6.0 → kinto-23.3.0}/docs/commandline.rst +17 -25
  25. {kinto-19.6.0 → kinto-23.3.0}/docs/community.rst +4 -21
  26. {kinto-19.6.0 → kinto-23.3.0}/docs/concepts.rst +1 -1
  27. {kinto-19.6.0 → kinto-23.3.0}/docs/configuration/good-practices.rst +2 -22
  28. {kinto-19.6.0 → kinto-23.3.0}/docs/configuration/settings.rst +36 -189
  29. {kinto-19.6.0 → kinto-23.3.0}/docs/core/cache.rst +6 -0
  30. {kinto-19.6.0 → kinto-23.3.0}/docs/core/glossary.rst +0 -3
  31. {kinto-19.6.0 → kinto-23.3.0}/docs/faq.rst +37 -77
  32. {kinto-19.6.0 → kinto-23.3.0}/docs/images/architecture.svg +118 -134
  33. {kinto-19.6.0 → kinto-23.3.0}/docs/overview.rst +15 -59
  34. kinto-23.3.0/docs/requirements.txt +11 -0
  35. {kinto-19.6.0 → kinto-23.3.0}/docs/troubleshooting.rst +1 -1
  36. {kinto-19.6.0 → kinto-23.3.0}/docs/tutorials/first-steps.rst +24 -25
  37. {kinto-19.6.0 → kinto-23.3.0}/docs/tutorials/index.rst +0 -4
  38. {kinto-19.6.0 → kinto-23.3.0}/docs/tutorials/install.rst +2 -48
  39. {kinto-19.6.0 → kinto-23.3.0}/docs/tutorials/notifications-custom.rst +0 -102
  40. {kinto-19.6.0 → kinto-23.3.0}/docs/tutorials/permissions.rst +12 -12
  41. {kinto-19.6.0 → kinto-23.3.0}/docs/tutorials/write-plugin.rst +1 -4
  42. {kinto-19.6.0 → kinto-23.3.0}/kinto/__init__.py +1 -1
  43. {kinto-19.6.0 → kinto-23.3.0}/kinto/__main__.py +19 -17
  44. {kinto-19.6.0 → kinto-23.3.0}/kinto/config/__init__.py +23 -0
  45. {kinto-19.6.0 → kinto-23.3.0}/kinto/config/kinto.tpl +5 -15
  46. {kinto-19.6.0 → kinto-23.3.0/kinto}/contribute.json +0 -3
  47. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/__init__.py +14 -0
  48. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cache/__init__.py +35 -0
  49. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cache/memcached.py +2 -0
  50. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cache/memory.py +6 -1
  51. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cache/postgresql/__init__.py +3 -0
  52. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/initialization.py +54 -53
  53. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/metrics.py +8 -7
  54. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/resource/__init__.py +9 -1
  55. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/resource/schema.py +4 -4
  56. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/resource/viewset.py +2 -2
  57. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/scripts.py +15 -0
  58. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/__init__.py +40 -1
  59. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/memory.py +69 -4
  60. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/__init__.py +111 -3
  61. kinto-23.3.0/kinto/core/storage/postgresql/migrations/migration_022_023.sql +5 -0
  62. kinto-23.3.0/kinto/core/storage/postgresql/migrations/migration_023_024.sql +6 -0
  63. kinto-23.3.0/kinto/core/storage/postgresql/migrations/migration_024_025.sql +6 -0
  64. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/pool.py +1 -1
  65. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/schema.sql +11 -2
  66. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/testing.py +120 -1
  67. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/utils.py +1 -1
  68. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/views/errors.py +2 -0
  69. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/views/hello.py +4 -0
  70. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/accounts/__init__.py +2 -19
  71. kinto-23.3.0/kinto/plugins/accounts/authentication.py +63 -0
  72. kinto-23.3.0/kinto/plugins/accounts/utils.py +13 -0
  73. kinto-19.6.0/kinto/plugins/accounts/views/__init__.py → kinto-23.3.0/kinto/plugins/accounts/views.py +7 -62
  74. kinto-23.3.0/kinto/plugins/admin/VERSION +1 -0
  75. kinto-23.3.0/kinto/plugins/admin/build/VERSION +1 -0
  76. kinto-23.3.0/kinto/plugins/admin/build/assets/index-CYFwtKtL.css +6 -0
  77. kinto-23.3.0/kinto/plugins/admin/build/assets/index-DJ0m93zA.js +149 -0
  78. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/admin/build/index.html +2 -2
  79. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/admin/views.py +1 -1
  80. kinto-23.3.0/kinto/plugins/history/__init__.py +65 -0
  81. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/history/listener.py +58 -5
  82. kinto-23.3.0/kinto/plugins/history/views.py +185 -0
  83. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/prometheus.py +133 -36
  84. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/statsd.py +8 -1
  85. {kinto-19.6.0 → kinto-23.3.0}/kinto/views/contribute.py +12 -12
  86. {kinto-19.6.0 → kinto-23.3.0/kinto.egg-info}/PKG-INFO +6 -5
  87. {kinto-19.6.0 → kinto-23.3.0}/kinto.egg-info/SOURCES.txt +8 -33
  88. {kinto-19.6.0 → kinto-23.3.0}/kinto.egg-info/requires.txt +1 -1
  89. {kinto-19.6.0 → kinto-23.3.0}/pyproject.toml +2 -2
  90. {kinto-19.6.0 → kinto-23.3.0}/scripts/pull-kinto-admin.sh +2 -1
  91. {kinto-19.6.0 → kinto-23.3.0}/tests/browser.ini +2 -0
  92. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/test_events.py +3 -2
  93. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/test_filter.py +4 -0
  94. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/test_schema.py +2 -2
  95. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_initialization.py +25 -34
  96. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_logging.py +25 -1
  97. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_metrics.py +4 -2
  98. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_scripts.py +17 -0
  99. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_storage.py +2 -0
  100. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_views_errors.py +10 -0
  101. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_views_hello.py +18 -0
  102. {kinto-19.6.0 → kinto-23.3.0}/tests/functional.ini +7 -0
  103. {kinto-19.6.0 → kinto-23.3.0}/tests/functional.py +11 -0
  104. {kinto-19.6.0 → kinto-23.3.0}/tests/plugins/test_accounts.py +1 -389
  105. {kinto-19.6.0 → kinto-23.3.0}/tests/plugins/test_history.py +397 -7
  106. {kinto-19.6.0 → kinto-23.3.0}/tests/plugins/test_prometheus.py +67 -3
  107. kinto-23.3.0/tests/test_cache_metrics.py +70 -0
  108. {kinto-19.6.0 → kinto-23.3.0}/tests/test_configuration/test.ini +5 -15
  109. {kinto-19.6.0 → kinto-23.3.0}/tests/test_main.py +34 -19
  110. {kinto-19.6.0 → kinto-23.3.0}/tests/test_views_contribute.py +1 -1
  111. kinto-23.3.0/tests/test_views_metrics.py +72 -0
  112. {kinto-19.6.0 → kinto-23.3.0}/tests/test_views_permissions.py +1 -1
  113. kinto-19.6.0/SUPPORT.md +0 -10
  114. kinto-19.6.0/docs/api/1.x/quotas.rst +0 -97
  115. kinto-19.6.0/docs/images/logo-demos.svg +0 -80
  116. kinto-19.6.0/docs/images/logo-indexing.svg +0 -1
  117. kinto-19.6.0/docs/images/logo-livesync.svg +0 -114
  118. kinto-19.6.0/docs/images/logo-offline.svg +0 -84
  119. kinto-19.6.0/docs/images/logo-quotas.svg +0 -68
  120. kinto-19.6.0/docs/images/logo-signature.svg +0 -70
  121. kinto-19.6.0/docs/requirements.txt +0 -11
  122. kinto-19.6.0/docs/tutorials/app-examples.rst +0 -14
  123. kinto-19.6.0/docs/tutorials/authentication-github.rst +0 -360
  124. kinto-19.6.0/docs/tutorials/client-side-encryption.rst +0 -19
  125. kinto-19.6.0/docs/tutorials/notifications-websockets.rst +0 -124
  126. kinto-19.6.0/kinto/plugins/accounts/authentication.py +0 -109
  127. kinto-19.6.0/kinto/plugins/accounts/mails.py +0 -96
  128. kinto-19.6.0/kinto/plugins/accounts/utils.py +0 -146
  129. kinto-19.6.0/kinto/plugins/accounts/views/validation.py +0 -136
  130. kinto-19.6.0/kinto/plugins/admin/VERSION +0 -1
  131. kinto-19.6.0/kinto/plugins/admin/build/VERSION +0 -1
  132. kinto-19.6.0/kinto/plugins/admin/build/assets/asn1-CGOzndHr.js +0 -1
  133. kinto-19.6.0/kinto/plugins/admin/build/assets/clojure-BMjYHr_A.js +0 -1
  134. kinto-19.6.0/kinto/plugins/admin/build/assets/css-BnMrqG3P.js +0 -1
  135. kinto-19.6.0/kinto/plugins/admin/build/assets/index-BdpYyatM.css +0 -6
  136. kinto-19.6.0/kinto/plugins/admin/build/assets/index-n-QM_iZE.js +0 -165
  137. kinto-19.6.0/kinto/plugins/admin/build/assets/javascript-iSgyE4tI.js +0 -1
  138. kinto-19.6.0/kinto/plugins/admin/build/assets/mllike-C_8OmSiT.js +0 -1
  139. kinto-19.6.0/kinto/plugins/admin/build/assets/python-BuPzkPfP.js +0 -1
  140. kinto-19.6.0/kinto/plugins/admin/build/assets/rpm-CTu-6PCP.js +0 -1
  141. kinto-19.6.0/kinto/plugins/admin/build/assets/sql-C4g8LzGK.js +0 -1
  142. kinto-19.6.0/kinto/plugins/admin/build/assets/ttcn-cfg-BIkV9KBc.js +0 -1
  143. kinto-19.6.0/kinto/plugins/history/__init__.py +0 -31
  144. kinto-19.6.0/kinto/plugins/history/views.py +0 -66
  145. kinto-19.6.0/kinto/plugins/quotas/__init__.py +0 -21
  146. kinto-19.6.0/kinto/plugins/quotas/listener.py +0 -226
  147. kinto-19.6.0/kinto/plugins/quotas/scripts.py +0 -80
  148. kinto-19.6.0/kinto/plugins/quotas/utils.py +0 -7
  149. kinto-19.6.0/kinto/scripts.py +0 -41
  150. kinto-19.6.0/tests/plugins/test_quotas.py +0 -1142
  151. kinto-19.6.0/tests/test_scripts.py +0 -32
  152. kinto-19.6.0/tests/test_views_metrics.py +0 -45
  153. {kinto-19.6.0 → kinto-23.3.0}/.dockerignore +0 -0
  154. {kinto-19.6.0 → kinto-23.3.0}/.github/CODE_OF_CONDUCT.md +0 -0
  155. {kinto-19.6.0 → kinto-23.3.0}/.github/CONTRIBUTING.md +0 -0
  156. {kinto-19.6.0 → kinto-23.3.0}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  157. {kinto-19.6.0 → kinto-23.3.0}/.github/dependabot.yml +0 -0
  158. {kinto-19.6.0 → kinto-23.3.0}/.github/release.yml +0 -0
  159. {kinto-19.6.0 → kinto-23.3.0}/.github/workflows/labels.yaml +0 -0
  160. {kinto-19.6.0 → kinto-23.3.0}/.readthedocs.yaml +0 -0
  161. {kinto-19.6.0 → kinto-23.3.0}/CHANGELOG.rst +0 -0
  162. {kinto-19.6.0 → kinto-23.3.0}/LICENSE +0 -0
  163. {kinto-19.6.0 → kinto-23.3.0}/SECURITY.md +0 -0
  164. {kinto-19.6.0 → kinto-23.3.0}/docker-compose.yml +0 -0
  165. {kinto-19.6.0 → kinto-23.3.0}/docs/_static/piwik.js +0 -0
  166. {kinto-19.6.0 → kinto-23.3.0}/docs/_static/theme_overrides.css +0 -0
  167. {kinto-19.6.0 → kinto-23.3.0}/docs/_templates/footer.html +0 -0
  168. {kinto-19.6.0 → kinto-23.3.0}/docs/_templates/indexcontent.html +0 -0
  169. {kinto-19.6.0 → kinto-23.3.0}/docs/_templates/layout.html +0 -0
  170. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/_details-delete-list.rst +0 -0
  171. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/_details-delete-object.rst +0 -0
  172. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/_details-get-list.rst +0 -0
  173. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/_details-get-object.rst +0 -0
  174. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/_details-head-list.rst +0 -0
  175. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/_details-patch-object.rst +0 -0
  176. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/_details-post-list.rst +0 -0
  177. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/_details-put-object.rst +0 -0
  178. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/_status-delete-list.rst +0 -0
  179. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/_status-delete-object.rst +0 -0
  180. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/_status-get-list.rst +0 -0
  181. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/_status-get-object.rst +0 -0
  182. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/_status-patch-object.rst +0 -0
  183. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/_status-post-list.rst +0 -0
  184. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/_status-put-object.rst +0 -0
  185. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/admin.rst +0 -0
  186. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/backoff.rst +0 -0
  187. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/batch.rst +0 -0
  188. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/buckets.rst +0 -0
  189. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/collections.rst +0 -0
  190. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/deprecation.rst +0 -0
  191. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/filtering.rst +0 -0
  192. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/flush.rst +0 -0
  193. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/groups.rst +0 -0
  194. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/pagination.rst +0 -0
  195. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/records.rst +0 -0
  196. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/selecting_fields.rst +0 -0
  197. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/sorting.rst +0 -0
  198. {kinto-19.6.0 → kinto-23.3.0}/docs/api/1.x/timestamps.rst +0 -0
  199. {kinto-19.6.0 → kinto-23.3.0}/docs/api/versioning.rst +0 -0
  200. {kinto-19.6.0 → kinto-23.3.0}/docs/changelog.rst +0 -0
  201. {kinto-19.6.0 → kinto-23.3.0}/docs/conf.py +0 -0
  202. {kinto-19.6.0 → kinto-23.3.0}/docs/configuration/index.rst +0 -0
  203. {kinto-19.6.0 → kinto-23.3.0}/docs/configuration/production.rst +0 -0
  204. {kinto-19.6.0 → kinto-23.3.0}/docs/core/_static/theme_overrides.css +0 -0
  205. {kinto-19.6.0 → kinto-23.3.0}/docs/core/api.rst +0 -0
  206. {kinto-19.6.0 → kinto-23.3.0}/docs/core/decorators.rst +0 -0
  207. {kinto-19.6.0 → kinto-23.3.0}/docs/core/errors.rst +0 -0
  208. {kinto-19.6.0 → kinto-23.3.0}/docs/core/images/cliquet-base.png +0 -0
  209. {kinto-19.6.0 → kinto-23.3.0}/docs/core/images/cliquet-mozilla.png +0 -0
  210. {kinto-19.6.0 → kinto-23.3.0}/docs/core/index.rst +0 -0
  211. {kinto-19.6.0 → kinto-23.3.0}/docs/core/notifications.rst +0 -0
  212. {kinto-19.6.0 → kinto-23.3.0}/docs/core/permission.rst +0 -0
  213. {kinto-19.6.0 → kinto-23.3.0}/docs/core/quickstart.rst +0 -0
  214. {kinto-19.6.0 → kinto-23.3.0}/docs/core/rationale.rst +0 -0
  215. {kinto-19.6.0 → kinto-23.3.0}/docs/core/resource.rst +0 -0
  216. {kinto-19.6.0 → kinto-23.3.0}/docs/core/storage.rst +0 -0
  217. {kinto-19.6.0 → kinto-23.3.0}/docs/core/testing.rst +0 -0
  218. {kinto-19.6.0 → kinto-23.3.0}/docs/core/utils.rst +0 -0
  219. {kinto-19.6.0 → kinto-23.3.0}/docs/core/viewsets.rst +0 -0
  220. {kinto-19.6.0 → kinto-23.3.0}/docs/images/alwaysdata-button.svg +0 -0
  221. {kinto-19.6.0 → kinto-23.3.0}/docs/images/color-formatter.png +0 -0
  222. {kinto-19.6.0 → kinto-23.3.0}/docs/images/concepts-general.png +0 -0
  223. {kinto-19.6.0 → kinto-23.3.0}/docs/images/concepts-permissions.png +0 -0
  224. {kinto-19.6.0 → kinto-23.3.0}/docs/images/heroku-button.png +0 -0
  225. {kinto-19.6.0 → kinto-23.3.0}/docs/images/kinto-logo.png +0 -0
  226. {kinto-19.6.0 → kinto-23.3.0}/docs/images/kinto-logo.svg +0 -0
  227. {kinto-19.6.0 → kinto-23.3.0}/docs/images/logo-admin.svg +0 -0
  228. {kinto-19.6.0 → kinto-23.3.0}/docs/images/logo-attachment.svg +0 -0
  229. {kinto-19.6.0 → kinto-23.3.0}/docs/images/logo-community.svg +0 -0
  230. {kinto-19.6.0 → kinto-23.3.0}/docs/images/logo-history.svg +0 -0
  231. {kinto-19.6.0 → kinto-23.3.0}/docs/images/logo-javascript.svg +0 -0
  232. {kinto-19.6.0 → kinto-23.3.0}/docs/images/logo-jsonschema.svg +0 -0
  233. {kinto-19.6.0 → kinto-23.3.0}/docs/images/logo-multiapps.svg +0 -0
  234. {kinto-19.6.0 → kinto-23.3.0}/docs/images/logo-permissions.svg +0 -0
  235. {kinto-19.6.0 → kinto-23.3.0}/docs/images/logo-python.svg +0 -0
  236. {kinto-19.6.0 → kinto-23.3.0}/docs/images/logo-selfhostable.svg +0 -0
  237. {kinto-19.6.0 → kinto-23.3.0}/docs/images/logo-synchronisation.svg +0 -0
  238. {kinto-19.6.0 → kinto-23.3.0}/docs/images/overview-deployonce-selfhost.png +0 -0
  239. {kinto-19.6.0 → kinto-23.3.0}/docs/images/overview-features.png +0 -0
  240. {kinto-19.6.0 → kinto-23.3.0}/docs/images/overview-synchronisation.png +0 -0
  241. {kinto-19.6.0 → kinto-23.3.0}/docs/images/overview-use-cases.png +0 -0
  242. {kinto-19.6.0 → kinto-23.3.0}/docs/images/scalingo-button.svg +0 -0
  243. {kinto-19.6.0 → kinto-23.3.0}/docs/images/screenshot-kinto-admin-1.png +0 -0
  244. {kinto-19.6.0 → kinto-23.3.0}/docs/images/screenshot-kinto-admin-2.png +0 -0
  245. {kinto-19.6.0 → kinto-23.3.0}/docs/images/screenshot-kinto-admin-3.png +0 -0
  246. {kinto-19.6.0 → kinto-23.3.0}/docs/images/screenshot-kinto-admin-4.png +0 -0
  247. {kinto-19.6.0 → kinto-23.3.0}/docs/images/sequence-storage.png +0 -0
  248. {kinto-19.6.0 → kinto-23.3.0}/docs/images/sync-both.svg +0 -0
  249. {kinto-19.6.0 → kinto-23.3.0}/docs/images/sync-newest.svg +0 -0
  250. {kinto-19.6.0 → kinto-23.3.0}/docs/images/sync-oldest.svg +0 -0
  251. {kinto-19.6.0 → kinto-23.3.0}/docs/index.rst +0 -0
  252. {kinto-19.6.0 → kinto-23.3.0}/docs/kinto-admin.rst +0 -0
  253. {kinto-19.6.0 → kinto-23.3.0}/docs/tutorials/custom-id-generator.rst +0 -0
  254. {kinto-19.6.0 → kinto-23.3.0}/docs/tutorials/permission-setups.rst +0 -0
  255. {kinto-19.6.0 → kinto-23.3.0}/docs/tutorials/synchronisation.rst +0 -0
  256. {kinto-19.6.0 → kinto-23.3.0}/kinto/authorization.py +0 -0
  257. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/authentication.py +0 -0
  258. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/authorization.py +0 -0
  259. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cache/postgresql/schema.sql +0 -0
  260. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cache/testing.py +0 -0
  261. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice/__init__.py +0 -0
  262. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice/cors.py +0 -0
  263. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice/errors.py +0 -0
  264. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice/pyramidhook.py +0 -0
  265. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice/renderer.py +0 -0
  266. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice/resource.py +0 -0
  267. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice/service.py +0 -0
  268. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice/util.py +0 -0
  269. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice/validators/__init__.py +0 -0
  270. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice/validators/_colander.py +0 -0
  271. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice/validators/_marshmallow.py +0 -0
  272. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice_swagger/__init__.py +0 -0
  273. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice_swagger/converters/__init__.py +0 -0
  274. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice_swagger/converters/exceptions.py +0 -0
  275. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice_swagger/converters/parameters.py +0 -0
  276. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice_swagger/converters/schema.py +0 -0
  277. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice_swagger/swagger.py +0 -0
  278. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice_swagger/templates/index.html +0 -0
  279. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice_swagger/templates/index_script_template.html +0 -0
  280. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice_swagger/util.py +0 -0
  281. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/cornice_swagger/views.py +0 -0
  282. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/decorators.py +0 -0
  283. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/errors.py +0 -0
  284. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/events.py +0 -0
  285. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/listeners/__init__.py +0 -0
  286. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/openapi.py +0 -0
  287. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/permission/__init__.py +0 -0
  288. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/permission/memory.py +0 -0
  289. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/permission/postgresql/__init__.py +0 -0
  290. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/permission/postgresql/migrations/migration_001_002.sql +0 -0
  291. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/permission/postgresql/schema.sql +0 -0
  292. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/permission/testing.py +0 -0
  293. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/resource/model.py +0 -0
  294. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/schema.py +0 -0
  295. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/statsd.py +0 -0
  296. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/exceptions.py +0 -0
  297. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/generators.py +0 -0
  298. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/client.py +0 -0
  299. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_001_002.sql +0 -0
  300. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_002_003.sql +0 -0
  301. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_003_004.sql +0 -0
  302. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_004_005.sql +0 -0
  303. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_005_006.sql +0 -0
  304. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_006_007.sql +0 -0
  305. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_007_008.sql +0 -0
  306. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_008_009.sql +0 -0
  307. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_009_010.sql +0 -0
  308. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_010_011.sql +0 -0
  309. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_011_012.sql +0 -0
  310. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_012_013.sql +0 -0
  311. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_013_014.sql +0 -0
  312. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_014_015.sql +0 -0
  313. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_015_016.sql +0 -0
  314. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_016_017.sql +0 -0
  315. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_017_018.sql +0 -0
  316. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_018_019.sql +0 -0
  317. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_019_020.sql +0 -0
  318. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_020_021.sql +0 -0
  319. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrations/migration_021_022.sql +0 -0
  320. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/postgresql/migrator.py +0 -0
  321. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/storage/utils.py +0 -0
  322. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/testing.py +0 -0
  323. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/views/__init__.py +0 -0
  324. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/views/batch.py +0 -0
  325. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/views/heartbeat.py +0 -0
  326. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/views/openapi.py +0 -0
  327. {kinto-19.6.0 → kinto-23.3.0}/kinto/core/views/version.py +0 -0
  328. {kinto-19.6.0 → kinto-23.3.0}/kinto/events.py +0 -0
  329. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/__init__.py +0 -0
  330. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/accounts/scripts.py +0 -0
  331. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/admin/README.md +0 -0
  332. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/admin/__init__.py +0 -0
  333. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/admin/build/assets/logo-VBRiKSPX.png +0 -0
  334. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/admin/public/help.html +0 -0
  335. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/default_bucket/__init__.py +0 -0
  336. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/flush.py +0 -0
  337. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/openid/__init__.py +0 -0
  338. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/openid/utils.py +0 -0
  339. {kinto-19.6.0 → kinto-23.3.0}/kinto/plugins/openid/views.py +0 -0
  340. {kinto-19.6.0 → kinto-23.3.0}/kinto/schema_validation.py +0 -0
  341. {kinto-19.6.0 → kinto-23.3.0}/kinto/views/__init__.py +0 -0
  342. {kinto-19.6.0 → kinto-23.3.0}/kinto/views/admin.py +0 -0
  343. {kinto-19.6.0 → kinto-23.3.0}/kinto/views/buckets.py +0 -0
  344. {kinto-19.6.0 → kinto-23.3.0}/kinto/views/collections.py +0 -0
  345. {kinto-19.6.0 → kinto-23.3.0}/kinto/views/groups.py +0 -0
  346. {kinto-19.6.0 → kinto-23.3.0}/kinto/views/permissions.py +0 -0
  347. {kinto-19.6.0 → kinto-23.3.0}/kinto/views/records.py +0 -0
  348. {kinto-19.6.0 → kinto-23.3.0}/kinto.egg-info/dependency_links.txt +0 -0
  349. {kinto-19.6.0 → kinto-23.3.0}/kinto.egg-info/entry_points.txt +0 -0
  350. {kinto-19.6.0 → kinto-23.3.0}/kinto.egg-info/top_level.txt +0 -0
  351. {kinto-19.6.0 → kinto-23.3.0}/setup.cfg +0 -0
  352. {kinto-19.6.0 → kinto-23.3.0}/tests/__init__.py +0 -0
  353. {kinto-19.6.0 → kinto-23.3.0}/tests/browser.py +0 -0
  354. {kinto-19.6.0 → kinto-23.3.0}/tests/core/__init__.py +0 -0
  355. {kinto-19.6.0 → kinto-23.3.0}/tests/core/listeners.py +0 -0
  356. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/__init__.py +0 -0
  357. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/test_base.py +0 -0
  358. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/test_cache_expires.py +0 -0
  359. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/test_model.py +0 -0
  360. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/test_object.py +0 -0
  361. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/test_object_permissions.py +0 -0
  362. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/test_pagination.py +0 -0
  363. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/test_partial_response.py +0 -0
  364. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/test_preconditions.py +0 -0
  365. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/test_sort.py +0 -0
  366. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/test_sync.py +0 -0
  367. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/test_views.py +0 -0
  368. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/test_views_cors.py +0 -0
  369. {kinto-19.6.0 → kinto-23.3.0}/tests/core/resource/test_viewset.py +0 -0
  370. {kinto-19.6.0 → kinto-23.3.0}/tests/core/schema/postgresql-permission-1.sql +0 -0
  371. {kinto-19.6.0 → kinto-23.3.0}/tests/core/schema/postgresql-storage-1.6.sql +0 -0
  372. {kinto-19.6.0 → kinto-23.3.0}/tests/core/schema/postgresql-storage-11.sql +0 -0
  373. {kinto-19.6.0 → kinto-23.3.0}/tests/core/support.py +0 -0
  374. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_authentication.py +0 -0
  375. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_authorization.py +0 -0
  376. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_cache.py +0 -0
  377. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_decorators.py +0 -0
  378. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_deprecation.py +0 -0
  379. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_errors.py +0 -0
  380. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_listeners.py +0 -0
  381. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_openapi.py +0 -0
  382. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_permission.py +0 -0
  383. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_schema.py +0 -0
  384. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_storage_migrations.py +0 -0
  385. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_storage_pool.py +0 -0
  386. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_utils.py +0 -0
  387. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_views_batch.py +0 -0
  388. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_views_heartbeat.py +0 -0
  389. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_views_openapi.py +0 -0
  390. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_views_postgresql.py +0 -0
  391. {kinto-19.6.0 → kinto-23.3.0}/tests/core/test_views_transaction.py +0 -0
  392. {kinto-19.6.0 → kinto-23.3.0}/tests/core/testapp/__init__.py +0 -0
  393. {kinto-19.6.0 → kinto-23.3.0}/tests/core/testapp/static/index.html +0 -0
  394. {kinto-19.6.0 → kinto-23.3.0}/tests/core/testapp/views.py +0 -0
  395. {kinto-19.6.0 → kinto-23.3.0}/tests/core/testplugin/__init__.py +0 -0
  396. {kinto-19.6.0 → kinto-23.3.0}/tests/openapi/__init__.py +0 -0
  397. {kinto-19.6.0 → kinto-23.3.0}/tests/openapi/support.py +0 -0
  398. {kinto-19.6.0 → kinto-23.3.0}/tests/openapi/test_plugins.py +0 -0
  399. {kinto-19.6.0 → kinto-23.3.0}/tests/openapi/test_resources.py +0 -0
  400. {kinto-19.6.0 → kinto-23.3.0}/tests/openapi/test_responses_buckets.py +0 -0
  401. {kinto-19.6.0 → kinto-23.3.0}/tests/openapi/test_responses_collections.py +0 -0
  402. {kinto-19.6.0 → kinto-23.3.0}/tests/openapi/test_responses_errors.py +0 -0
  403. {kinto-19.6.0 → kinto-23.3.0}/tests/openapi/test_responses_groups.py +0 -0
  404. {kinto-19.6.0 → kinto-23.3.0}/tests/openapi/test_responses_records.py +0 -0
  405. {kinto-19.6.0 → kinto-23.3.0}/tests/openapi/test_validation.py +0 -0
  406. {kinto-19.6.0 → kinto-23.3.0}/tests/plugins/__init__.py +0 -0
  407. {kinto-19.6.0 → kinto-23.3.0}/tests/plugins/test_admin.py +0 -0
  408. {kinto-19.6.0 → kinto-23.3.0}/tests/plugins/test_default_bucket.py +0 -0
  409. {kinto-19.6.0 → kinto-23.3.0}/tests/plugins/test_flush.py +0 -0
  410. {kinto-19.6.0 → kinto-23.3.0}/tests/plugins/test_openid.py +0 -0
  411. {kinto-19.6.0 → kinto-23.3.0}/tests/plugins/test_statsd.py +0 -0
  412. {kinto-19.6.0 → kinto-23.3.0}/tests/support.py +0 -0
  413. {kinto-19.6.0 → kinto-23.3.0}/tests/test_authorization.py +0 -0
  414. {kinto-19.6.0 → kinto-23.3.0}/tests/test_config.py +0 -0
  415. {kinto-19.6.0 → kinto-23.3.0}/tests/test_init.py +0 -0
  416. {kinto-19.6.0 → kinto-23.3.0}/tests/test_views_admin.py +0 -0
  417. {kinto-19.6.0 → kinto-23.3.0}/tests/test_views_buckets.py +0 -0
  418. {kinto-19.6.0 → kinto-23.3.0}/tests/test_views_collections.py +0 -0
  419. {kinto-19.6.0 → kinto-23.3.0}/tests/test_views_collections_cache.py +0 -0
  420. {kinto-19.6.0 → kinto-23.3.0}/tests/test_views_disable_default.py +0 -0
  421. {kinto-19.6.0 → kinto-23.3.0}/tests/test_views_groups.py +0 -0
  422. {kinto-19.6.0 → kinto-23.3.0}/tests/test_views_hello.py +0 -0
  423. {kinto-19.6.0 → kinto-23.3.0}/tests/test_views_objects_permissions.py +0 -0
  424. {kinto-19.6.0 → kinto-23.3.0}/tests/test_views_records.py +0 -0
  425. {kinto-19.6.0 → kinto-23.3.0}/tests/test_views_schema_collection.py +0 -0
  426. {kinto-19.6.0 → kinto-23.3.0}/tests/test_views_schema_group.py +0 -0
  427. {kinto-19.6.0 → kinto-23.3.0}/tests/test_views_schema_record.py +0 -0
  428. {kinto-19.6.0 → kinto-23.3.0}/tests/test_views_version.py +0 -0
@@ -11,14 +11,14 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
 
13
13
  steps:
14
- - uses: actions/checkout@v4
14
+ - uses: actions/checkout@v5
15
15
 
16
16
  - name: Set up Python
17
- uses: actions/setup-python@v5
17
+ uses: actions/setup-python@v6
18
18
  with:
19
19
  python-version: "3.x"
20
20
 
21
- - uses: actions/setup-node@v4
21
+ - uses: actions/setup-node@v6
22
22
  with:
23
23
  node-version: "20"
24
24
 
@@ -38,7 +38,7 @@ jobs:
38
38
  run: python3 -m build
39
39
 
40
40
  - name: Store the distribution packages
41
- uses: actions/upload-artifact@v4
41
+ uses: actions/upload-artifact@v5
42
42
  with:
43
43
  name: python-package-distributions
44
44
  path: dist/
@@ -57,7 +57,7 @@ jobs:
57
57
  id-token: write
58
58
  steps:
59
59
  - name: Download all the dists
60
- uses: actions/download-artifact@v4
60
+ uses: actions/download-artifact@v6
61
61
  with:
62
62
  name: python-package-distributions
63
63
  path: dist/
@@ -71,7 +71,7 @@ jobs:
71
71
  name: release
72
72
  steps:
73
73
  - name: Check out the repo
74
- uses: actions/checkout@v4
74
+ uses: actions/checkout@v5
75
75
 
76
76
  - name: Set up QEMU
77
77
  uses: docker/setup-qemu-action@v3
@@ -13,7 +13,7 @@ jobs:
13
13
 
14
14
  steps:
15
15
  - name: Checkout repository
16
- uses: actions/checkout@v4
16
+ uses: actions/checkout@v5
17
17
 
18
18
  - name: Get current version
19
19
  id: current_version
@@ -14,12 +14,12 @@ jobs:
14
14
  runs-on: ubuntu-latest
15
15
 
16
16
  steps:
17
- - uses: actions/checkout@v4
17
+ - uses: actions/checkout@v5
18
18
 
19
19
  - name: Actions Lint
20
20
  uses: raven-actions/actionlint@v2
21
21
 
22
- - uses: actions/setup-python@v5
22
+ - uses: actions/setup-python@v6
23
23
 
24
24
  - name: make lint
25
25
  run: make lint
@@ -35,10 +35,8 @@ jobs:
35
35
  runs-on: ubuntu-latest
36
36
  strategy:
37
37
  matrix:
38
- pyenv: [py39, py310, py311, py312, py312-raw]
38
+ pyenv: [py310, py311, py312, py312-raw]
39
39
  include:
40
- - pyenv: py39
41
- python-version: "3.9"
42
40
  - pyenv: py310
43
41
  python-version: "3.10"
44
42
  - pyenv: py311
@@ -70,10 +68,10 @@ jobs:
70
68
  - 11211:11211
71
69
 
72
70
  steps:
73
- - uses: actions/checkout@v4
71
+ - uses: actions/checkout@v5
74
72
 
75
73
  - name: Set up Python ${{ matrix.python-version }}
76
- uses: actions/setup-python@v5
74
+ uses: actions/setup-python@v6
77
75
  with:
78
76
  python-version: ${{ matrix.python-version }}
79
77
  cache: pip
@@ -110,7 +108,7 @@ jobs:
110
108
  needs: unit-test
111
109
  runs-on: ubuntu-latest
112
110
  steps:
113
- - uses: actions/setup-python@v5
111
+ - uses: actions/setup-python@v6
114
112
  with:
115
113
  python-version: "3.x"
116
114
  - name: Install coveralls
@@ -142,9 +140,9 @@ jobs:
142
140
  - 5432:5432
143
141
 
144
142
  steps:
145
- - uses: actions/checkout@v4
143
+ - uses: actions/checkout@v5
146
144
 
147
- - uses: actions/setup-python@v5
145
+ - uses: actions/setup-python@v6
148
146
 
149
147
  - name: Print environment
150
148
  run: |
@@ -190,6 +188,8 @@ jobs:
190
188
  context: .
191
189
 
192
190
  - name: Run container
191
+ env:
192
+ PROMETHEUS_MULTIPROC_DIR: /tmp/metrics
193
193
  run: |
194
194
  docker run --net=host --detach --rm \
195
195
  -p 8888:8888 \
@@ -199,7 +199,11 @@ jobs:
199
199
 
200
200
  - name: Functional Tests
201
201
  run: |
202
- make functional
202
+ make functional || sleep 5 && make functional
203
+
204
+ - name: Show logs on failure
205
+ if: failure()
206
+ run: docker logs "$(docker ps -q --filter ancestor=${{ env.TEST_TAG }})"
203
207
 
204
208
  kinto-admin:
205
209
  name: Kinto Admin
@@ -207,11 +211,11 @@ jobs:
207
211
  runs-on: ubuntu-latest
208
212
 
209
213
  steps:
210
- - uses: actions/checkout@v4
214
+ - uses: actions/checkout@v5
211
215
 
212
- - uses: actions/setup-python@v5
216
+ - uses: actions/setup-python@v6
213
217
 
214
- - uses: actions/setup-node@v4
218
+ - uses: actions/setup-node@v6
215
219
  with:
216
220
  node-version: "18.x"
217
221
 
@@ -248,9 +252,9 @@ jobs:
248
252
  runs-on: ubuntu-latest
249
253
 
250
254
  steps:
251
- - uses: actions/checkout@v4
255
+ - uses: actions/checkout@v5
252
256
 
253
- - uses: actions/setup-python@v5
257
+ - uses: actions/setup-python@v6
254
258
 
255
259
  - name: Print environment
256
260
  run: |
@@ -16,7 +16,6 @@ build/
16
16
  kinto/plugins/admin/build
17
17
  kinto/plugins/admin/kinto-admin-*
18
18
  .pytest_cache/
19
- mail/
20
19
  .history/
21
20
  .vscode/
22
21
  .ruff_cache/
@@ -112,3 +112,4 @@ Contributors
112
112
  * Dan Milgram <danm@intervivo.com>
113
113
  * Dex Devlon <@bxff>
114
114
  * Varun Koranne <@varun-dhruv>
115
+ * Robin Sharma <robinrythm123@gmail.com>
@@ -27,7 +27,8 @@ COPY --from=python-builder /opt/venv /opt/venv
27
27
 
28
28
  ENV KINTO_INI=/etc/kinto/kinto.ini \
29
29
  PORT=8888 \
30
- PATH="/opt/venv/bin:$PATH"
30
+ PATH="/opt/venv/bin:$PATH" \
31
+ PROMETHEUS_MULTIPROC_DIR="/tmp/metrics"
31
32
 
32
33
  RUN kinto init --ini $KINTO_INI --host 0.0.0.0 --backend=memory --cache-backend=memory
33
34
 
@@ -1,43 +1,30 @@
1
+ VENV ?= .venv
2
+ PYTHON := $(VENV)/bin/python3
3
+ SPHINX_BUILDDIR ?= docs/_build
4
+
1
5
  SERVER_CONFIG = config/kinto.ini
6
+ NAME := kinto
7
+ SOURCE := $(shell git config remote.origin.url | sed -e 's|git@|https://|g' | sed -e 's|github.com:|github.com/|g')
8
+ VERSION := $(shell git describe --always --tag)
9
+ COMMIT := $(shell git log --pretty=format:'%H' -n 1)
10
+
11
+ .IGNORE: clean
2
12
 
3
- SPHINX_BUILDDIR := $(shell echo $${SPHINX_BUILDDIR-docs/_build})
4
- VENV := $(shell echo $${VIRTUAL_ENV-.venv})
5
- PYTHON = $(VENV)/bin/python3
6
13
  DEV_STAMP = $(VENV)/.dev_env_installed.stamp
7
14
  DOC_STAMP = $(VENV)/.doc_env_installed.stamp
8
15
  INSTALL_STAMP = $(VENV)/.install.stamp
9
- TEMPDIR := $(shell mktemp -du)
10
-
11
- .IGNORE: clean distclean maintainer-clean
12
- .PHONY: all install tests
13
-
14
- OBJECTS = .venv .coverage
16
+ OBJECTS = .venv .coverage .pytest_cache/ .ruff_cache/ $(INSTALL_STAMP) $(DEV_STAMP) $(DOC_STAMP)
17
+ .DEFAULT_GOAL := help
15
18
 
16
19
  help:
17
- @echo "Please use 'make <target>' where <target> is one of"
18
- @echo " format reformat code"
19
- @echo " install install dependencies and prepare environment"
20
- @echo " install-monitoring enable monitoring features like StatsD and Newrelic"
21
- @echo " install-postgres install postgresql support"
22
- @echo " install-dev install dependencies and everything needed to run tests"
23
- @echo " pull-kinto-admin pull the Kinto admin UI plugin (requires npm)"
24
- @echo " serve start the kinto server on default port"
25
- @echo " migrate run the kinto migrations"
26
- @echo " lint run the code linters"
27
- @echo " tests run all the tests with all the supported python interpreters (same as CI)"
28
- @echo " test-deps pulls and runs docker postgres and memcached containers for tests"
29
- @echo " tdd run pytest-watch to rerun tests automatically on changes for tdd"
30
- @echo " tests-once only run the tests once with the default python interpreter"
31
- @echo " functional run functional test against a real kinto"
32
- @echo " browser-test run browser test against a real kinto"
33
- @echo " clean remove *.pyc files and __pycache__ directory"
34
- @echo " distclean remove *.egg-info files and *.egg, build and dist directories"
35
- @echo " maintainer-clean remove the .venv directory"
36
- @echo " docs build the docs"
37
- @echo "Check the Makefile to know exactly what each target is doing."
20
+ @echo "Please use 'make <target>' where <target> is one of the following commands.\n"
21
+ @grep -E '^[a-zA-Z_-]+:.*?## .*$$' Makefile | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
22
+ @echo "\nCheck the Makefile to know exactly what each target is doing."
38
23
 
24
+ .PHONY: all
39
25
  all: install
40
- install: $(INSTALL_STAMP)
26
+
27
+ install: $(INSTALL_STAMP) ## install dependencies and prepare environment
41
28
  $(INSTALL_STAMP): $(PYTHON) constraints.txt pyproject.toml
42
29
  $(VENV)/bin/pip install -U pip
43
30
  $(VENV)/bin/pip install -Ue . -c constraints.txt
@@ -46,21 +33,21 @@ $(INSTALL_STAMP): $(PYTHON) constraints.txt pyproject.toml
46
33
  $(PYTHON):
47
34
  python3 -m venv $(VENV)
48
35
 
49
- install-monitoring: $(INSTALL_STAMP) $(DEV_STAMP)
36
+ install-monitoring: $(INSTALL_STAMP) $(DEV_STAMP) ## enable monitoring features like Prometheus and Newrelic
50
37
  $(VENV)/bin/pip install -Ue ".[monitoring]" -c constraints.txt
51
38
 
52
- install-postgres: $(INSTALL_STAMP) $(DEV_STAMP)
39
+ install-postgres: $(INSTALL_STAMP) $(DEV_STAMP) ## install postgresql support
53
40
  $(VENV)/bin/pip install -Ue ".[postgresql]" -c constraints.txt
54
41
 
55
- install-memcached: $(INSTALL_STAMP) $(DEV_STAMP)
42
+ install-memcached: $(INSTALL_STAMP) $(DEV_STAMP) ## install memcached support
56
43
  $(VENV)/bin/pip install -Ue ".[memcached]" -c constraints.txt
57
44
 
58
- install-dev: $(INSTALL_STAMP) $(DEV_STAMP)
45
+ install-dev: $(INSTALL_STAMP) $(DEV_STAMP) ## install dependencies and everything needed to run tests
59
46
  $(DEV_STAMP): $(PYTHON) constraints.txt
60
- $(VENV)/bin/pip install -Ue ".[dev,test]" -c constraints.txt
47
+ $(VENV)/bin/pip install -Ue ".[dev,test,monitoring,postgresql,memcached]" -c constraints.txt
61
48
  touch $(DEV_STAMP)
62
49
 
63
- install-docs: $(DOC_STAMP)
50
+ install-docs: $(DOC_STAMP) ## install dependencies to build the docs
64
51
  $(DOC_STAMP): $(PYTHON) docs/requirements.txt
65
52
  $(VENV)/bin/pip install -r docs/requirements.txt
66
53
  touch $(DOC_STAMP)
@@ -68,33 +55,36 @@ $(DOC_STAMP): $(PYTHON) docs/requirements.txt
68
55
  constraints.txt: constraints.in
69
56
  pip-compile -o constraints.txt constraints.in
70
57
 
71
- pull-kinto-admin:
58
+ pull-kinto-admin: kinto/plugins/admin/build ## pull the Kinto admin UI plugin
59
+ kinto/plugins/admin/build:
72
60
  scripts/pull-kinto-admin.sh
73
61
 
74
62
  $(SERVER_CONFIG):
75
63
  $(VENV)/bin/kinto init --ini $(SERVER_CONFIG)
76
64
 
77
- NAME := kinto
78
- SOURCE := $(shell git config remote.origin.url | sed -e 's|git@|https://|g' | sed -e 's|github.com:|github.com/|g')
79
- VERSION := $(shell git describe --always --tag)
80
- COMMIT := $(shell git log --pretty=format:'%H' -n 1)
81
- version-file:
65
+ version-file: version.json
66
+ version.json:
82
67
  echo '{"name":"$(NAME)","version":"$(VERSION)","source":"$(SOURCE)","commit":"$(COMMIT)"}' > version.json
83
68
 
84
- serve: install-dev $(SERVER_CONFIG) migrate version-file
69
+ .PHONY: serve
70
+ serve: install-dev $(SERVER_CONFIG) migrate version-file ## start the kinto server on default port
85
71
  $(VENV)/bin/kinto start --ini $(SERVER_CONFIG) --reload
86
72
 
73
+ .PHONY: migrate
87
74
  migrate: install $(SERVER_CONFIG)
88
75
  $(VENV)/bin/kinto migrate --ini $(SERVER_CONFIG)
89
76
 
90
- test: tests
77
+ .PHONY: test
78
+ test: tests ## run all the tests with all the supported python interpreters (same as CI)
79
+ .PHONY: test-once
91
80
  tests-once: tests
92
- tests: install-postgres install-monitoring install-memcached version-file install-dev
81
+ .PHONY: tests
82
+ tests: version-file install-dev
93
83
  $(VENV)/bin/py.test --cov-config pyproject.toml --cov-report term-missing --cov-fail-under 100 --cov kinto
94
-
84
+ .PHONY: tests-raw
95
85
  tests-raw: version-file install-dev
96
86
  $(VENV)/bin/py.test
97
-
87
+ .PHONY: test-deps
98
88
  test-deps:
99
89
  docker pull memcached
100
90
  docker pull postgres
@@ -103,53 +93,55 @@ test-deps:
103
93
  sleep 2
104
94
  PGPASSWORD=postgres psql -c "CREATE DATABASE testdb ENCODING 'UTF8' TEMPLATE template0;" -U postgres -h localhost
105
95
 
106
- lint: install-dev
96
+ .PHONY: lint
97
+ lint: install-dev ## run the code linters
107
98
  $(VENV)/bin/ruff check kinto tests docs/conf.py
108
99
  $(VENV)/bin/ruff format --check kinto tests docs/conf.py
109
100
 
110
- format: install-dev
101
+ .PHONY: format
102
+ format: install-dev ## reformat code
111
103
  $(VENV)/bin/ruff check --fix kinto tests docs/conf.py
112
104
  $(VENV)/bin/ruff format kinto tests docs/conf.py
113
105
 
114
- tdd: install-dev
106
+ .PHONY: tdd
107
+ tdd: install-dev ## run pytest-watch to rerun tests automatically on changes for tdd
115
108
  $(VENV)/bin/ptw --runner $(VENV)/bin/py.test
116
109
 
117
110
  need-kinto-running:
118
111
  @curl http://localhost:8888/v0/ 2>/dev/null 1>&2 || (echo "Run 'make runkinto' before starting tests." && exit 1)
119
112
 
120
- runkinto: install-dev
113
+ .PHONY: runkinto
114
+ runkinto: install-dev ## run a kinto server
121
115
  $(VENV)/bin/kinto migrate --ini tests/functional.ini
122
- $(VENV)/bin/kinto start --ini tests/functional.ini
116
+ PROMETHEUS_MULTIPROC_DIR=/tmp/metrics KINTO_INI=tests/functional.ini $(VENV)/bin/uwsgi --http :8888 --ini tests/functional.ini
123
117
 
124
- functional: install-dev need-kinto-running
118
+ .PHONY: functional
119
+ functional: install-dev need-kinto-running ## run functional tests against a real kinto
125
120
  $(VENV)/bin/py.test tests/functional.py
126
121
 
127
- browser-test: need-kinto-running
122
+ .PHONY: browser-test
123
+ browser-test: need-kinto-running ## run browser tests against a real kinto
128
124
  $(VENV)/bin/playwright install firefox
129
125
  $(VENV)/bin/py.test tests/browser.py
130
126
 
131
- clean:
132
- find . -name '*.pyc' -delete
127
+ clean: ## remove built files and start fresh
128
+ rm -fr $(OBJECTS)
133
129
  find . -name '__pycache__' -type d | xargs rm -fr
134
130
  rm -fr docs/_build/
131
+ rm -fr kinto/plugins/admin/build/ kinto/plugins/admin/node_modules/
135
132
  docker rm -f kinto-memcached || echo ""
136
133
  docker rm -f kinto-postgres || echo ""
137
134
 
138
- distclean: clean
139
- rm -fr *.egg *.egg-info/ dist/ build/
140
-
141
- maintainer-clean: distclean
142
- rm -fr .venv/ kinto/plugins/admin/build/ kinto/plugins/admin/node_modules/
143
-
144
- docs: install-docs
135
+ docs: install-docs ## build the docs
145
136
  $(VENV)/bin/sphinx-build -a -W -n -b html -d $(SPHINX_BUILDDIR)/doctrees docs $(SPHINX_BUILDDIR)/html
146
137
  @echo
147
138
  @echo "Build finished. The HTML pages are in $(SPHINX_BUILDDIR)/html/index.html"
148
139
 
149
140
  .PHONY: build
150
- build:
141
+ build: ## build the docker image
151
142
  docker build --build-arg="KINTO_VERSION=$(shell git describe --abbrev=0)" --pull -t kinto/kinto-server:latest .
152
143
 
153
- test-description: install-dev
144
+ .PHONY: test-description
145
+ test-description: install-dev ## test the built wheel metadata
154
146
  $(VENV)/bin/python -m build
155
147
  $(VENV)/bin/twine check dist/*.whl
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: kinto
3
- Version: 19.6.0
3
+ Version: 23.3.0
4
4
  Summary: Kinto Web Service - Store, Sync, Share, and Self-Host.
5
5
  Author-email: Mozilla Services <developers@kinto-storage.org>
6
6
  License: Copyright 2012 - Mozilla Foundation
@@ -39,7 +39,6 @@ Requires-Dist: jsonpatch
39
39
  Requires-Dist: logging-color-formatter
40
40
  Requires-Dist: python-dateutil
41
41
  Requires-Dist: pyramid
42
- Requires-Dist: pyramid_mailer
43
42
  Requires-Dist: pyramid_multiauth
44
43
  Requires-Dist: transaction
45
44
  Requires-Dist: pyramid_tm
@@ -71,6 +70,8 @@ Provides-Extra: dev
71
70
  Requires-Dist: build; extra == "dev"
72
71
  Requires-Dist: ruff; extra == "dev"
73
72
  Requires-Dist: twine; extra == "dev"
73
+ Requires-Dist: uwsgi; extra == "dev"
74
+ Dynamic: license-file
74
75
 
75
76
  Kinto
76
77
  =====
@@ -106,13 +107,12 @@ Kinto is a minimalist JSON storage service with synchronisation and sharing abil
106
107
  * `Tutorial <https://kinto.readthedocs.io/en/latest/tutorials/first-steps.html>`_
107
108
  * `Issue tracker <https://github.com/Kinto/kinto/issues>`_
108
109
  * `Contributing <https://kinto.readthedocs.io/en/latest/community.html#how-to-contribute>`_
109
- * `Try our daily flushed instance at: https://demo.kinto-storage.org/v1/ <https://demo.kinto-storage.org/v1/>`_
110
110
  * `Docker Hub <https://hub.docker.com/r/kinto/kinto-server>`_
111
111
 
112
112
  Requirements
113
113
  ------------
114
114
 
115
- * **Python**: 3.9+
115
+ * **Python**: 3.10+
116
116
  * **Backends**: In-memory (development), PostgreSQL 9.5+ (production)
117
117
 
118
118
  Contributors
@@ -229,3 +229,4 @@ Contributors
229
229
  * Dan Milgram <danm@intervivo.com>
230
230
  * Dex Devlon <@bxff>
231
231
  * Varun Koranne <@varun-dhruv>
232
+ * Robin Sharma <robinrythm123@gmail.com>
@@ -32,11 +32,10 @@ Kinto is a minimalist JSON storage service with synchronisation and sharing abil
32
32
  * `Tutorial <https://kinto.readthedocs.io/en/latest/tutorials/first-steps.html>`_
33
33
  * `Issue tracker <https://github.com/Kinto/kinto/issues>`_
34
34
  * `Contributing <https://kinto.readthedocs.io/en/latest/community.html#how-to-contribute>`_
35
- * `Try our daily flushed instance at: https://demo.kinto-storage.org/v1/ <https://demo.kinto-storage.org/v1/>`_
36
35
  * `Docker Hub <https://hub.docker.com/r/kinto/kinto-server>`_
37
36
 
38
37
  Requirements
39
38
  ------------
40
39
 
41
- * **Python**: 3.9+
40
+ * **Python**: 3.10+
42
41
  * **Backends**: In-memory (development), PostgreSQL 9.5+ (production)
@@ -0,0 +1,3 @@
1
+ # Support
2
+
3
+ If you're looking for support for Kinto, use [Github issues](https://github.com/Kinto/kinto/issues).
@@ -8,6 +8,8 @@ here = os.path.dirname(__file__)
8
8
 
9
9
  ini_path = os.environ.get('KINTO_INI')
10
10
  if ini_path is None:
11
+ # WARNING: if you modify this default value, you should
12
+ # also change the default in `kinto.config.config_attributes()`
11
13
  ini_path = os.path.join(here, 'config', 'kinto.ini')
12
14
 
13
15
  # Set up logging
@@ -7,7 +7,6 @@ jsonpatch
7
7
  logging-color-formatter
8
8
  python-dateutil
9
9
  pyramid
10
- pyramid_mailer
11
10
  pyramid_multiauth
12
11
  transaction
13
12
  pyramid_tm
@@ -10,13 +10,13 @@ attrs==23.2.0
10
10
  # via
11
11
  # jsonschema
12
12
  # referencing
13
- bcrypt==4.2.1
13
+ bcrypt==5.0.0
14
14
  # via -r constraints.in
15
15
  beautifulsoup4==4.12.3
16
16
  # via webtest
17
17
  bravado-core==6.1.1
18
18
  # via -r constraints.in
19
- build==1.2.2.post1
19
+ build==1.3.0
20
20
  # via -r constraints.in
21
21
  certifi==2024.7.4
22
22
  # via
@@ -28,7 +28,7 @@ colander==2.0
28
28
  # via -r constraints.in
29
29
  colorama==0.4.6
30
30
  # via logging-color-formatter
31
- coverage==7.6.4
31
+ coverage==7.10.7
32
32
  # via pytest-cov
33
33
  dockerflow==2024.4.2
34
34
  # via -r constraints.in
@@ -37,7 +37,9 @@ execnet==2.0.2
37
37
  fqdn==1.5.1
38
38
  # via jsonschema
39
39
  greenlet==3.1.1
40
- # via playwright
40
+ # via
41
+ # playwright
42
+ # sqlalchemy
41
43
  hupper==1.12
42
44
  # via pyramid
43
45
  idna==3.7
@@ -58,20 +60,22 @@ jsonpointer==2.4
58
60
  # jsonschema
59
61
  jsonref==1.1.0
60
62
  # via bravado-core
61
- jsonschema==4.23.0
63
+ jsonschema==4.25.1
62
64
  # via
63
65
  # -r constraints.in
64
66
  # bravado-core
65
67
  # swagger-spec-validator
66
68
  jsonschema-specifications==2023.12.1
67
69
  # via jsonschema
70
+ lark==1.3.0
71
+ # via rfc3987-syntax
68
72
  logging-color-formatter==1.1.0
69
73
  # via -r constraints.in
70
74
  markupsafe==2.1.4
71
75
  # via werkzeug
72
76
  msgpack==1.0.7
73
77
  # via bravado-core
74
- newrelic==10.6.0
78
+ newrelic==11.1.0
75
79
  # via -r constraints.in
76
80
  packaging==23.2
77
81
  # via
@@ -86,38 +90,39 @@ plaster==1.1.2
86
90
  # pyramid
87
91
  plaster-pastedeploy==1.0.1
88
92
  # via pyramid
89
- playwright==1.50.0
93
+ playwright==1.55.0
90
94
  # via -r constraints.in
91
95
  pluggy==1.5.0
92
- # via pytest
93
- prometheus-client==0.21.1
96
+ # via
97
+ # pytest
98
+ # pytest-cov
99
+ prometheus-client==0.23.1
94
100
  # via -r constraints.in
95
- psycopg2-binary==2.9.10
101
+ psycopg2-binary==2.9.11
96
102
  # via -r constraints.in
97
- pyee==12.0.0
103
+ pyee==13.0.0
98
104
  # via playwright
105
+ pygments==2.19.1
106
+ # via pytest
99
107
  pyproject-hooks==1.0.0
100
108
  # via build
101
109
  pyramid==2.0.2
102
110
  # via
103
111
  # -r constraints.in
104
- # pyramid-mailer
105
112
  # pyramid-multiauth
106
113
  # pyramid-tm
107
- pyramid-mailer==0.15.1
108
- # via -r constraints.in
109
114
  pyramid-multiauth==1.0.2
110
115
  # via -r constraints.in
111
116
  pyramid-tm==2.6
112
117
  # via -r constraints.in
113
- pytest==8.3.4
118
+ pytest==9.0.0
114
119
  # via
115
120
  # -r constraints.in
116
121
  # pytest-cache
117
122
  # pytest-cov
118
123
  pytest-cache==1.0
119
124
  # via -r constraints.in
120
- pytest-cov==6.0.0
125
+ pytest-cov==7.0.0
121
126
  # via -r constraints.in
122
127
  python-dateutil==2.9.0.post0
123
128
  # via
@@ -138,9 +143,7 @@ referencing==0.32.1
138
143
  # via
139
144
  # jsonschema
140
145
  # jsonschema-specifications
141
- repoze-sendmail==4.4.1
142
- # via pyramid-mailer
143
- requests==2.32.3
146
+ requests==2.32.5
144
147
  # via
145
148
  # -r constraints.in
146
149
  # bravado-core
@@ -148,11 +151,13 @@ rfc3339-validator==0.1.4
148
151
  # via jsonschema
149
152
  rfc3986-validator==0.1.1
150
153
  # via jsonschema
154
+ rfc3987-syntax==1.1.0
155
+ # via jsonschema
151
156
  rpds-py==0.17.1
152
157
  # via
153
158
  # jsonschema
154
159
  # referencing
155
- ruff==0.9.6
160
+ ruff==0.14.4
156
161
  # via -r constraints.in
157
162
  sentry-sdk==2.8.0
158
163
  # via -r constraints.in
@@ -165,7 +170,7 @@ six==1.16.0
165
170
  # rfc3339-validator
166
171
  soupsieve==2.5
167
172
  # via beautifulsoup4
168
- sqlalchemy==2.0.38
173
+ sqlalchemy==2.0.44
169
174
  # via
170
175
  # -r constraints.in
171
176
  # sentry-sdk
@@ -177,9 +182,7 @@ swagger-spec-validator==3.0.3
177
182
  transaction==5.0
178
183
  # via
179
184
  # -r constraints.in
180
- # pyramid-mailer
181
185
  # pyramid-tm
182
- # repoze-sendmail
183
186
  # zope-sqlalchemy
184
187
  translationstring==1.4
185
188
  # via
@@ -194,7 +197,7 @@ typing-extensions==4.9.0
194
197
  # swagger-spec-validator
195
198
  uri-template==1.3.0
196
199
  # via jsonschema
197
- urllib3==2.2.2
200
+ urllib3==2.5.0
198
201
  # via
199
202
  # requests
200
203
  # sentry-sdk
@@ -219,10 +222,9 @@ zope-deprecation==5.0
219
222
  zope-interface==6.1
220
223
  # via
221
224
  # pyramid
222
- # repoze-sendmail
223
225
  # transaction
224
226
  # zope-sqlalchemy
225
- zope-sqlalchemy==3.1
227
+ zope-sqlalchemy==4.0
226
228
  # via -r constraints.in
227
229
 
228
230
  # The following packages are considered to be unsafe in a requirements file: