| Sat, 21 Dec 2024 16:35:11 -0500 |
John Rouillard |
fix: issue2550924. clean up schema for devel/responsive templates.
|
| Sat, 21 Dec 2024 15:23:12 -0500 |
John Rouillard |
chore: format schema.pys in templates so ruff is ok.
|
| Thu, 19 Dec 2024 17:58:10 -0500 |
John Rouillard |
chore(ruff): remove unused noqa comments.
|
| Thu, 19 Dec 2024 17:56:24 -0500 |
John Rouillard |
chore(ruff): handle magic number warnings.
|
| Thu, 19 Dec 2024 17:51:48 -0500 |
John Rouillard |
doc: explicitly refer to POE lifetime in seconds.
|
| Thu, 19 Dec 2024 17:26:39 -0500 |
John Rouillard |
chore(lint): remove unneeded blank line.
|
| Thu, 19 Dec 2024 17:23:04 -0500 |
John Rouillard |
chore(lint): mark unused variables in assignment with leading _
|
| Thu, 19 Dec 2024 11:41:51 -0500 |
John Rouillard |
build: use pip --no-cache-dir not --no-cache
|
| Wed, 18 Dec 2024 21:49:48 -0500 |
John Rouillard |
refactor: extract code as method from do_import
|
| Wed, 18 Dec 2024 20:25:35 -0500 |
John Rouillard |
test: fix syntax
|
| Wed, 18 Dec 2024 20:22:58 -0500 |
John Rouillard |
issue251338 - xapian doesn't build in CI for 3.13 python
|
| Wed, 18 Dec 2024 16:24:22 -0500 |
John Rouillard |
doc: update version in doc/mysql.txt; remove bdb support for mysql.
|
| Tue, 17 Dec 2024 21:42:45 -0500 |
John Rouillard |
fix: make rest.py still load on python2, do not test bad json
|
| Tue, 17 Dec 2024 20:45:28 -0500 |
John Rouillard |
test: add file encoding marker so python2 can run
|
| Tue, 17 Dec 2024 19:42:46 -0500 |
John Rouillard |
fix(REST): issue2551383; improve errors for bad json, fix PUT docs
|
| Mon, 16 Dec 2024 21:29:07 -0500 |
John Rouillard |
fix(web) issue2551382 - fix missing hypothesis case
|
| Mon, 16 Dec 2024 21:24:59 -0500 |
John Rouillard |
fix(web) issue2551382 - fix more integer param test cases
|
| Mon, 16 Dec 2024 19:19:07 -0500 |
John Rouillard |
fix(web) issue2551382 - handle crash in request call in test
|
| Sun, 15 Dec 2024 02:34:57 -0500 |
John Rouillard |
fix(web) issue2551382 - case 1# or 1& failing.
|
| Sun, 15 Dec 2024 01:57:42 -0500 |
John Rouillard |
fix(web) issue2551382 - 409 not 400 errors returned
|
| Sun, 15 Dec 2024 01:35:51 -0500 |
John Rouillard |
doc: fix typo.
|
| Sun, 15 Dec 2024 00:42:18 -0500 |
John Rouillard |
fix(web): issue2551381 - update changelog.
|
| Sun, 15 Dec 2024 00:36:19 -0500 |
John Rouillard |
fix(web): issue2551381 - roundup-server parses multiple '?" incorrectly.
|
| Wed, 11 Dec 2024 16:24:16 -0500 |
John Rouillard |
chore(ruff): use names not magic numbers.
|
| Wed, 11 Dec 2024 16:15:48 -0500 |
John Rouillard |
chore(ruff): use variable not magic number.
|
| Wed, 11 Dec 2024 15:26:32 -0500 |
John Rouillard |
chore(ruff): sort imports.
|
| Wed, 11 Dec 2024 15:22:03 -0500 |
John Rouillard |
chore(ruff): clean whitespace and remove unrecognized noqa directive.
|
| Wed, 11 Dec 2024 15:18:36 -0500 |
John Rouillard |
chore(ruff): suppress combine branches with one or expression
|
| Wed, 11 Dec 2024 15:11:54 -0500 |
John Rouillard |
chore(ruff): replace 'type(x) == bool' with 'type(x) is bool'
|
| Wed, 11 Dec 2024 15:09:44 -0500 |
John Rouillard |
chore(ruff): changes to else/elif and nested ifs to reduce nesting
|
| Wed, 11 Dec 2024 14:29:19 -0500 |
John Rouillard |
chore(ruff): clean trailing whitespace
|
| Wed, 11 Dec 2024 14:21:44 -0500 |
John Rouillard |
chore(ruff): replace dict(...) with equivalent {...}
|
| Wed, 11 Dec 2024 14:17:01 -0500 |
John Rouillard |
chore(ruff): remove unreachable line
|
| Wed, 11 Dec 2024 13:58:27 -0500 |
John Rouillard |
chore(ruff): fix indentation level on de6b02c23ee9
|
| Wed, 11 Dec 2024 13:56:42 -0500 |
John Rouillard |
chore(ruff): replace 'else: if bool_exp:' with 'elif bool_exp:'
|
| Wed, 11 Dec 2024 13:53:39 -0500 |
John Rouillard |
chore(ruff): replace 'x == y or x == z' with 'x in [y,z]'
|
| Wed, 11 Dec 2024 13:46:48 -0500 |
John Rouillard |
fix: missed on input -> input_payload on e5362f8e1808
|
| Wed, 11 Dec 2024 13:36:40 -0500 |
John Rouillard |
chore(ruff): parenthesize "a and b or ..." to enforce/clarify precedence
|
| Wed, 11 Dec 2024 13:34:28 -0500 |
John Rouillard |
chore(ruff): replace not a == b with a != b
|
| Wed, 11 Dec 2024 13:30:50 -0500 |
John Rouillard |
chore(ruff): replace set(generator) with {set comprehension}
|
| Wed, 11 Dec 2024 13:29:11 -0500 |
John Rouillard |
chore(ruff): return/suppress boolen directly
|
| Wed, 11 Dec 2024 13:19:49 -0500 |
John Rouillard |
chore(ruff): suppress py2/py3 compatibility code thought useless
|
| Wed, 11 Dec 2024 13:17:42 -0500 |
John Rouillard |
chore(ruff): whatespace fixes/silence linting
|
| Wed, 11 Dec 2024 13:13:55 -0500 |
John Rouillard |
chore(ruff): whatespace fixes/silence linting
|
| Wed, 11 Dec 2024 13:04:34 -0500 |
John Rouillard |
chore(ruff): rename input and id parms/vars - don't shadow builtin
|
| Wed, 11 Dec 2024 11:36:16 -0500 |
John Rouillard |
chore(ruff): new name for input variable which doesn't shadow builtin
|
| Tue, 10 Dec 2024 17:38:57 -0500 |
John Rouillard |
fix(web): issue2551356. Add etag header ... fix env variable name
|
| Tue, 10 Dec 2024 16:06:13 -0500 |
John Rouillard |
fix(web): issue2551356. Add etag header for not-modified (304) request.
|
| Sun, 08 Dec 2024 21:36:29 -0500 |
John Rouillard |
chore: update to python 3.13. Also use index file shasum.
|
| Sun, 08 Dec 2024 18:57:02 -0500 |
John Rouillard |
try loading psycopg2 for python 2
|
| Sun, 08 Dec 2024 18:26:09 -0500 |
John Rouillard |
feat: add test download via /binary_content via dispatch - issue2551068
|
| Sun, 08 Dec 2024 18:03:07 -0500 |
John Rouillard |
chore: update manifest sha256sum to fix issue with python version.
|
| Sun, 08 Dec 2024 17:22:33 -0500 |
John Rouillard |
feat: issue2551068 - Provide way to retrieve file/msg data via rest endpoint.
|
| Sun, 08 Dec 2024 09:11:53 -0500 |
John Rouillard |
chore: bump version to 2.5.0
|
| Sun, 08 Dec 2024 09:10:21 -0500 |
John Rouillard |
bug: handle case where argv[0] is invoked by setuptools-py2cfg
|
| Sun, 08 Dec 2024 01:09:34 -0500 |
John Rouillard |
refactor: issue2551289. invalid REST Accept header stops request
|
| Sat, 07 Dec 2024 17:34:06 -0500 |
John Rouillard |
A few cleanups to toml format. alphabetize, whitespace...
|
| Wed, 04 Dec 2024 10:45:26 +0100 |
Ralf Schlatterbeck |
Documentation and fix for REST headers
|
| Tue, 03 Dec 2024 10:53:32 -0500 |
John Rouillard |
add security advantage of depending on core library.
|
| Mon, 02 Dec 2024 13:53:23 -0500 |
John Rouillard |
doc/test: issue2551374 - add error handling for filter expressions
|