diff --git a/CHANGELOG.md b/CHANGELOG.md index 929e51ea60..b41806bfd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,37 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang +## [Infrahub - v1.1.6](https://github.com/opsmill/infrahub/tree/infrahub-v1.1.6) - 2025-01-30 + +### Artifact improvements + +As part of our ongoing efforts to enhance the integrations and capabilities of Infrahub, the Artifact detail page has been redesigned. + +This redesign focused on allowing a richer and more powerful Artifact experience. +Enhancements include support for additional content-types (as listed below), colorized syntax highlighting, and easier access to download or copy artifacts. + +**Supported Artifact Content Types**: + +- Markdown +- YAML +- JSON +- Text +- SVG + +### Added + +- Allow Default Address Type quick selection in the Resource Manager form ([#3489](https://github.com/opsmill/infrahub/issues/3489)) +- Added code viewer for new content-types, preview of raw markdown content, one-click file download or cop, and redesign of artifact details view ([#5452](https://github.com/opsmill/infrahub/issues/5452)) + +### Fixed + +- Automatically mark hierarchical nodes `parent` relationship as optional if the parent is of the same kind or mandatory if the parent is of a different kind ([#3682](https://github.com/opsmill/infrahub/issues/3682)) +- Revert back to `state=open` from `state=merging` if the merge of a proposed change fails. + This fixes the possibility of leaving a proposed change in an unexpected state. ([#5563](https://github.com/opsmill/infrahub/issues/5563)) +- Fixes an issue with retrieving object from S3 storage backend. ([#5573](https://github.com/opsmill/infrahub/issues/5573)) +- Loosened requirement for group discovery using OIDC and id_token. This will probably be reverted or presented as a configuration option in the future. ([#5623](https://github.com/opsmill/infrahub/issues/5623)) +- Significant improvements to diff calculation performance. + ## [Infrahub - v1.1.5](https://github.com/opsmill/infrahub/tree/infrahub-v1.1.5) - 2025-01-24 ### Added diff --git a/changelog/+diff-perf.fixed.md b/changelog/+diff-perf.fixed.md deleted file mode 100644 index ea9a3b5b0c..0000000000 --- a/changelog/+diff-perf.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Significant improvements to diff calculation performance \ No newline at end of file diff --git a/changelog/3489.added.md b/changelog/3489.added.md deleted file mode 100644 index 62a1aeb3c5..0000000000 --- a/changelog/3489.added.md +++ /dev/null @@ -1 +0,0 @@ -Allow Default Address Type quick selection in the Resource Manager form \ No newline at end of file diff --git a/changelog/3682.fixed.md b/changelog/3682.fixed.md deleted file mode 100644 index e4e57d996c..0000000000 --- a/changelog/3682.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Automatically mark hierarchical nodes `parent` relationship as optional if the parent is of the same kind or mandatory if the parent is of a different kind \ No newline at end of file diff --git a/changelog/5452.added.md b/changelog/5452.added.md deleted file mode 100644 index 4a4fac0e2d..0000000000 --- a/changelog/5452.added.md +++ /dev/null @@ -1 +0,0 @@ -Add code viewer for new content-types, preview the raw markdown content, allow file download + copy and redesign artifact details view \ No newline at end of file diff --git a/changelog/5563.fixed.md b/changelog/5563.fixed.md deleted file mode 100644 index 19185ddf79..0000000000 --- a/changelog/5563.fixed.md +++ /dev/null @@ -1,3 +0,0 @@ -Revert back to state=open from state=merging if the merge of a proposed change fails - -Fixes #5563 diff --git a/changelog/5573.fixed.md b/changelog/5573.fixed.md deleted file mode 100644 index be619bc941..0000000000 --- a/changelog/5573.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Fixes an issue with retrieving object from S3 storage backend diff --git a/changelog/5623.fixed.md b/changelog/5623.fixed.md deleted file mode 100644 index f391c74442..0000000000 --- a/changelog/5623.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Loosened requirement for group discovery using OIDC and id_token. This will probably be reverted or presented as a configuration option in the future. diff --git a/docs/docs/media/release_notes/infrahub_1_1_6/json_artifact.png b/docs/docs/media/release_notes/infrahub_1_1_6/json_artifact.png new file mode 100644 index 0000000000..5ba89eba30 Binary files /dev/null and b/docs/docs/media/release_notes/infrahub_1_1_6/json_artifact.png differ diff --git a/docs/docs/media/release_notes/infrahub_1_1_6/markdown_artifact_preview.png b/docs/docs/media/release_notes/infrahub_1_1_6/markdown_artifact_preview.png new file mode 100644 index 0000000000..17e8f67519 Binary files /dev/null and b/docs/docs/media/release_notes/infrahub_1_1_6/markdown_artifact_preview.png differ diff --git a/docs/docs/media/release_notes/infrahub_1_1_6/markdown_artifact_raw.png b/docs/docs/media/release_notes/infrahub_1_1_6/markdown_artifact_raw.png new file mode 100644 index 0000000000..4c0641f59d Binary files /dev/null and b/docs/docs/media/release_notes/infrahub_1_1_6/markdown_artifact_raw.png differ diff --git a/docs/docs/media/release_notes/infrahub_1_1_6/svg_artifact.png b/docs/docs/media/release_notes/infrahub_1_1_6/svg_artifact.png new file mode 100644 index 0000000000..fa4b240e0c Binary files /dev/null and b/docs/docs/media/release_notes/infrahub_1_1_6/svg_artifact.png differ diff --git a/docs/docs/media/release_notes/infrahub_1_1_6/text_artifact.png b/docs/docs/media/release_notes/infrahub_1_1_6/text_artifact.png new file mode 100644 index 0000000000..24aaeee801 Binary files /dev/null and b/docs/docs/media/release_notes/infrahub_1_1_6/text_artifact.png differ diff --git a/docs/docs/media/release_notes/infrahub_1_1_6/yaml_artifact.png b/docs/docs/media/release_notes/infrahub_1_1_6/yaml_artifact.png new file mode 100644 index 0000000000..4c93f93af1 Binary files /dev/null and b/docs/docs/media/release_notes/infrahub_1_1_6/yaml_artifact.png differ diff --git a/docs/docs/release-notes/infrahub/release-1_1_6.mdx b/docs/docs/release-notes/infrahub/release-1_1_6.mdx new file mode 100644 index 0000000000..09a132aa60 --- /dev/null +++ b/docs/docs/release-notes/infrahub/release-1_1_6.mdx @@ -0,0 +1,136 @@ +--- +title: Release 1.1.6 +--- +
Release Number | +1.1.6 | +
---|---|
Release Date | +January 30th, 2025 | +
Release Codename | +Lyon, Patch #6 | +
Tag | +[infrahub-v1.1.6](https://github.com/opsmill/infrahub/releases/tag/infrahub-v1.1.6) | +