Skip to content

Latest commit

 

History

History
76 lines (58 loc) · 5.76 KB

changelog.md

File metadata and controls

76 lines (58 loc) · 5.76 KB

Changelog

3.0.1 (unreleased)

  • structurizr-client: Workspace archive file now includes the branch name in the filename.

3.0.0 (19th September 2024)

  • structurizr-client: Adds support to get/put workspace branches on the cloud service and on-premises installation.
  • structurizr-core: Adds name-value properties to dynamic view relationship views (#316).
  • structurizr-component: Initial rewrite of the original structurizr-analysis library - provides a way to automatically find components in a Java codebase.
  • structurizr-dsl: Removes deprecated !constant keyword.
  • structurizr-dsl: Adds name-value properties to dynamic view relationship views.
  • structurizr-dsl: Fixes #312 (!include doesn't work with files encoded as UTF-8 BOM).
  • structurizr-dsl: Adds a way to explicitly specify the order of relationships in dynamic views.
  • structurizr-dsl: Adds support for element technology expressions (e.g. element.technology==Java and element.technology!=Java).
  • structurizr-dsl: Deprecates !ref and !extend.
  • structurizr-dsl: Adds an !element keyword that can be used to find a single element by identifier or canonical name (replaces !ref and !extend).
  • structurizr-dsl: Adds an !elements keyword that can be used to find a set of elements via an expression.
  • structurizr-dsl: Adds an !relationship keyword that can be used to find a single relationship by identifier (replaces !ref and !extend).
  • structurizr-dsl: Adds a !relationships keyword that can be used to find a set of relationships via an expression.
  • structurizr-dsl: Adds a DSL wrapper around the structurizr-component component finder (!components).
  • structurizr-dsl: Adds support for local theme files to be specified via theme (#331).
  • structurizr-dsl: An exception is now thrown when trying to use disallowed features in restricted mode (e.g. !docs, !include <file>, etc).
  • structurizr-export: Adds support for icons to the Ilograph exporter (#332).
  • structurizr-export: Adds support for imports to the Ilograph exporter (#332).
  • structurizr-export: Fixes #337 (Malformed subgraph name in Mermaid render).

2.2.0 (2nd July 2024)

  • structurizr-dsl: Adds support for element/relationship property expressions (#297).
  • structurizr-dsl: Adds a way to specify the implied relationships strategy via a fully qualified class name when using !impliedRelationships.
  • structurizr-dsl: Adds the ability to include single files as documentation (#303).

2.1.4 (18th June 2024)

  • structurizr-core: Fixes #306 (Workspace.trim() is not correctly removing relationships when the destination of a relationship is removed from the workspace).

2.1.3 (16th June 2024)

  • structurizr-core: Fixes #298 (Unknown model item type on 'element').

2.1.2 (30th April 2024)

  • structurizr-core: Adds better backwards compatibility to deal with old workspaces and those created by third party tooling that are missing view order property on views.
  • structurizr-export: Fixes #263 (C4PlantUMLExporter not following C4-PlantUML best practices with c4plantuml.tags true).

2.1.1 (3rd March 2024)

  • structurizr-core: Fixes problem with ordering of relationship view vertices.

2.1.0 (2nd March 2024)

  • structurizr-core: ViewSet.isEmpty() was missing a check for image views.
  • structurizr-core: Promotes ModelView.copyLayoutInformationFrom() to be public, to allow individual view layout information to be merged.
  • structurizr-client: Fixes #257 (Serialization to JSON is not deterministic).
  • structurizr-dsl: Fixes #252 (DSL parser does not seem to handle curly brackets balance).
  • structurizr-dsl: Deprecates !constant, adds !const and !var (see #253).
  • structurizr-export: Fixes #258 (Plantuml renderer: Group and system of same name yields puml code resulting in error).

2.0.0 (22nd February 2024)

  • structurizr-core: Removes deprecated concepts - enterprise and software system/person location.
  • structurizr-core: Adds Workspace.trim() to trim a workspace of unused elements (i.e. those not associated with any views).
  • structurizr-core: Adds support for SVG image views (#249).
  • structurizr-core: View keys will be automatically generated if not specified.
  • structurizr-client: Removes StructurizrClient (use WorkspaceApiClient instead).
  • structurizr-client: Merges #238 (fix: re-enable system properties for theme http client).
  • structurizr-dsl: Removes enterprise keyword.
  • structurizr-dsl: Adds !decisions as a synonym for !adrs.
  • structurizr-dsl: Allows !identifiers to be used inside model.
  • structurizr-dsl: Fixes #233 (Implied relationships not configured correctly when DSL workspace extends a JSON workspace).
  • structurizr-import: Adds support for importing decisions managed by Log4brains.
  • structurizr-import: Adds support for importing decisions in MADR format.
  • structurizr-import: Fixes #251 (Importing docs fails on files without extension).
  • structurizr-inspection: Initial version.