Releases: localgod/tsarchi
Releases · localgod/tsarchi
1.0.2
What’s Changed
📦 Dependencies
- chore(deps-dev): bump typescript-eslint from 8.36.0 to 8.39.0 (#143) @dependabot[bot]
- chore(deps-dev): bump @types/node from 24.0.13 to 24.2.1 (#145) @dependabot[bot]
- chore(deps-dev): bump eslint from 9.31.0 to 9.33.0 (#146) @dependabot[bot]
- chore(deps-dev): bump @stylistic/eslint-plugin from 5.1.0 to 5.2.3 (#147) @dependabot[bot]
- fix(deps): bump chalk from 5.4.1 to 5.5.0 (#142) @dependabot[bot]
- chore(deps-dev): bump eslint from 9.30.1 to 9.31.0 (#130) @dependabot[bot]
- chore(deps-dev): bump @types/node from 24.0.10 to 24.0.13 (#131) @dependabot[bot]
- chore(deps-dev): bump @eslint/js from 9.30.1 to 9.31.0 (#133) @dependabot[bot]
- chore(deps-dev): bump typescript-eslint from 8.35.1 to 8.36.0 (#132) @dependabot[bot]
- chore(deps-dev): bump eslint from 9.30.0 to 9.30.1 (#125) @dependabot[bot]
- chore(deps-dev): bump typescript-eslint from 8.35.0 to 8.35.1 (#128) @dependabot[bot]
- chore(deps-dev): bump @types/node from 24.0.7 to 24.0.10 (#129) @dependabot[bot]
- chore(deps-dev): bump @eslint/js from 9.30.0 to 9.30.1 (#127) @dependabot[bot]
- chore(deps-dev): bump globals from 16.2.0 to 16.3.0 (#126) @dependabot[bot]
- chore(deps-dev): bump @stylistic/eslint-plugin from 4.4.1 to 5.1.0 (#122) @dependabot[bot]
- chore(deps-dev): bump @eslint/js from 9.29.0 to 9.30.0 (#121) @dependabot[bot]
- chore(deps-dev): bump typescript-eslint from 8.34.1 to 8.35.0 (#123) @dependabot[bot]
- chore(deps-dev): bump eslint from 9.29.0 to 9.30.0 (#124) @dependabot[bot]
- chore(deps-dev): bump @types/node from 24.0.3 to 24.0.7 (#120) @dependabot[bot]
- chore(deps-dev): bump typescript-eslint from 8.34.0 to 8.34.1 (#117) @dependabot[bot]
- fix(deps): bump vitest from 3.2.3 to 3.2.4 (#119) @dependabot[bot]
- chore(deps-dev): bump @types/node from 24.0.1 to 24.0.3 (#118) @dependabot[bot]
- chore(deps-dev): bump typescript-eslint from 8.33.1 to 8.34.0 (#114) @dependabot[bot]
- chore(deps-dev): bump @types/node from 22.15.30 to 24.0.1 (#116) @dependabot[bot]
- fix(deps): bump vitest from 3.2.2 to 3.2.3 (#113) @dependabot[bot]
- chore(deps-dev): bump eslint from 9.28.0 to 9.29.0 (#112) @dependabot[bot]
- chore(deps-dev): bump @types/node from 22.15.29 to 22.15.30 (#111) @dependabot[bot]
- fix(deps): bump fast-xml-parser from 5.2.3 to 5.2.5 (#110) @dependabot[bot]
1.0.0
Release Notes
1.0.0 - Initial Core Functionality
This release introduces the foundational components for working with Archimate models in TypeScript.
Key Features:
- Archimate XML Parsing: Added the ability to load and parse Archimate models from
.archimateXML files into an internal data structure. - Archimate XML Serialization: Implemented the functionality to serialize the internal model representation back into the standard
.archimateXML format. - Command-Line Interface (CLI): Included a basic
synccommand that allows loading a model from a specified input file and saving it to an output file. - Model Structure Support: Core parsing and serialization logic supports Archimate folders, elements, properties, bounds, and source connections.
- XML Handling: Utilizes the
fast-xml-parserlibrary for efficient XML processing.
How to Use (CLI):
sync -i <input_file.archimate> -o <output_file.archimate>