Skip to content

Changelog in repo #6593

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 31 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
a2f6f03
added 0.14.0 release section
matmair Feb 27, 2024
944c55c
Add release workflow dummy
matmair Feb 29, 2024
01b7ba3
Merge branch 'master' of https://github.com/inventree/InvenTree into …
matmair Feb 29, 2024
6db2e4a
fix definition
matmair Feb 29, 2024
277c2d5
fix branch assertation
matmair Feb 29, 2024
7db4abd
fix release note action
matmair Feb 29, 2024
e2e4596
update PAT ref
matmair Feb 29, 2024
0436b55
silence curl
matmair Feb 29, 2024
1a6e390
fix output formatting
matmair Feb 29, 2024
f901d1c
multiline delimiter?
matmair Feb 29, 2024
157c941
fix syntax?
matmair Feb 29, 2024
ea0aa3d
Merge branch 'inventree:master' into add-changelog
matmair Mar 27, 2024
4e55838
Merge branch 'master' of https://github.com/inventree/InvenTree into …
matmair Apr 3, 2024
bf0d277
Merge branch 'inventree:master' into add-changelog
matmair Apr 8, 2024
e50c8da
Merge branch 'inventree:master' into add-changelog
matmair Apr 16, 2024
308e659
Merge branch 'inventree:master' into add-changelog
matmair Apr 23, 2024
816b187
Merge branch 'master' into add-changelog
matmair Jun 7, 2024
e814793
Merge branch 'master' of https://github.com/inventree/InvenTree into …
matmair Jun 26, 2024
e366bf7
Merge branch 'master' into add-changelog
matmair Jul 15, 2024
c965637
Merge branch 'master' into add-changelog
matmair Jul 21, 2024
692f5a3
Merge branch 'master' into add-changelog
matmair Jul 22, 2024
ad4840c
Merge branch 'master' into add-changelog
matmair Aug 9, 2024
9a28985
Merge branch 'master' into add-changelog
matmair Jan 29, 2025
3f83a36
Merge branch 'master' into add-changelog
matmair Jun 18, 2025
38b5092
Merge branch 'master' of https://github.com/inventree/InvenTree into …
matmair Jun 19, 2025
9f41b5f
Merge branch 'add-changelog' of https://github.com/matmair/InvenTree …
matmair Jun 19, 2025
4ae4225
add encoding
matmair Jun 19, 2025
e4549b5
fix security issue with old setup
matmair Jun 19, 2025
0bfd7aa
remove
matmair Jun 23, 2025
c5737f3
Delete .github/workflows/do_release.yaml
matmair Jun 23, 2025
003ab98
Update CHANGELOG.md
matmair Jun 23, 2025
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
72 changes: 72 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# Changelog

All notable changes to this project will be documented in this file (starting with 1.0.0).

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added


### Changed


### Removed

## [0.14.0] - 2024-02-29

#### General

This release focused on furthering PUI, improving the API and enhancing the developer tooling.

We added machine integration, a feature that allows the user to connect more than 1 printer of the same manufacturer and model to an instance. It also enables integration of other machines, it is planned to develop this feature further in the next releases. This feature is PUI-only. [#6486](https://github.com/inventree/InvenTree/issues/6486)

A few quality of life improvements were made to the CI, such as the addition of API schema tracking, which ensures API versions are tracked and documented. We switched to ruff for CI linting, uv for installing packages and updated to the 4.2 LTS version of Django.

PUI was developed further, with the addition of support for SSO, user registration, and greatly improved tables among many additions. Especially administrative functions are improved compared to the classical UI (CUI).

PUI is enabled by default in this release and can be accessed by navigating to `/platform/` on the instance. We appreciate feedback.

### Added

- Machine model and integration https://github.com/inventree/InvenTree/pull/4824
- Disabling plugin installation from the web interface/API (https://github.com/inventree/InvenTree/issues/6531)
- Importing part image names https://github.com/inventree/InvenTree/pull/6513
- Support for Engineering units https://github.com/inventree/InvenTree/pull/6539
- Blocking outputs if tests not successful https://github.com/inventree/InvenTree/pull/6057
- API schema tracking https://github.com/inventree/InvenTree/pull/6440
- API documentation on the doc site https://github.com/inventree/InvenTree/pull/6319
- Wider Validation plugin support https://github.com/inventree/InvenTree/pull/6410
- Support for SSO in PUI https://github.com/inventree/InvenTree/pull/6333
- Translation support for tables in PUI https://github.com/inventree/InvenTree/pull/6357
- Slovak support https://github.com/inventree/InvenTree/pull/6351
- User Registration for PUI https://github.com/inventree/InvenTree/pull/6309
- Creating user with password from file https://github.com/inventree/InvenTree/pull/6144
- OpenAPI tracing https://github.com/inventree/InvenTree/pull/6211

### Fixed

- SITE_URL missdetection (https://github.com/inventree/InvenTree/pull/6585)
- Wrong rendering of temperatures (https://github.com/inventree/InvenTree/pull/6584)
- Maintenance mode problems https://github.com/inventree/InvenTree/pull/6422
- News Feed timeouts blocking the server https://github.com/inventree/InvenTree/pull/6250
- Importing data with owners https://github.com/inventree/InvenTree/pull/6271

### Changed

- Switched from Django 3 LTS to 4.2 LTS https://github.com/inventree/InvenTree/pull/6173
- Switched to psycog >3 https://github.com/inventree/InvenTree/pull/6573
- Switched from django-allauth 0.59.0 to https://github.com/inventree/InvenTree/pull/6301
- Switched to uv for install (expermintal) https://github.com/inventree/InvenTree/pull/6499
- Switched to ruff for CI linnting https://github.com/inventree/InvenTree/pull/6167

### Removed

- Django-debug-toolbar https://github.com/inventree/InvenTree/pull/6196


## Old releases

Release notes are available https://docs.inventree.org/en/stable/releases/release_notes/
Loading