# Changelog

Smartstore maintains human‑readable release notes to track new features, improvements, and bug fixes. The full history lives in the repository root as [`changelog.md`](https://github.com/smartstore/Smartstore/blob/main/changelog.md) and follows a simple structure:

```markdown
## Smartstore 6.2.1

### New Features
- Add a payment provider for easyCredit purchase on account.

### Improvements
- FileManager: Enabled language‑dependent tabs.

### Bugfixes
- Attribute combination image could not be selected on product edit page.
```

## Versioning

Smartstore uses semantic versioning (`MAJOR.MINOR.PATCH`). A new major version introduces breaking changes, a minor version adds functionality, and patch versions contain only fixes.

## Updating the changelog

When contributing changes that affect users:

1. Open the root `changelog.md`.
2. Add entries under the upcoming release heading, grouped by **New Features**, **Improvements**, or **Bugfixes**.
3. Keep descriptions short and reference issue numbers if available.

Module authors can include a `changelog.md` in their module directory using the same format so that release notes remain discoverable.


---

# 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://dev.smartstore.com/appendix/changelog.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.
