aboutsummaryrefslogtreecommitdiff
path: root/internal/database/migrations.go (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2024-11-12feat: only show the commit URL if it's not empty on `/about`Gravatar Julien Voisin 1-0/+2
2024-11-12feat(mediaProxy): update predefined referer spoofing rules for restricted ↵Gravatar AiraNadih 1-0/+8
media resources
2024-11-11fix: fix grammar in pull-request templateGravatar Cthulhux 1-1/+1
2024-11-11feat(locale): update German translationsGravatar Cthulhux 1-133/+133
2024-11-10docs(changelog): update release notes for version 2.2.3v2.2.32.2.3Gravatar Frédéric Guillot 1-0/+14
2024-11-09build(deps): bump golang.org/x/net from 0.30.0 to 0.31.0Gravatar dependabot[bot] 2-3/+3
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.30.0 to 0.31.0. - [Commits](https://github.com/golang/net/compare/v0.30.0...v0.31.0) --- updated-dependencies: - dependency-name: golang.org/x/net dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-11-08build(deps): bump golang.org/x/crypto from 0.28.0 to 0.29.0Gravatar dependabot[bot] 2-3/+3
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.28.0 to 0.29.0. - [Commits](https://github.com/golang/crypto/compare/v0.28.0...v0.29.0) --- updated-dependencies: - dependency-name: golang.org/x/crypto dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-11-08build(deps): bump golang.org/x/text from 0.19.0 to 0.20.0Gravatar dependabot[bot] 2-3/+3
Bumps [golang.org/x/text](https://github.com/golang/text) from 0.19.0 to 0.20.0. - [Release notes](https://github.com/golang/text/releases) - [Commits](https://github.com/golang/text/compare/v0.19.0...v0.20.0) --- updated-dependencies: - dependency-name: golang.org/x/text dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-11-08build(deps): bump golang.org/x/term from 0.25.0 to 0.26.0Gravatar dependabot[bot] 2-6/+6
Bumps [golang.org/x/term](https://github.com/golang/term) from 0.25.0 to 0.26.0. - [Commits](https://github.com/golang/term/compare/v0.25.0...v0.26.0) --- updated-dependencies: - dependency-name: golang.org/x/term dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-11-07build(deps): bump golang.org/x/oauth2 from 0.23.0 to 0.24.0Gravatar dependabot[bot] 2-3/+3
Bumps [golang.org/x/oauth2](https://github.com/golang/oauth2) from 0.23.0 to 0.24.0. - [Commits](https://github.com/golang/oauth2/compare/v0.23.0...v0.24.0) --- updated-dependencies: - dependency-name: golang.org/x/oauth2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-11-03fix: show only one player when there are several audio/video enclosuresGravatar Frédéric Guillot 2-86/+73
2024-11-02feat(integration-shiori): updated shiori API to new endpoint for login/bookmarkGravatar John Tiesselune 1-12/+26
2024-10-30feat(mediaproxy): pass original filename in Content-Disposition headerGravatar Frédéric Guillot 1-4/+10
When you download/save proxified media, the original filename is lost. That information could be retained by passing a header `Content-Disposition: inline; filename="ORIGNAL_FILENAME.EXT"` when serving the media file. The requested URL would still be obfuscated, but if the client downloads the file it'll use that original filename.
2024-10-30fix: unable to change password due to a typo in SQL parameterGravatar Frédéric Guillot 1-1/+1
2024-10-30style(mediaProxy): format with gofmt to pass linter checksGravatar AiraNadih 1-5/+5
2024-10-30feat(mediaProxy): implement referer spoofing for restricted media resourcesGravatar AiraNadih 2-0/+46
2024-10-29docs(changelog): update release notes for version 2.2.22.2.2Gravatar Frédéric Guillot 1-0/+25
2024-10-28build(deps): bump github.com/tdewolff/minify/v2 from 2.20.37 to 2.21.1Gravatar dependabot[bot] 2-6/+6
Bumps [github.com/tdewolff/minify/v2](https://github.com/tdewolff/minify) from 2.20.37 to 2.21.1. - [Release notes](https://github.com/tdewolff/minify/releases) - [Commits](https://github.com/tdewolff/minify/compare/v2.20.37...v2.21.1) --- updated-dependencies: - dependency-name: github.com/tdewolff/minify/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-10-28feat(locale): update Polish translationsGravatar Matthaiks 1-1/+1
2024-10-26feat(webauthn): show help message regarding username and non-discoverable ↵Gravatar Frédéric Guillot 22-8/+52
credentials The username is required for non-resident keys, but it's not necessary for discoverable credentials like Passkeys.
2024-10-26fix(webauthn): add backup eligibility flag workaround to avoid a 401Gravatar Frédéric Guillot 1-10/+46
Since go-webauthn v0.11.0, the backup eligibility flag is strictly validated, but Miniflux does not store this flag. This workaround to set the flag based on the parsed response, and avoid "BackupEligible flag inconsistency detected during login validation" error. See https://github.com/go-webauthn/webauthn/pull/240
2024-10-22feat(locale): update Polish translationGravatar Matthaiks 1-2/+2
2024-10-21feat: replace `xurls` third-party module with an ad-hoc regexpGravatar Julien Voisin 3-6/+5
2024-10-18feat(rss): calculate hash based on item title/content for feeds without GUID ↵Gravatar Frédéric Guillot 2-2/+38
and link
2024-10-18feat(integration): add cubox integrationGravatar Shaolong Chen 26-4/+173
Signed-off-by: Shaolong Chen <shaolong.chen@outlook.it>
2024-10-17feat(api): rename integrations status endpointGravatar Frédéric Guillot 3-5/+5
2024-10-17feat(api): add endpoint for user integration statusGravatar AiraNadih 5-1/+70
2024-10-17Update issue templatesGravatar Frédéric Guillot 1-1/+1
2024-10-16build(deps): bump github.com/yuin/goldmark from 1.7.7 to 1.7.8Gravatar dependabot[bot] 2-3/+3
Bumps [github.com/yuin/goldmark](https://github.com/yuin/goldmark) from 1.7.7 to 1.7.8. - [Release notes](https://github.com/yuin/goldmark/releases) - [Commits](https://github.com/yuin/goldmark/compare/v1.7.7...v1.7.8) --- updated-dependencies: - dependency-name: github.com/yuin/goldmark dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2024-10-15build(deps): bump github.com/prometheus/client_golangGravatar dependabot[bot] 2-3/+3
Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.20.4 to 1.20.5. - [Release notes](https://github.com/prometheus/client_golang/releases) - [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md) - [Commits](https://github.com/prometheus/client_golang/compare/v1.20.4...v1.20.5) --- updated-dependencies: - dependency-name: github.com/prometheus/client_golang dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2024-10-15build(deps): bump github.com/yuin/goldmark from 1.7.6 to 1.7.7Gravatar dependabot[bot] 2-3/+3
Bumps [github.com/yuin/goldmark](https://github.com/yuin/goldmark) from 1.7.6 to 1.7.7. - [Release notes](https://github.com/yuin/goldmark/releases) - [Commits](https://github.com/yuin/goldmark/compare/v1.7.6...v1.7.7) --- updated-dependencies: - dependency-name: github.com/yuin/goldmark dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2024-10-14build(deps): bump github.com/yuin/goldmark from 1.7.4 to 1.7.6Gravatar dependabot[bot] 2-3/+3
Bumps [github.com/yuin/goldmark](https://github.com/yuin/goldmark) from 1.7.4 to 1.7.6. - [Release notes](https://github.com/yuin/goldmark/releases) - [Commits](https://github.com/yuin/goldmark/compare/v1.7.4...v1.7.6) --- updated-dependencies: - dependency-name: github.com/yuin/goldmark dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2024-10-13feat: set entry URL to rewritten URL if a rewrite rule is definedGravatar July 1-0/+1
2024-10-11build(deps): bump github.com/andybalholm/brotli from 1.1.0 to 1.1.1Gravatar dependabot[bot] 2-3/+5
Bumps [github.com/andybalholm/brotli](https://github.com/andybalholm/brotli) from 1.1.0 to 1.1.1. - [Commits](https://github.com/andybalholm/brotli/compare/v1.1.0...v1.1.1) --- updated-dependencies: - dependency-name: github.com/andybalholm/brotli dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2024-10-06fix: avoid panic in `IsRateLimited()` functionGravatar Frédéric Guillot 1-1/+1
2024-10-06feat(locale): update zh_CN translationsGravatar Qeynos 1-3/+3
2024-10-06feat(locale): update Polish translationsGravatar Matthaiks 1-312/+312
2024-10-05feat: take `Retry-After` header into consideration for rate limited feedsGravatar Frédéric Guillot 5-28/+143
2024-10-05feat: add new settings option to allow external fontsGravatar Frédéric Guillot 32-56/+257
2024-10-05feat(client): add `custom_js` field to Go API clientGravatar Frédéric Guillot 2-0/+31
2024-10-05feat: add custom user JavaScriptGravatar milhnl 26-32/+89
2024-10-04feat: update feed icon during force refreshGravatar Frédéric Guillot 5-98/+138
2024-10-04fix: update Last-Modified if it changes in a 304 responseGravatar Scott Leggett 1-2/+5
When a server returns a 304 response with a strong validator, any other stored fields must be updated if they are also present in the response. This behaviour is described in RFC9111, sections 3.2 and 4.3.4.
2024-10-04chore: update test case commentGravatar Scott Leggett 1-1/+1
The updated comment reflects a better understanding of the RFCs.
2024-10-04build(deps): bump golang.org/x/net from 0.29.0 to 0.30.0Gravatar dependabot[bot] 2-15/+15
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.29.0 to 0.30.0. - [Commits](https://github.com/golang/net/compare/v0.29.0...v0.30.0) --- updated-dependencies: - dependency-name: golang.org/x/net dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-09-27docs(changelog): update release notes for version 2.2.12.2.1Gravatar Frédéric Guillot 1-0/+24
2024-09-22refactor: split processor package into smaller filesGravatar Frédéric Guillot 7-271/+351
2024-09-22feat: use Bilibili API instead of web scraping to get video watch timeGravatar Qeynos 1-19/+45
2024-09-21build: Bump devcontainer version to go 1.23Gravatar Dark Dragon 1-1/+1
2024-09-17build(deps): bump github.com/prometheus/client_golangGravatar dependabot[bot] 2-3/+3
Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.20.3 to 1.20.4. - [Release notes](https://github.com/prometheus/client_golang/releases) - [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md) - [Commits](https://github.com/prometheus/client_golang/compare/v1.20.3...v1.20.4) --- updated-dependencies: - dependency-name: github.com/prometheus/client_golang dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>