Skip to content

Commit e389515

Browse files
authored
Merge branch 'master' into epiphyte-storm-http-errs
2 parents 2671668 + 8089469 commit e389515

9 files changed

+85
-15
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.204.1
2+
current_version = 2.205.0
33
commit = True
44
tag = True
55
tag_message =

CHANGELOG.rst

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

9+
v2.205.0 - 2025-03-28
10+
=====================
11+
12+
Model Changes
13+
-------------
14+
- Added a ``uses`` light edge between ``it:prod:soft`` and ``risk:vuln`` forms.
15+
(`#4198 <https://github.com/vertexproject/synapse/pull/4198>`_)
16+
- Added a ``targets`` light edge between ``risk:compromise`` and
17+
``ou:industry`` forms.
18+
(`#4198 <https://github.com/vertexproject/synapse/pull/4198>`_)
19+
- See :ref:`userguide_model_v2_205_0` for more detailed model changes.
20+
921
v2.204.1 - 2025-03-25
1022
=====================
1123

changes/8077de946625725db35cb9af9e73bebf.yaml

-6
This file was deleted.

changes/cb518ea29bf8bff1acbe52bb15faff73.yaml

-5
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
2+
3+
.. _userguide_model_v2_205_0:
4+
5+
######################
6+
v2.205.0 Model Updates
7+
######################
8+
9+
The following model updates were made during the ``v2.205.0`` Synapse release.
10+
11+
*********
12+
New Forms
13+
*********
14+
15+
``tel:phone:type:taxonomy``
16+
A taxonomy of phone number types.
17+
18+
19+
20+
**************
21+
New Properties
22+
**************
23+
24+
``econ:acct:balance``
25+
The form had the following property added to it:
26+
27+
``instrument``
28+
The financial instrument holding the balance.
29+
30+
31+
``tel:phone``
32+
The form had the following property added to it:
33+
34+
``type``
35+
The type of phone number.
36+
37+
38+
39+
***********
40+
Light Edges
41+
***********
42+
43+
``targets``
44+
When used with a ``risk:compromise`` and an ``ou:industry`` node, the edge
45+
indicates the compromise was assessed to be based on the victim's role in
46+
the industry.
47+
48+
49+
``uses``
50+
When used with an ``it:prod:soft`` and a ``risk:vuln`` node, the edge
51+
indicates the software uses the vulnerability.
52+
53+
54+
55+
*********************
56+
Deprecated Properties
57+
*********************
58+
59+
``econ:acct:balance``
60+
The form had the following properties deprecated:
61+
62+
63+
``crypto:address``
64+
Deprecated. Please use ``:instrument``.
65+
66+
67+
``pay:card``
68+
Deprecated. Please use ``:instrument``.
69+

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
44

55
[project]
66
name = 'synapse'
7-
version = '2.204.1'
7+
version = '2.205.0'
88
authors = [
99
{ name = 'The Vertex Project LLC', email = '[email protected]'},
1010
]

synapse/lib/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,6 @@ def reqVersion(valu, reqver,
223223
##############################################################################
224224
# The following are touched during the release process by bumpversion.
225225
# Do not modify these directly.
226-
version = (2, 204, 1)
226+
version = (2, 205, 0)
227227
verstring = '.'.join([str(x) for x in version])
228228
commit = ''

synapse/models/economic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ def getModelDefs(self):
322322
'doc': 'The time the balance was recorded.'}),
323323

324324
('instrument', ('econ:pay:instrument', {}), {
325-
'doc': 'The financial insutrument holding the balance.'}),
325+
'doc': 'The financial instrument holding the balance.'}),
326326

327327
('pay:card', ('econ:pay:card', {}), {
328328
'deprecated': True,

0 commit comments

Comments
 (0)