Skip to content
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

Release v0.12.7 #505

Merged
merged 1 commit into from
Dec 2, 2023
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
27 changes: 16 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,33 @@
# Changelog

## v0.12.7 (2023-11-02)

- chore: Update dependencies
- chore: Slightly refactor the frontend code

## v0.12.6 (2023-09-19)

- fix: check invalid timestamp values
- fix: Check invalid timestamp values
- chore: Update dependencies
- chore: slightly refactor the frontend code
- chore: Slightly refactor the frontend code

## v0.12.5 (2023-07-51)

- fix: loading config
- refactor: migrate clearance app to [leptos](https://leptos.dev)
- fix: Loading config
- refactor: Migrate clearance app to [leptos](https://leptos.dev)
- chore: Update dependencies
- new: Add a new basic frontend based on leptos

## v0.12.4 (2023-03-24)

- fix: webfonts in clearance app
- fix: Webfonts in clearance app
- chore: Update dependencies

## v0.12.3 (2023-01-20)

- new: config option for reminder BCC addresses
- fix: recurring reminders for oldest places first
- fix: review URLs in reminder emails
- new: Config option for reminder BCC addresses
- fix: Recurring reminders for oldest places first
- fix: Review URLs in reminder emails
- fix: openapi.yaml

## v0.12.2 (2023-01-17)
Expand Down Expand Up @@ -262,7 +267,7 @@

- fix(db): Increased maximum number of search results via `limit` request parameter
from 250 to 500. The default number of results if no limit is requested is still 100.
- new(db): Add image_url and image_link_url to CSV export
- new(db): Add `image_url` and `image_link_url` to CSV export
- chore(db): Disabled CSV export temporarily

## v0.6.1 (2019-08-22)
Expand Down Expand Up @@ -309,7 +314,7 @@
## v0.5.8 (2019-08-14)

- new(web): New endpoint /entries/recently-changed for retrieving recent changes
- chore(db): Optimize filtering of events by start_min/start_max
- chore(db): Optimize filtering of events by `start_min`/`start_max`

## v0.5.7 (2019-07-24)

Expand All @@ -331,7 +336,7 @@

- new(web): Added admin interface for archiving comments and ratings
- new(web): Added admin interface for assigning user roles
- chore(web): update rocket: v0.4.0 -> v0.4.1
- chore(web): Update rocket: v0.4.0 -> v0.4.1

## v0.5.3 (2019-04-02)

Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version.workspace = true
edition.workspace = true

[workspace.package]
version = "0.12.6"
version = "0.12.7"
repository = "https://github.com/kartevonmorgen/openfairdb"
homepage = "https://github.com/kartevonmorgen/openfairdb"
keywords = ["geo", "fair", "sustainability"]
Expand Down
6 changes: 3 additions & 3 deletions doc/src/development/quick_start.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Quick start

Download the [latest build](https://github.com/kartevonmorgen/openfairdb/releases/download/v0.12.6/openfairdb_v0.12.6.x86_64-unknown-linux-musl.tar.xz),
Download the [latest build](https://github.com/kartevonmorgen/openfairdb/releases/download/v0.12.7/openfairdb_v0.12.7.x86_64-unknown-linux-musl.tar.xz),
unpack and start it:

```sh
wget https://github.com/kartevonmorgen/openfairdb/releases/download/v0.12.6/openfairdb_v0.12.6.x86_64-unknown-linux-musl.tar.xz
tar xJf openfairdb_v0.12.6.x86_64-unknown-linux-musl.tar.xz
wget https://github.com/kartevonmorgen/openfairdb/releases/download/v0.12.7/openfairdb_v0.12.7.x86_64-unknown-linux-musl.tar.xz
tar xJf openfairdb_v0.12.7.x86_64-unknown-linux-musl.tar.xz
RUST_LOG=info ROCKET_SECRET_KEY="hPRYyVRiMyxpw5sBB1XeCMN1kFsDCqKvBi2QJxBVHQk=" ./openfairdb
```

Expand Down
4 changes: 2 additions & 2 deletions ofdb-app-clearance/Cargo.lock

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

4 changes: 2 additions & 2 deletions ofdb-frontend/Cargo.lock

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

2 changes: 1 addition & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.3
info:
title: OpenFairDB API
version: 0.12.6
version: 0.12.7
contact:
name: slowtec GmbH
url: "https://slowtec.de"
Expand Down
Loading