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
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ All notable changes to the "roboview" extension will be documented in this file.
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [Unreleased]

- Initial release

## [0.0.3] - 2026-03-02
Expand All @@ -23,4 +22,10 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
- Updated project dependencies to latest versions
- Refactored keyword similarity without numpy and scikit-learn (backend size is now just around 20 MB instead of 300MB before)
- Added support for additional libraries including all BuiltIn libraries (Collections, DateTime etc.), Appium and Requests
- Migrated to Robocop v8.2.2 (code changes were necessary)
- Migrated to Robocop v8.2.2 (code changes were necessary)

## [0.0.4] - 2026-03-05
### Added
- Fixed Python Versioning >3.14
- Checks whether roboview is installed and if the correct version is installed
- Raises a vscode message if the package needs to be installed/updated, the startup process is abandoned then
13 changes: 10 additions & 3 deletions packages/roboview/poetry.lock

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

4 changes: 2 additions & 2 deletions packages/roboview/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "robotframework-roboview"
version = "0.0.3"
version = "0.0.4"
description = "RoboView is a Visual Studio Code extension designed to help you manage keywords within your Robot Framework projects and improve overall test quality through built-in Robocop integration. Its primary goal is to provide a comprehensive overview of all keywords and their relationships, making it easier to understand and maintain your test automation codebase."
license = "Apache 2.0"
authors = ["viadee Unternehmensberatung AG"]
Expand All @@ -11,7 +11,7 @@ packages = [
]

[tool.poetry.dependencies]
python = ">=3.10,<=3.14"
python = ">=3.10,<3.15"
robotframework = "^7.4.1"
fastapi = "^0.135.1"
uvicorn = "^0.41.0"
Expand Down
2,402 changes: 0 additions & 2,402 deletions poetry.lock

This file was deleted.

25 changes: 0 additions & 25 deletions pyproject.toml

This file was deleted.

2 changes: 1 addition & 1 deletion vscode-integration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"displayName": "RoboView",
"description": "RoboView is a tool designed to support Robot Framework users in managing keywords and refactoring their codebase.",
"icon": "resources/icon.png",
"version": "0.0.3",
"version": "0.0.4",
"engines": {
"vscode": "^1.93.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { spawnSync } from "child_process";

export class PythonEnvironmentManager {
private static readonly PACKAGE_NAME = "robotframework-roboview";
private static readonly REFERENCE_VERSION = "0.0.3";
private static readonly REFERENCE_VERSION = "0.0.4";

public static async checkPythonEnvironment(): Promise<string> {
const pythonExt = vscode.extensions.getExtension("ms-python.python");
Expand Down
Loading