Wykres commitów

18511 Commity (297a810d101b9082f2d9a28e31de9c654c71b7b8)

Autor SHA1 Wiadomość Data
Sage Abdullah 297a810d10 Fix 'exact' lookup with an explicit subquery on Elasticsearch 2025-02-19 16:03:47 +00:00
Sage Abdullah bcf9f55b96 Fix 'exact' lookup with an implicit subquery on Elasticsearch 2025-02-19 16:03:47 +00:00
Sage Abdullah aa7b1d58ef Remove obsolete SubqueryConstraint check in search backends 2025-02-19 16:03:47 +00:00
Matt Westcott 6847656406 Ensure that bugfixes in 6.4.1 are mentioned in the release notes there and not in 6.5 2025-02-19 14:16:31 +00:00
Matt Westcott f7695bc4e7 remove spurious period from 6.4.1 release note 2025-02-19 14:10:19 +00:00
Matt Westcott d1b7c38fa8 remove spurious period from 6.3.4 release note 2025-02-19 14:08:51 +00:00
Thibaud Colas 451195a3de Add v6.3.4 release notes to release index 2025-02-19 14:08:47 +00:00
Thibaud Colas 952ee04f08 Use the correct event listener to adjust minimap positioning (#12896) 2025-02-19 13:43:44 +00:00
Sage Abdullah 3e24fee094 Fix invisible nested menu items #12847 2025-02-19 13:25:42 +00:00
zerolab 81171b1eae
fixup! Unpin django-filter's top boundary (#12885) 2025-02-17 14:53:25 +00:00
zerolab 8dd59b149a
Unpin django-filter's top boundary (#12885) 2025-02-17 14:33:31 +00:00
Matt Westcott cbca63c1a3 Release note for #12874 2025-02-13 15:43:57 +00:00
Matt Westcott 995203f42e Pass image PK to set_image_focal_point_task as a string
Using a non-integer primary key on an image model is not formally supported or tested, but it's possible someone might try it, and there's no harm in getting into the habit of stringifying PKs that we pass to tasks.
2025-02-13 14:21:53 +00:00
Matt Westcott c865c8a1f3 Fix handling of models with UUID primary keys in search indexing 2025-02-13 14:18:06 +00:00
Matt Westcott fcf3e257ec Fix handling of models with UUID primary keys in reference index 2025-02-13 13:49:46 +00:00
Matt Westcott 88abe5872c Support searching `none()` querysets (#12873) 2025-02-13 12:52:04 +00:00
Matt Westcott e01aaed00c Add release notes for 6.4.1 including #12862 2025-02-13 01:12:13 +00:00
Sage Abdullah 3c81589250 Prevent error when filtering by locale and searching with Elasticsearch (#12862) 2025-02-13 01:09:18 +00:00
LB (Ben Johnston) 33d30d8105
NPM package updates; `downshift`, `focus-trap-react`, `immer`, `redux`, `uuid` (#12540)
* Update NPM packages (focus-trap-react, downshift, uuid, immer, redux)

## Relevant upgrade release notes

- `focus-trap-react` - v8 to v10
  - https://github.com/focus-trap/focus-trap-react/releases/tag/v9.0.0
  - https://github.com/focus-trap/focus-trap-react/releases/tag/v10.0.0
- `downshift` - v7 to v9
  - https://github.com/downshift-js/downshift/releases/tag/v9.0.0
  - https://github.com/downshift-js/downshift/releases/tag/v8.0.0
  - https://github.com/downshift-js/downshift/blob/master/src/hooks/MIGRATION_V8.md
- `uuid` - v9 to v11
  - https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md#1100-2024-10-26
  - https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md#1000-2024-06-07
- `immer` v9 to v10
  - https://github.com/immerjs/immer/releases/tag/v10.0.0
- Update Redux ecosystem
  - https://github.com/reduxjs/redux-thunk/releases/tag/v3.1.0
  - https://github.com/reduxjs/redux/releases/tag/v5.0.0
  - https://github.com/reduxjs/reselect/releases/tag/v5.0.1
  - https://github.com/reduxjs/react-redux/releases/tag/v8.0.0 (note: react-redux cannot be updated further due to React dependency, which is blocked by Draftail)

* Add release notes

---------

Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2025-02-12 03:51:27 +00:00
naina35 182ae8488c
Apply Sass mixed declarations migration in preparation for CSS nesting. Fix #12720 (#12733)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2025-02-12 03:15:56 +00:00
Srishti Jaiswal e23096f354
Migrate away from deprecated Sass import rules to module system (#12734) 2025-02-11 14:58:31 +00:00
mahmoud 8f6b72b19a Docs - Fix word order in Headless GraphQL section
Fixes #12852
2025-02-11 06:00:29 +10:00
Sage Abdullah 31f547e103 Include Python version in CircleCI cache key
Ref: https://discuss.circleci.com/t/how-to-use-python-version-or-image-name-in-cache-key/41108/2
2025-02-10 16:30:51 +00:00
Srishti-j18 6c7e45b894
Do not show the content type column as sortable when searching pages 2025-02-10 15:05:13 +00:00
Matt Westcott 225d3f384c Use standard tokenizer for Elasticsearch to preserve numeric tokens (#12851)
Since its inception the Elasticsearch backend has defaulted to the `lowercase` tokenizer (https://www.elastic.co/guide/en/elasticsearch/reference/current/analysis-tokenizers.html#_word_oriented_tokenizers), which treats non-letter characters as separators. This means that numbers within text (surrounded by whitespace) are skipped when indexing and cannot be searched.

Change to the `standard` tokenizer, but apply the `lowercase` filter to keep searches case-insensitive.
2025-02-10 12:55:38 +00:00
Thibaud Colas 801b1bb067
Add more details of legacy rich text behavior
This is to hopefully make it easier to look up with search.
2025-02-06 16:34:49 +00:00
Sage Abdullah a812b61f60
Release note for #8716 2025-02-06 11:54:51 +00:00
Sage Abdullah ad70e5fdb6
Simplify UniqueConstraint check for custom rendition models 2025-02-06 11:46:26 +00:00
Cynthia Kiser 530cc5c355
Added tests for AbstractRendition's unique constraint check
Co-authored-by: Sage Abdullah <sage.abdullah@torchbox.com>
2025-02-06 11:40:15 +00:00
Sage Abdullah 1aecddf34a
Improve unique constraint check error message for custom rendition models
Co-authored-by: Cynthia Kiser <cnk@caltech.edu>
2025-02-06 11:40:15 +00:00
Oliver Parker ea30d636d4
Adds support for constraints on AbstractRendition, as an alternative to unique_together 2025-02-06 11:38:52 +00:00
Sage Abdullah 9294907f31
Release note for #12849 2025-02-06 10:47:18 +00:00
Matt Westcott 2acd50c2db Simplify example of appending a rich text block to a streamfield 2025-02-05 20:38:19 +00:00
Matt Westcott a61cfa678d Apply normalization when modifying a StreamBlock
Fixes #12827
2025-02-05 20:37:00 +00:00
Matt Westcott 09c7f66e03 Add release note for #12639 to 6.5 release page 2025-02-05 18:39:10 +00:00
Sage Abdullah 794fe25e97 Add normalize() implementation to TypedTableBlock (#12808) 2025-02-05 18:38:16 +00:00
Matt Westcott 58584896df Add Seb Corbin to core team 2025-02-05 09:35:43 +00:00
Matt Westcott 78ba5f3625 Update latest.txt for 6.4 and 6.3.3 2025-02-05 09:34:32 +00:00
Sage Abdullah 9de2f4ddd6
Add Bernhard Bliem to contributors 2025-02-04 13:47:41 +00:00
Bernhard Bliem 9c4136635b
Activate user's preferred language in JavaScriptCatalog view 2025-02-04 13:36:12 +00:00
Aayushman Singh 4f37b011f5
Add WAGTAIL_ prefix to non-taggit settings 2025-02-04 10:34:25 +00:00
Sage Abdullah 251d1d188c Expand docs for StreamField block previews 2025-02-03 16:43:29 +00:00
Sage Abdullah f309a44075 Add reference docs for Block.get_template and Block.get_context 2025-02-03 16:43:29 +00:00
Sage Abdullah 88bb61d32e Minor tweaks to StreamField block previews documentation 2025-02-03 16:43:29 +00:00
Matt Westcott f04af6cc16 Fill in release date for 6.3.3 2025-02-03 15:11:44 +00:00
Matt Westcott c6923f43c4 Fill in release date for 5.2.8 2025-02-03 15:11:28 +00:00
Matt Westcott af7254a808 Fill in release date for 6.4 final 2025-02-03 15:11:18 +00:00
Matt Westcott cb0a358022 Fetch new translations from Transifex 2025-02-03 15:10:49 +00:00
Sage Abdullah c70719bfa6
Ensure block preview is hidden when the user clears out the search input 2025-02-03 14:45:37 +00:00
Matt Westcott 14d3341ffd Release note for #12829 in 6.4 2025-01-31 18:09:49 +00:00