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/1.4.2 #1200

Merged
merged 48 commits into from
Dec 9, 2024
Merged
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
5af6935
perf: optimize tag has new tag check
sosyz Oct 26, 2024
2e6eafb
fix: add status filter when update tag rel
sosyz Oct 27, 2024
7c677f3
fix: wrong status when enable tag rel
sosyz Oct 27, 2024
84e08c5
fix: resolve 404 error on Tags static page
sy-records Oct 28, 2024
bf4de72
feat: update template files
shuashuai Oct 29, 2024
2bff049
fix: display timezone on Dashboard when set to UTC
sy-records Oct 28, 2024
795f56f
Merge branch 'main' into dev
shuashuai Nov 6, 2024
8283c01
fix: update useRenderHtmlPlugin to target specific HTML element
robinv8 Nov 13, 2024
5a2b2a5
fix: Tag summary display is not as expected on tag detail page
sy-records Nov 11, 2024
d40820f
refactor(gomock): update gomock dependence and docs
LinkinStars Nov 14, 2024
c8336de
feat(file): update the max image size
LinkinStars Nov 14, 2024
8005ec8
fix(review): reject the review when delete question
LinkinStars Nov 14, 2024
d23ac6e
fix: Markdown parsing without incrementing ordered list numbers
sy-records Nov 14, 2024
dfa22f9
feat: actions add toast tips
shuashuai Nov 14, 2024
f165d3d
perf: add note to email body
sosyz Nov 14, 2024
6049b5e
feat: Add key metrics to the dashboard
sy-records Nov 14, 2024
c6b45f7
Merge branch 'dev' into feat/1.4.2/tag
LinkinStars Nov 15, 2024
c39fd89
fix(search): fix the wrong offset when searching
LinkinStars Nov 18, 2024
5cbd190
feat(question): add linked count feature to question
LinkinStars Nov 19, 2024
5866197
feat(question): sort questions by update time for frequent tab
LinkinStars Nov 19, 2024
932a336
feat(upload): add support for file attachments and enhance image upload
LinkinStars Nov 21, 2024
ab36105
feat: The editor has added support for uploading attachments, and the…
shuashuai Nov 22, 2024
3a795b2
Merge branch 'feat/1.4.2/ui' into test
shuashuai Nov 22, 2024
ab30cdf
fix: Add file upload error handling
shuashuai Nov 22, 2024
85f792f
Merge branch 'feat/1.4.2/ui' into test
shuashuai Nov 22, 2024
8616862
feat(upload): add support for file attachments and enhance image upload
LinkinStars Nov 21, 2024
d99bfcc
Merge branch 'feat/1.4.2/file' into test
LinkinStars Nov 22, 2024
0569ea9
fix: length error
shuashuai Nov 22, 2024
7fefc67
Merge branch 'feat/1.4.2/ui' into test
shuashuai Nov 22, 2024
a26aae6
fix: Optimize the mobile style of QueryGroup component
shuashuai Nov 25, 2024
3fd3e6b
fix: Optimize the mobile style of QueryGroup component dropdown btns
shuashuai Nov 25, 2024
86a3da6
fix: The pre tag sets the maximum height #1168
shuashuai Nov 25, 2024
57b0d0e
test: fix TestGetAvatarURL
Bot-wxt1221 Nov 25, 2024
e97796e
feat(storage): add upload file condition to plugin upload
LinkinStars Nov 26, 2024
ce0ec4b
feat(user): add top questions and answers to user homepage
LinkinStars Nov 29, 2024
a63078e
Merge branch 'feat/1.4.2/seo' into test
LinkinStars Nov 29, 2024
e7672c1
fix: administrator add user failure
sy-records Nov 29, 2024
2770ffa
fix: Attachment accept type adjustment, editor plug-in insertion posi…
shuashuai Dec 3, 2024
7147b4a
refactor: remove unused heading options and clean up icon styles
robinv8 Dec 3, 2024
3e92945
refactor(i18n): update formatting instructions to mention post IDs
robinv8 Dec 3, 2024
c532114
feat(file): implement file download functionality
LinkinStars Dec 3, 2024
0d41ee9
refactor(uploader): improve file upload and download functionality su…
LinkinStars Dec 4, 2024
21655f6
feat(upload): add support for attachment uploads and improve image ha…
LinkinStars Dec 4, 2024
2cc7b33
feat: Add delete external user login info by user ID
sy-records Dec 6, 2024
1aed48a
Merge branch 'dev' into test
LinkinStars Dec 9, 2024
b523599
docs(Makefile): upgrade version to 1.4.2
LinkinStars Dec 9, 2024
2e4e028
Merge branch 'main' into release/1.4.2
LinkinStars Dec 9, 2024
5274d3c
fix(migrations): set v1.4.2 migration to required clean cache
LinkinStars Dec 9, 2024
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 internal/migrations/migrations.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ var migrations = []Migration{
NewMigration("v1.3.6", "add hot score to question table", addQuestionHotScore, true),
NewMigration("v1.4.0", "add badge/badge_group/badge_award table", addBadges, true),
NewMigration("v1.4.1", "add question link", addQuestionLink, true),
NewMigration("v1.4.2", "add the number of question links", addQuestionLinkedCount, false),
NewMigration("v1.4.2", "add the number of question links", addQuestionLinkedCount, true),
}

func GetMigrations() []Migration {
Expand Down
Loading