bb6e8e516c
Remove telemetry, Docker, Github-specifics, development-only tools
2025-03-10 18:33:17 +01:00
ba1f180c83
Merge pull request #3508 from bookwyrm-social/dependabot/pip/django-4.2.18
...
CodeQL / Analyze (push) Has been cancelled
Templates validator / lint (push) Has been cancelled
JavaScript Prettier (run ./bw-dev prettier to fix) / Lint with Prettier (push) Has been cancelled
Python / Tests (pytest) (push) Has been cancelled
Python / Linting (pylint) (push) Has been cancelled
Python / Typing (mypy) (push) Has been cancelled
Python / Formatting (black; run ./bw-dev black to fix) (push) Has been cancelled
Bump django from 4.2.17 to 4.2.18
2025-02-13 20:05:13 -08:00
dependabot[bot]
924f377e4e
Bump django from 4.2.17 to 4.2.18
...
Bumps [django](https://github.com/django/django ) from 4.2.17 to 4.2.18.
- [Commits](https://github.com/django/django/compare/4.2.17...4.2.18 )
---
updated-dependencies:
- dependency-name: django
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-02-14 03:14:17 +00:00
eef66b5fc4
Merge pull request #3507 from bookwyrm-social/update-linter-ubuntu
...
GitHub emailed me to say we need to use a later ubuntu version for these
2025-02-13 19:13:28 -08:00
4138a2b6aa
GitHub emailed me to say we need to use a later ubuntu version for these
2025-02-13 18:39:40 -08:00
03bab92ee6
Merge pull request #3492 from bookwyrm-social/inventaire-titles
...
Alters get_description code for inventaire queries
2025-01-10 18:21:17 -08:00
d9d614b3bc
Updates test string for inventaire
2025-01-10 18:11:57 -08:00
609b7f58c8
Alters get_description code for inventaire queries
2025-01-10 18:01:48 -08:00
3916666897
Merge pull request #3478 from bookwyrm-social/dependabot/pip/django-4.2.17
...
Bump django from 4.2.16 to 4.2.17
2024-12-06 16:15:01 -08:00
dependabot[bot]
305ef9195b
Bump django from 4.2.16 to 4.2.17
...
Bumps [django](https://github.com/django/django ) from 4.2.16 to 4.2.17.
- [Commits](https://github.com/django/django/compare/4.2.16...4.2.17 )
---
updated-dependencies:
- dependency-name: django
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
2024-12-06 18:58:00 +00:00
de8ba3cf86
Merge pull request #3476 from hughrun/block-invites
...
Prevent invite requests from blocked domains
2024-11-30 19:25:03 -08:00
023e62294e
Prevent invite requests from blocked domains
...
Prevents form submission when requesting an email invite using an address from a blocked domain.
Fixes #3366
2024-11-30 15:54:37 +11:00
61845678c4
Merge pull request #3473 from bookwyrm-social/dependabot/pip/aiohttp-3.10.11
...
Bump aiohttp from 3.10.2 to 3.10.11
2024-11-18 18:49:03 -08:00
dependabot[bot]
0a48c7c81b
Bump aiohttp from 3.10.2 to 3.10.11
...
Bumps [aiohttp](https://github.com/aio-libs/aiohttp ) from 3.10.2 to 3.10.11.
- [Release notes](https://github.com/aio-libs/aiohttp/releases )
- [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst )
- [Commits](https://github.com/aio-libs/aiohttp/compare/v3.10.2...v3.10.11 )
---
updated-dependencies:
- dependency-name: aiohttp
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
2024-11-18 21:30:35 +00:00
d16faac6da
Merge pull request #3460 from hughrun/3426
...
fix failing test from #3432
2024-10-20 18:50:46 -07:00
750cedd078
fix failing test
2024-10-21 12:41:16 +11:00
14dba48415
Merge pull request #3437 from hughrun/published_date
...
Fix post dates being inconsistent
2024-10-17 15:39:13 -07:00
09bbaf0671
Merge pull request #3442 from bookwyrm-social/dependabot/pip/django-4.2.16
...
Bump django from 4.2.15 to 4.2.16
2024-10-17 15:33:48 -07:00
f2eb3fdccb
Merge pull request #3458 from bookwyrm-social/update_locales
...
Update locales
2024-10-17 15:33:33 -07:00
20026b968d
Merge pull request #3454 from Guanchishan/patch-3
...
show Wikidata link on author page
2024-10-17 15:33:15 -07:00
7ecf3b65d7
Merge pull request #3451 from Guanchishan/patch-1
...
Fix IntegrityError caused by duplicate periodic task creation
2024-10-17 15:23:31 -07:00
0a3fc58669
Check for wikidata when determining if links are present
2024-10-17 15:18:48 -07:00
0ccbf8d739
Fixes inconsistent wording in source text
2024-10-17 14:56:20 -07:00
8594c8c0f6
Updates locales
2024-10-17 14:55:07 -07:00
f1b0e4b9d6
Merge pull request #3432 from hughrun/3426
...
add test for resolving users with aliases
2024-10-17 14:49:33 -07:00
1923db31b1
Merge pull request #3434 from hughrun/signed_requests
...
sign all AP requests
2024-10-17 14:13:55 -07:00
f8650bbb1c
show Wikidata link on author page
...
Supporting Wikidata is very wonderful. And how about make Wikidata link visible on author page?
Modified bookwyrm\templates\author\author.html
2024-10-13 19:02:33 +09:00
6143aa66e3
Fix IntegrityError when creating periodic tasks
...
Change PeriodicTask.objects.get_or_create() to PeriodicTask.objects.update_or_create().
This change prevents a potential IntegrityError when creating a periodic task due to duplicate primary key. By using update_or_create, if the record already exists, it will be updated instead of attempting to insert a new record with the same primary key, ensuring the process completes without error.
2024-10-11 20:28:27 +09:00
dependabot[bot]
999829dc8b
Bump django from 4.2.15 to 4.2.16
...
Bumps [django](https://github.com/django/django ) from 4.2.15 to 4.2.16.
- [Commits](https://github.com/django/django/compare/4.2.15...4.2.16 )
---
updated-dependencies:
- dependency-name: django
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
2024-10-08 21:28:47 +00:00
514c54f30a
black formatting
2024-09-19 19:46:03 +10:00
6745a9a3f5
Add test for #3365 fix ( #5 )
2024-09-19 19:38:33 +10:00
bee9dafc9d
update tests
2024-09-18 19:51:43 +10:00
dd45823790
enable localised dates
2024-09-18 19:40:44 +10:00
a61ca162b0
Fix post dates being inconsistent
...
Makes all dates fixed except if in the last day, in which case they are relative times.
Fixes #3365
2024-09-14 14:33:02 +10:00
cfe10fa874
update error message
2024-09-09 10:19:03 +10:00
13381b9b4d
Merge pull request #3435 from hughrun/docker-version
...
docker-compose 'version' has been deprecated
2024-09-08 17:16:10 -07:00
c0ce22a607
docker-compose 'version' has been deprecated
2024-09-09 10:04:16 +10:00
9c89e0fbaf
sign all AP requests
...
We have been attempting unsigned GET requests and then if they fail,
sending another signed request within the same loop.
This not only causes single-threaded instances to fail, confusing new
users, but is also unnecessary, since servers that don't require
requests to be signed will just ignore the signed headers.
Signing all AP requests simplifies things and should see a
marginal increase in speed when interacting with new servers
that require signed payloads.
2024-09-09 09:46:04 +10:00
1a93ba0cac
check alias with new user data
...
Instead of breaking a bunch of existing tests...
2024-09-09 08:47:59 +10:00
ed55e052f6
add test for resolving users with aliases
2024-09-08 18:11:47 +10:00
cbdb59d3cf
Merge pull request #3408 from bookwyrm-social/dependabot/pip/aiohttp-3.10.2
...
Bump aiohttp from 3.9.4 to 3.10.2
2024-09-02 05:39:26 -07:00
80248d3c1d
Convert min_confidence param to string to appease mypy
2024-08-31 20:16:41 -03:00
904aa6c49a
Merge pull request #3394 from matthewmincher/feature/user-shelf-preview-order
...
Order user shelf previews by book shelved date
2024-08-27 18:38:21 -07:00
4123478058
Merge pull request #3423 from bookwyrm-social/misc-tests
...
Adds some unit tests
2024-08-27 18:33:43 -07:00
3555ef9d2e
Merge pull request #3416 from bookwyrm-social/edit-status-header
...
Sets edit status header to indicate status type
2024-08-27 14:37:26 -07:00
23dfe3924d
Merge pull request #3418 from bookwyrm-social/hide-ratings
...
Hide ratings
2024-08-27 19:06:07 +10:00
abb97e6044
Merge branch 'main' into edit-status-header
2024-08-26 13:34:49 -07:00
a6912dc0c2
Merge branch 'main' into hide-ratings
2024-08-26 12:35:47 -07:00
df607a0e45
Merge pull request #3419 from bookwyrm-social/test-fix
...
Uses workaround for test that fails ~sometimes~
2024-08-26 12:35:32 -07:00
bd773f41c7
Uses much simpler approach to ensuring test result order
2024-08-26 11:33:01 -07:00