Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.3.0"
".": "0.3.1"
}
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## v0.3.1 - 2026-09

### Description

A maintenance release. It carries the toolchain forward, closes one interface bug that
crashed on device, and puts the workflow files under static analysis.

### Fixes

- A button with an interpolated label, such as the cameras "Select all (2)" control, no
longer crashes: its bare text now renders inside a `Text` node

### Security

- Monaco's transitive DOMPurify moved to a patched release
- CodeQL analyses the GitHub Actions workflows alongside the Python and TypeScript code
- Dropped two dependency advisory waivers that no longer match anything in the tree

### Maintenance

- Jest 30, pnpm 12, AsyncStorage 3, and React Native Testing Library 14
- Refreshed container images, the Cloudflare Terraform provider, and the lockfiles
- Held Babel and TypeScript at the majors their toolchains still support
- Declared the licence in package metadata and added CODEOWNERS

## v0.3.0 - 2026-09

### Description
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ authors:
affiliation: "Department of Industrial Ecology, Institute of Environmental Sciences (CML), Leiden University"
title: "Relab - Data Collection Platform"
abstract: "Data collection platform for disassembled power tool images and metadata supporting computer vision tasks for life cycle assessments."
version: 0.3.0 # x-release-please-version
version: 0.3.1 # x-release-please-version
identifiers:
# The concept DOI always resolves to the newest release, which is what a "cite this
# software" identifier should do. Version DOIs live on the Zenodo concept record.
Expand Down
2 changes: 1 addition & 1 deletion app/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"expo": {
"name": "relab-app",
"slug": "relab-app",
"version": "0.3.0",
"version": "0.3.1",
"orientation": "portrait",
"icon": "./src/assets/images/favicon.png",
"scheme": "relab-app",
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "relab-app",
"main": "expo-router/entry",
"version": "0.3.0",
"version": "0.3.1",
"license": "AGPL-3.0-or-later",
"scripts": {
"dev": "[ \"$(uname)\" = Linux ] && export ELECTRON_DISABLE_SANDBOX=1; BROWSER=none expo start --web --port 8011",
Expand Down
2 changes: 1 addition & 1 deletion backend/app/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""For versioning the FastAPI app."""

version = "0.3.0" # x-release-please-version
version = "0.3.1" # x-release-please-version
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "relab-docs",
"type": "module",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"license": "AGPL-3.0-or-later",
"contributors": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "relab",
"private": true,
"version": "0.3.0",
"version": "0.3.1",
"license": "AGPL-3.0-or-later",
"packageManager": "pnpm@12.1.0+sha512.d9b8276d97f6ec86e49815877f91ee9f63cee61f2063b304e43b6dab8fa07ce8a9afd46d2facd39f921e6a9d06b3c75a81349c7b888c2d22886bae0229901037",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion www/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "relab-www",
"type": "module",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"license": "AGPL-3.0-or-later",
"contributors": [
Expand Down
Loading