Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: go-gitea/gitea
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.23.4
Choose a base ref
...
head repository: go-gitea/gitea
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.23.5
Choose a head ref
  • 20 commits
  • 28 files changed
  • 11 contributors

Commits on Feb 20, 2025

  1. git graph: don't show detached commits (#33645) (#33650)

    Backport #33645 by ericLemanissier
    
    Co-authored-by: ericLemanissier <ericLemanissier@users.noreply.github.com>
    GiteaBot and ericLemanissier authored Feb 20, 2025
    Copy the full SHA
    8844e62 View commit details
  2. Fix mCaptcha bug (#33659) (#33661)

    Backport #33659 by wxiaoguang
    
    Fix #33658
    
    Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
    GiteaBot and wxiaoguang authored Feb 20, 2025
    Copy the full SHA
    9da6d4e View commit details

Commits on Feb 21, 2025

  1. Fix omitempty bug (#33663) (#33670)

    Backport #33663 by @lunny
    
    Fix #33660
    
    Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
    GiteaBot and lunny authored Feb 21, 2025
    Copy the full SHA
    37e99d9 View commit details
  2. Deleting repository should unlink all related packages (#33653) (#33673)

    Backport #33653 by @lunny
    
    Fix #33634
    
    Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
    Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
    3 people authored Feb 21, 2025
    Copy the full SHA
    aeeccc9 View commit details
  3. Improve Open-with URL encoding (#33666) (#33680)

    Backport #33666 by wxiaoguang
    
    Fix #33665
    
    Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
    GiteaBot and wxiaoguang authored Feb 21, 2025
    Copy the full SHA
    ae595aa View commit details
  4. Fix for Maven Package Naming Convention Handling (#33678) (#33679)

    Backport #33678 by dianaStr7
    
    Co-authored-by: Diana <80010947+dianaStr7@users.noreply.github.com>
    Co-authored-by: diana.strebkova@t-systems.com <diana.strebkova@t-systems.com>
    Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
    4 people authored Feb 21, 2025
    Copy the full SHA
    b5007c6 View commit details

Commits on Feb 23, 2025

  1. Try to fix ACME path when renew (#33668) (#33693)

    Backport #33668 by wxiaoguang
    
    Try to fix #32191
    
    Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
    GiteaBot and wxiaoguang authored Feb 23, 2025
    Copy the full SHA
    039924a View commit details

Commits on Feb 24, 2025

  1. Fix OCI image.version annotation for releases to use full semver (#33698

    ) (#33701)
    GiteaBot authored Feb 24, 2025
    Copy the full SHA
    1c7339e View commit details

Commits on Feb 25, 2025

  1. Optimize user dashboard loading (#33686) (#33708)

    Backport #33686 by @lunny
    
    Fix #33582
    Fix #31698
    
    When a user login, the dashboard should load all feed belongs to him
    with no any conditions. The complicated conditions should be applied
    only for another user view this user's profile.
    
    Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
    GiteaBot and lunny authored Feb 25, 2025
    Copy the full SHA
    81126da View commit details
  2. Use MatchPhraseQuery for bleve code search (#33628)

    Fix regression from #32210 which unintentionally changed the search mode
    for bleve from MaatchPhraseQuery to MatchQuery.
    
    On the main branch, meanwhile with #33590 a "literal code search" mode
    (by using quotes) was implemented as workaround for this unexpected code
    search behavior. Maybe that feature needs some redesign as it turns out
    to have been caused by a regression.
    
    But this PR at least already fixes the regression for 1.23.x
    jpraet authored Feb 25, 2025
    Copy the full SHA
    e3021fa View commit details

Commits on Feb 26, 2025

  1. Fix inconsistent closed issue list icon (#33722) (#33728)

    GiteaBot and lunny authored Feb 26, 2025
    Copy the full SHA
    27a60fd View commit details

Commits on Feb 28, 2025

  1. Remove superflous tw-content-center (#33741) (#33743)

    Backport #33741 by @silverwind
    
    Co-authored-by: silverwind <me@silverwind.io>
    GiteaBot and silverwind authored Feb 28, 2025
    Copy the full SHA
    7ded86f View commit details
  2. bump x/oauth2 & x/crypto (#33704) (#33727)

    Backport dep bump
    
    ---------
    
    Co-authored-by: silverwind <me@silverwind.io>
    techknowlogick and silverwind authored Feb 28, 2025
    Copy the full SHA
    d634e75 View commit details

Commits on Mar 1, 2025

  1. Disable go license generation as part of make tidy (#33747) (#33751)

    Backport #33747 by @silverwind
    
    It seems something broken `google/go-licenses` (maybe related to go
    1.24), and my findings are in
    google/go-licenses#128 (comment).
    I think it's best we disable this generation for now until a better
    solution is found.
    
    Also, enable showing stderr output so we can actually debug this thing.
    For reference, these are the errors that currently apparently break the
    tool:
    
    ```
    E0228 05:15:27.005759   13158 library.go:117] Package text/tabwriter does not have module info. Non go modules projects are no longer supported. For feedback, refer to google/go-licenses#128.
    E0228 05:15:27.005776   13158 library.go:117] Package net/http/fcgi does not have module info. Non go modules projects are no longer supported. For feedback, refer to google/go-licenses#128.
    F0228 05:15:27.028122   13158 main.go:77] some errors occurred when loading direct and transitive dependency packages
    ```
    
    Co-authored-by: silverwind <me@silverwind.io>
    Co-authored-by: techknowlogick <techknowlogick@gitea.com>
    3 people authored Mar 1, 2025
    Copy the full SHA
    8939c38 View commit details
  2. upgrade go-crypto from 1.1.4 to 1.1.6 (#33745) (#33754)

    lunny authored Mar 1, 2025
    Copy the full SHA
    7307422 View commit details

Commits on Mar 4, 2025

  1. Fix navbar dropdown item align (#33782)

    1.23 only
    
    Fix #33781
    wxiaoguang authored Mar 4, 2025
    Copy the full SHA
    2cc7600 View commit details
  2. Update minimum version of mssql tested

    techknowlogick authored Mar 4, 2025
    Copy the full SHA
    b8a7c20 View commit details
  3. Adjust appearence of commit status webhook (#33778) (#33789)

    Backport #33778 by @denyskon
    
    Some visual improvement for the commit status webhook message introduced
    by #33320
    
    - use short commit SHA as already done in e. g. commit webhook
    - fix spacing, link text
    - do not set user link for internal gitea-actions user
    
    Before: 
    
    ![grafik](https://github.com/user-attachments/assets/9c460846-c350-444c-89b5-8a0d5e26cb86)
    
    After:
    
    ![grafik](https://github.com/user-attachments/assets/05519cd8-6d8f-432b-bd9d-082de558a55a)
    
    Co-authored-by: Denys Konovalov <kontakt@denyskon.de>
    GiteaBot and denyskon authored Mar 4, 2025
    Copy the full SHA
    69d35ee View commit details
  4. Add changelog for 1.23.5 (#33780)

    Wait tomorrow's Golang version.
    Maybe wait backport of #33764 and #33744, #33789
    
    ---------
    
    Co-authored-by: metiftikci <metiftikci@hotmail.com>
    lunny and metiftikci authored Mar 4, 2025
    Copy the full SHA
    9c3511f View commit details
  5. Upgrade golang net from 0.35.0 -> 0.36.0 #33795 (#33796)

    Backport #33795
    lunny authored Mar 4, 2025
    Copy the full SHA
    92f2d90 View commit details
Loading