Skip to content

Commit 6438d1a

Browse files
Changelog for v2.197.0 (#4115)
Co-authored-by: invisig0th <[email protected]>
1 parent 9d797c5 commit 6438d1a

8 files changed

+84
-27
lines changed

CHANGELOG.rst

+20
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,26 @@
66
Synapse Changelog
77
*****************
88

9+
v2.197.0 - 2025-02-05
10+
=====================
11+
12+
Model Changes
13+
-------------
14+
- Added ``doc:resume`` and ``doc:requirement`` to the data model.
15+
(`#4104 <https://github.com/vertexproject/synapse/pull/4104>`_)
16+
- See :ref:`userguide_model_v2_197_0` for more detailed model changes.
17+
18+
Features and Enhancements
19+
-------------------------
20+
- Increased the performance of executing Storm commands which have type
21+
annotations.
22+
(`#4111 <https://github.com/vertexproject/synapse/pull/4111>`_)
23+
- Move Storm Package JSON schema to ``synapse.lib.schemas``.
24+
(`#4112 <https://github.com/vertexproject/synapse/pull/4112>`_)
25+
- Added ``index.count.prop`` command to make it easier to count properties
26+
stored in the view and layers.
27+
(`#4113 <https://github.com/vertexproject/synapse/pull/4113>`_)
28+
929
v2.196.0 - 2025-01-31
1030
=====================
1131

changes/35e3d2488508612164f2849d07dcea6e.yaml

-5
This file was deleted.

changes/4721d0b993731772ff9fa0721e0db461.yaml

-5
This file was deleted.

changes/b51c06a874492b61188c9864cdcbc178.yaml

-5
This file was deleted.

changes/bdb33bcaca6df45be9e41132b2137ffc.yaml

-6
This file was deleted.

changes/e6d5978204bb27c5cee5629ee2117564.yaml

-5
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
2+
3+
.. _userguide_model_v2_197_0:
4+
5+
######################
6+
v2.197.0 Model Updates
7+
######################
8+
9+
The following model updates were made during the ``v2.197.0`` Synapse release.
10+
11+
*********
12+
New Forms
13+
*********
14+
15+
``doc:requirement``
16+
A single requirement, often defined by a standard.
17+
18+
19+
``doc:resume``
20+
A CV/resume document.
21+
22+
23+
``doc:resume:type:taxonomy``
24+
A taxonomy of resume types.
25+
26+
27+
``doc:requirement:type:taxonomy``
28+
A taxonomy of requirement types.
29+
30+
31+
32+
******************
33+
Updated Properties
34+
******************
35+
36+
``ou:enacted``
37+
The form had the following property updated:
38+
39+
40+
The property ``doc`` has been modified to allow the ``doc:requirement`` form.
41+
42+
43+
****************
44+
Deprecated Types
45+
****************
46+
47+
The following types have been marked as deprecated:
48+
49+
50+
* ``ou:alias``
51+
52+
53+
54+
*********************
55+
Deprecated Properties
56+
*********************
57+
58+
``ou:org``
59+
The form had the following property deprecated:
60+
61+
``alias``
62+
Deprecated. Please use ``ou:org:names``.
63+

synapse/models/doc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def getModelDefs(self):
100100
'document': 'resume',
101101
'documents': 'resumes',
102102
'type': 'doc:resume:type:taxonomy'},
103-
'doc': 'A cv/resume document.'}),
103+
'doc': 'A CV/resume document.'}),
104104
),
105105
'forms': (
106106

0 commit comments

Comments
 (0)