From da98807dffdb3acffb22255dba3704f80595eea8 Mon Sep 17 00:00:00 2001 From: Peter Sanchez Date: Fri, 7 Mar 2025 18:06:45 -0600 Subject: [PATCH] Release version 0.2.0 Signed-off-by: Peter Sanchez --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ Makefile | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8e2f04..1845fd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,33 @@ All notable changes to links will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.2.0](https://git.code.netlandish.com/~netlandish/links/refs/0.2.0) - 2025-03-07 + +### Added + +- additional import sanity checking to avoid db layer errors (ie, max length + exceeded). +- GraphQL calls for audit logs +- 40ish missing Spanish translations. The app should now once again be fully + translated to Spanish. + +### Changed + +- Pinboard import now uses streaming json decoding to avoid loading large files + completely into memory. +- No longer allowing duplicate bookmarks to be saved under the same + organization. +- GraphQL api version: minor version bump +- Failed metadata collection on base url's will be attempted a max of 3 times + in 1 day intervals. +- require login to view recent, popular, or public bookmark pages while + filtering by more than 2 tags. + +### Closed Tickets + +- [#96: Import: pq: invalid byte sequence for encoding "UTF8": 0xe2 0x80 0x2e](https://todo.code.netlandish.com/~netlandish/links/96) +- [#97: Import: large json files are failing during processing](https://todo.code.netlandish.com/~netlandish/links/97) + ## [0.1.4](https://git.code.netlandish.com/~netlandish/links/refs/0.1.4) - 2025-02-15 ### Closed Tickets diff --git a/Makefile b/Makefile index ffdc742..825f325 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION?=$(shell git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 0.1.4) +VERSION?=$(shell git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 0.2.0) GO?=go GOFLAGS?= LDFLAGS+=-X main.Version=$(VERSION) -- 2.45.3