Skip to content

Commit

Permalink
Changelog for v2.184.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vEpiphyte committed Oct 18, 2024
1 parent 54455df commit f51c9c5
Show file tree
Hide file tree
Showing 13 changed files with 126 additions and 61 deletions.
46 changes: 46 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,52 @@
Synapse Changelog
*****************


v2.184.0 - 2024-10-18
=====================

Model Changes
-------------
- Added ``ou:requirement:type`` taxonomy property to track requirement types.
(`#3954 <https://github.com/vertexproject/synapse/pull/3954>`_)
- Added ``it:app:snort:hit:dropped`` property to track when hits result in the
traffic being dropped.
(`#3954 <https://github.com/vertexproject/synapse/pull/3954>`_)
- Added ``ou:vitals:budget`` property to track budget allocations.
(`#3954 <https://github.com/vertexproject/synapse/pull/3954>`_)
- Added ``risk:mitigation:type`` as a ``taxonomy`` to track mitigation types.
(`#3957 <https://github.com/vertexproject/synapse/pull/3957>`_)
- Added ``ou:asset`` form and associated properties to model organizational
asset tracking.
(`#3957 <https://github.com/vertexproject/synapse/pull/3957>`_)
- See :ref:`userguide_model_v2_184_0` for more detailed model changes.

Features and Enhancements
-------------------------
- Add ``$lib.graph.revoke()`` API for revoking user/role permissions on a graph
projection.
(`#3950 <https://github.com/vertexproject/synapse/pull/3950>`_)
- Mark all functions in a deprecated Storm library as deprecated.
(`#3952 <https://github.com/vertexproject/synapse/pull/3952>`_)

Bugfixes
--------
- Fix a Storm bug where a runtsafe list unpacking operation which was executed
per-node would be executed one additional time after all nodes had finished
moving through the pipeline.
(`#3949 <https://github.com/vertexproject/synapse/pull/3949>`_)
- Fix an issue where the default permission level specified when adding a graph
projection was overwritten.
(`#3950 <https://github.com/vertexproject/synapse/pull/3950>`_)
- Fixed an issue where extended model forms which implemented interfaces could
not be removed due to inherited props.
(`#3958 <https://github.com/vertexproject/synapse/pull/3958>`_)

Deprecations
------------
- Deprecate ``$lib.inet.whois.guid``.
(`#3951 <https://github.com/vertexproject/synapse/pull/3951>`_)

v2.183.0 - 2024-10-09
=====================

Expand Down
5 changes: 0 additions & 5 deletions changes/1bb2c10dcd45ca552c2614fdc31903b7.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions changes/2ce741ee21dd3f5f55838ec14d75e807.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions changes/33127175adaff42214b2e19af4688fab.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions changes/44763e312940ac2d6b448d82442020c4.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions changes/8b13b1e0805b28027205dcc2a9d507ba.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions changes/8f5c83c0f2f977bfcd07b6131aa7ad1b.yaml

This file was deleted.

7 changes: 0 additions & 7 deletions changes/b033cdc61731e49b48db67094121b4d6.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions changes/c0742a66de15a690dbd560cf8f17a670.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions changes/d0b850904544a61640cd0432a052d800.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions changes/d4c6fdc96cc6347ebcef68d8fa6b0131.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions changes/f57bc5bea7752161edf0667f2e08204c.yaml

This file was deleted.

80 changes: 80 additions & 0 deletions docs/synapse/userguides/model_updates/update_v2_184_0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@


.. _userguide_model_v2_184_0:

######################
v2.184.0 Model Updates
######################

The following model updates were made during the ``v2.184.0`` Synapse release.

*********
New Forms
*********

``ou:asset``
A node for tracking assets which belong to an organization.

``ou:asset:status:taxonomy``
An asset status taxonomy.

``ou:asset:type:taxonomy``
An asset type taxonomy.

``ou:requirement:type:taxonomy``
A taxonomy of requirement types.

``risk:mitigation:type:taxonomy``
A taxonomy of mitigation types.


**************
New Properties
**************

``it:app:snort:hit``
The form had the following property added to it:

``dropped``
Set to true if the network traffic was dropped due to the match.


``ou:requirement``
The form had the following property added to it:

``type``
The type of requirement.


``ou:vitals``
The form had the following property added to it:

``budget``
The budget allocated for the period.


``risk:mitigation``
The form had the following property added to it:

``type``
A taxonomy type entry for the mitigation.



***********
Light Edges
***********

``uses``
When used with a ``risk:mitigation`` and an ``inet:service:rule`` node, the
edge indicates the mitigation uses the service rule.

When used with a ``risk:mitigation`` and an ``meta:rule`` node, the edge
indicates the mitigation uses the rule.

When used with a ``risk:mitigation`` and an ``it:app:yara:rule`` node, the
edge indicates the mitigation uses the YARA rule.

When used with a ``risk:mitigation`` and an ``it:app:snort:rule`` node, the
edge indicates the mitigation uses the Snort rule.

0 comments on commit f51c9c5

Please sign in to comment.