diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7bfe09e..6d0d215 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{"src/mappings_editor":"0.1.0"} +{"src/mappings_editor":"0.1.1"} diff --git a/src/mappings_editor/CHANGELOG.md b/src/mappings_editor/CHANGELOG.md index 3b9673a..ea3a14d 100644 --- a/src/mappings_editor/CHANGELOG.md +++ b/src/mappings_editor/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## [0.1.1](https://github.com/center-for-threat-informed-defense/mappings-editor/compare/mappings_editor-v0.1.0...mappings_editor-v0.1.1) (2024-02-09) + + +### Features + +* add "clear search" button ([8f41917](https://github.com/center-for-threat-informed-defense/mappings-editor/commit/8f41917597dae67c714c63f67cf014e99d168f4e)) +* add "collapse/uncollapse all mapping objects" menu items ([8f41917](https://github.com/center-for-threat-informed-defense/mappings-editor/commit/8f41917597dae67c714c63f67cf014e99d168f4e)) +* add auto-migrate capabilities to framework objects ([8f41917](https://github.com/center-for-threat-informed-defense/mappings-editor/commit/8f41917597dae67c714c63f67cf014e99d168f4e)) +* add basic runtime error notifications ([8f41917](https://github.com/center-for-threat-informed-defense/mappings-editor/commit/8f41917597dae67c714c63f67cf014e99d168f4e)) + + +### Bug Fixes + +* correct "Change Log" link ([8f41917](https://github.com/center-for-threat-informed-defense/mappings-editor/commit/8f41917597dae67c714c63f67cf014e99d168f4e)) +* deserialize empty strings to `null` on select mapping object fields ([8f41917](https://github.com/center-for-threat-informed-defense/mappings-editor/commit/8f41917597dae67c714c63f67cf014e99d168f4e)) +* deserialize mapping object `references` to a list of links (not characters) ([8f41917](https://github.com/center-for-threat-informed-defense/mappings-editor/commit/8f41917597dae67c714c63f67cf014e99d168f4e)) +* eliminate scroll glitch that occurs when moving uncollapsed mapping objects ([8f41917](https://github.com/center-for-threat-informed-defense/mappings-editor/commit/8f41917597dae67c714c63f67cf014e99d168f4e)) +* eliminate scroll glitch that occurs when undeleting end-of-file mapping objects ([8f41917](https://github.com/center-for-threat-informed-defense/mappings-editor/commit/8f41917597dae67c714c63f67cf014e99d168f4e)) +* remove "Layout" menu ([8f41917](https://github.com/center-for-threat-informed-defense/mappings-editor/commit/8f41917597dae67c714c63f67cf014e99d168f4e)) +* remove deprecated mapping statuses ([8f41917](https://github.com/center-for-threat-informed-defense/mappings-editor/commit/8f41917597dae67c714c63f67cf014e99d168f4e)) + + +### Performance Improvements + +* improve file indexing speed ([8f41917](https://github.com/center-for-threat-informed-defense/mappings-editor/commit/8f41917597dae67c714c63f67cf014e99d168f4e)) +* improve import file speed ([8f41917](https://github.com/center-for-threat-informed-defense/mappings-editor/commit/8f41917597dae67c714c63f67cf014e99d168f4e)) +* improve mass cut, copy, and paste speed ([8f41917](https://github.com/center-for-threat-informed-defense/mappings-editor/commit/8f41917597dae67c714c63f67cf014e99d168f4e)) +* improve mass delete speed ([8f41917](https://github.com/center-for-threat-informed-defense/mappings-editor/commit/8f41917597dae67c714c63f67cf014e99d168f4e)) + ## [0.1.0](https://github.com/center-for-threat-informed-defense/mappings-editor/compare/mappings_editor-v0.0.1...mappings_editor-v0.1.0) (2024-02-07) diff --git a/src/mappings_editor/package-lock.json b/src/mappings_editor/package-lock.json index f08572a..85d35f3 100644 --- a/src/mappings_editor/package-lock.json +++ b/src/mappings_editor/package-lock.json @@ -1,12 +1,12 @@ { "name": "mappings_editor", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mappings_editor", - "version": "0.1.0", + "version": "0.1.1", "dependencies": { "flexsearch": "^0.7.43", "pinia": "^2.1.7", diff --git a/src/mappings_editor/package.json b/src/mappings_editor/package.json index fdfde94..b7ee6ce 100644 --- a/src/mappings_editor/package.json +++ b/src/mappings_editor/package.json @@ -1,6 +1,6 @@ { "name": "mappings_editor", - "version": "0.1.0", + "version": "0.1.1", "private": true, "scripts": { "dev": "vite",