# Breaking Changes

### Version 1.2.0

#### Evaluation Framework

* Renamed `Execution` class to `Evaluation`
* Updated metric computation methods

```python
# Old code (1.1.2)
from agentneo import Execution
exe = Execution(session=neo_session)

# New code (1.2.0)
from agentneo import Evaluation
eval = Evaluation(session=neo_session)
```

#### Configuration Changes

* Modified dashboard configuration structure
* Updated storage backend access method. Now the the Database is access through API Endpoints. This change is currently implemented in the Analytics and Trace History Pages. Gradually the access of DB from frontend TypeScript(.ts) would be completely phased out.

### Version 1.1.0

#### API Changes

* Restructured Tracing
* Modified event handling system
* Remove node.js, npm dependency for dashboard

```python
# Old code (1.0.0)
tracer = Tracer()
tracer.init(session)

# New code (1.1.0)
tracer = Tracer(session=session)
```

#### Storage Updates

* New SQLite schema
* Changed JSON log format

### Migration Guidelines

See Migration Guide for detailed upgrade instructions.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://agentneo.raga.ai/release-information/breaking-changes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
