Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0] - 2025-10-17

### Added

- Group alias (#881)
- Option to set landscape description (#879)
- Option to select multiple categories and subcategories on embed (#876, #880)
- Display message of the day in header (#873)
- Flag to hide organization section in projects (#871)
- First commit date to projects summary table (#852)

### Changed

- Settings logos can now use local paths (#846)
- Extend API item type with some more fields (#837)
- Upgrade CLI tool dependencies
- Upgrade web application and embed dependencies

### Fixed

- Issue with category filter (#875)
- Issue with multiple tags (#874)
- Issue normalizing names with non-ascii chars (#838)
- Issue with hardware acceleration on Windows (#823)
- Some minor UI issues (#825)

## [1.0.0] - 2025-05-16

### Added
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
]

[workspace.package]
version = "1.0.0"
version = "1.1.0"
license = "Apache-2.0"
edition = "2024"
rust-version = "1.90.0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ brew install cncf/landscape2/landscape2
#### Install via shell script

```text
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/cncf/landscape2/releases/download/v1.0.0/landscape2-installer.sh | sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/cncf/landscape2/releases/download/v1.1.0/landscape2-installer.sh | sh
```

#### Install via powershell script

```text
irm https://github.com/cncf/landscape2/releases/download/v1.0.0/landscape2-installer.ps1 | iex
irm https://github.com/cncf/landscape2/releases/download/v1.1.0/landscape2-installer.ps1 | iex
```

### Container image
Expand Down
2 changes: 1 addition & 1 deletion ui/embed-item/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "embed-item",
"private": true,
"version": "1.0.0",
"version": "1.1.0",
"type": "module",
"scripts": {
"build": "tsc && vite build",
Expand Down
2 changes: 1 addition & 1 deletion ui/embed/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "embed",
"private": true,
"version": "1.0.0",
"version": "1.1.0",
"type": "module",
"scripts": {
"build": "tsc && vite build",
Expand Down
2 changes: 1 addition & 1 deletion ui/webapp/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "landscape",
"private": true,
"version": "1.0.0",
"version": "1.1.0",
"type": "module",
"scripts": {
"build": "tsc && vite build",
Expand Down