浏览代码

Add first version of 3.2.5 release note

master
Viggo de Vries 1年前
父节点
当前提交
e36abc41e0
共有 2 个文件被更改,包括 54 次插入0 次删除
  1. 1
    0
      docs/source/releases/index.rst
  2. 53
    0
      docs/source/releases/v3.2.5.rst

+ 1
- 0
docs/source/releases/index.rst 查看文件

@@ -9,6 +9,7 @@ Release notes for each version of Oscar published to PyPI.
9 9
 .. toctree::
10 10
     :maxdepth: 1
11 11
 
12
+    v3.2.5
12 13
     v3.2.4
13 14
     v3.2.3
14 15
     v3.2.2

+ 53
- 0
docs/source/releases/v3.2.5.rst 查看文件

@@ -0,0 +1,53 @@
1
+========================================
2
+Oscar 3.2.5 release notes
3
+========================================
4
+
5
+:release: 2024-04-22
6
+
7
+.. contents::
8
+    :local:
9
+    :depth: 1
10
+
11
+
12
+.. _compatibility_of_3.2.5:
13
+
14
+Compatibility
15
+~~~~~~~~~~~~~
16
+
17
+Oscar 3.2.5 is compatible with Django 3.2, 4.0, 4.1 and 4.2 and Python versions 3.8, 3.9, 3.10 and 3.11
18
+
19
+.. _new_in_3.2.5:
20
+
21
+What's new in Oscar 3.2.5?
22
+~~~~~~~~~~~~~~~~~~~~~~~~~~
23
+
24
+There were a couple of major changes in django-oscar 3.2.5
25
+
26
+
27
+==========
28
+Search app
29
+==========
30
+
31
+The search app was completely overhauled, haystack was upgraded to the newest version and we removed the search handlers and are now working with the haystack class based views.
32
+
33
+This change has made it possible to update our django-oscar-elasticsearch package to have a much better and adjustable implementation with Elasticsearch 8.13. 
34
+
35
+When upgrading to this version you will have to change you search customisations to now be done in the search views instead of the search handlers.
36
+
37
+The catalogue views (CatalogueView and ProductCategoryView) definitions are now moved to the search app for easier overriding and customising in projects (you only have to fork 1 app instead of 2) 
38
+
39
+See: https://github.com/django-oscar/django-oscar/commit/45adecde1945098dae75599d8cbcc35b56a0608e for everything that has changed.
40
+
41
+================
42
+Stock allocation
43
+================
44
+
45
+Stock allocations are now also tracked on the Order.Line model. It was possible to cancel an order so the stock was re-allocated to the stock record, then manually set the order to paid and then re-cancel the order which will re-allocate the stock again which has not been allocated again after manually setting the order to paid.
46
+
47
+
48
+================================
49
+Excluding categories from ranges
50
+================================
51
+
52
+It's now also possible to exclude a category from a range.
53
+If you would have to select hundreds of categories in the included categories the queries would become really slow and it required lots of maintenance from the site owner to keep all new categories in this list.

正在加载...
取消
保存