summaryrefslogtreecommitdiffstats
path: root/RELEASE-NOTES.md (follow)
Commit message (Collapse)AuthorAgeFilesLines
* docs: add links to the v7.0.10 & v9.0.1 release notesEarl Warren2024-10-281-0/+8
|
* docs: add link to the v9.0.0 release notesEarl Warren2024-09-251-0/+4
|
* docs: add links to the v7.0.9 & v8.0.3 release notesEarl Warren2024-09-061-0/+8
|
* docs: add links to the v7.0.8 & v8.0.2 release notesEarl Warren2024-08-291-0/+8
|
* docs: add links to the v7.0.7 & v8.0.1 release notesEarl Warren2024-08-091-2/+8
| | | | | | | | | | | | They are now published in the milestone in part manually edited and in part generated by the release notes assistant. Maintaining a single file with all the release notes is prone to conflicts and requires manual copy/pasting that is of little value. It may make sense to transition to a release notes directory in which the release notes assistant could create one file per release, with a copy of the release notes edited in the milestone. This could be more conveniently backported and would not require human intervention.
* Adjust codespell config + make it fix few typos which sneaked in since ↵Yaroslav Halchenko2024-08-081-3/+3
| | | | | | | | | | | | | | | | | addition of codespell support (#4857) Now that my colleague just posted a wonderful blog post https://blog.datalad.org/posts/forgejo-runner-podman-deployment/ on forgejo runner, some time I will try to add that damn codespell action to work on CI here ;) meanwhile some typos managed to sneak in and this PR should address them (one change might be functional in a test -- not sure if would cause a fail or not) ### Release notes - [ ] I do not want this change to show in the release notes. - [ ] I want the title to show in the release notes with a link to this pull request. - [ ] I want the content of the `release-notes/<pull request number>.md` to be be used for the release notes instead of the title. Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4857 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Co-authored-by: Yaroslav Halchenko <debian@onerussian.com> Co-committed-by: Yaroslav Halchenko <debian@onerussian.com>
* docs(release-notes): 8.0.0 & 7.0.6 - updatesEarl Warren2024-07-301-1/+0
| | | | - remove duplicate APA line
* docs(release-notes): 8.0.0 & 7.0.6 - updatesEarl Warren2024-07-301-81/+108
| | | | | | - add the release notes for 7.0.6 - move the two removed frontend features first in both 8.0.0 & 7.0.6 - remove extra </a>
* docs(release-notes): 8.0.0 - updatesEarl Warren2024-07-301-0/+2
|
* docs(release-notes): 8.0.0 - updatesEarl Warren2024-07-241-5/+14
|
* docs(release-notes): 8.0.0 (#4483)Earl Warren2024-07-161-1/+121
| | | | | | | | * Generated by https://code.forgejo.org/forgejo/release-notes-assistant * Some parts were manually edited * The pull requests that were not included are archived at https://codeberg.org/forgejo/forgejo/issues/4473 Co-authored-by: Earl Warren <contact@earl-warren.org> Co-committed-by: Earl Warren <contact@earl-warren.org>
* docs(release-notes): 7.0.5 [skip ci]Earl Warren2024-07-031-0/+30
|
* docs(release-notes): development continues to Forgejo 9.0.0v9.0.0-devEarl Warren2024-07-011-2/+6
|
* [skip ci] docs(release-notes): 1.21.11-2Earl Warren2024-06-131-0/+22
|
* [skip ci] docs(release-notes): 7.0.4Earl Warren2024-06-131-1/+33
|
* [skip ci] docs(release-notes): 7.0.3 (take 2)Earl Warren2024-05-221-1/+0
| | | | | | This commit was reverted because it introduces a regression. Refs: https://codeberg.org/forgejo/forgejo/pulls/3867
* [skip ci] docs(release-notes): 7.0.3Earl Warren2024-05-221-0/+51
|
* [skip ci] fix release notes linkShiny Nematoda2024-05-141-1/+1
|
* Add codespell support and fix a good number of typos with its help (#3270)Yaroslav Halchenko2024-05-091-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | More about codespell: https://github.com/codespell-project/codespell . I personally introduced it to dozens if not hundreds of projects already and so far only positive feedback. ``` ❯ grep lint-spell Makefile @echo " - lint-spell lint spelling" @echo " - lint-spell-fix lint spelling and fix issues" lint: lint-frontend lint-backend lint-spell lint-fix: lint-frontend-fix lint-backend-fix lint-spell-fix .PHONY: lint-spell lint-spell: lint-codespell .PHONY: lint-spell-fix lint-spell-fix: lint-codespell-fix ❯ git grep lint- -- .forgejo/ .forgejo/workflows/testing.yml: - run: make --always-make -j$(nproc) lint-backend checks-backend # ensure the "go-licenses" make target runs .forgejo/workflows/testing.yml: - run: make lint-frontend ``` so how would you like me to invoke `lint-codespell` on CI? (without that would be IMHO very suboptimal and let typos sneak in) Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/3270 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Co-authored-by: Yaroslav Halchenko <debian@onerussian.com> Co-committed-by: Yaroslav Halchenko <debian@onerussian.com>
* [skip ci] docs(release-notes): 7.0.2Earl Warren2024-05-011-0/+18
|
* RELEASE Version LinkRobin Kloppe2024-04-271-1/+1
|
* docs(release-notes): 7.0.1Earl Warren2024-04-271-1/+14
|
* docs(release-notes): split items in files to avoid conflicts (#3452)Earl Warren2024-04-261-23/+2
| | | | | | | | | | | | | | | | | | | I thought there would be conflicts but that they would not be so difficult to manage. Worst idea I had this week. Change to @oliverpool idea instead. > Instead of documenting the release notes in the issue, why not in the codebase? > > For instance in [go](https://cs.opensource.google/go/go/+/master:doc/README.md) there is a `doc/next` folder where you add `<pr-number>.md` files which document each pr. > > Before the release, a script takes all those files to generate the changelog. > > Having them as a file tracked by git, makes them easy to review and to programmatically handle. Refs: https://codeberg.org/forgejo/discussions/issues/155#issuecomment-1787013 Co-authored-by: Shiny Nematoda <snematoda.751k2@aleeas.com> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/3452 Reviewed-by: Gergely Nagy <algernon@noreply.codeberg.org> Co-authored-by: Earl Warren <contact@earl-warren.org> Co-committed-by: Earl Warren <contact@earl-warren.org>
* docs(release-notes): 7.0.0 LFS garbage collection and workaroundEarl Warren2024-04-261-1/+2
| | | | | Refs: https://codeberg.org/forgejo/forgejo/issues/3438 (cherry picked from commit a37836f228617b8e5b437114e9100f2fc7d9f00e)
* fix(ui): /settings/lfs/find 500 errorEarl Warren2024-04-251-2/+2
| | | | | | | | | | | | | | | | | | | When in the repository settings, visiting - `LFS` to `/{owner}/{repo}/settings/lfs` - `Find pointer files` to `/{owner}/{repo}/settings/lfs/pointers` - `Find commits` to `/{owner}/{repo}/settings/lfs/find?oid=...` failed with an error 500 because of an incorrect evaluation of the template. Regression introduced by https://codeberg.org/forgejo/forgejo/commit/cbf923e87bca0f50c2c01a60ccf544b63c365e98 A test is added to visit the page and guard against future regressions. Refs: https://codeberg.org/forgejo/forgejo/issues/3438
* Merge pull request 'api: The repo wiki APIs should respect WikiBranch' ↵Earl Warren2024-04-251-0/+2
|\ | | | | | | | | | | | | (#3430) from algernon/forgejo:master-of-branches into forgejo Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/3430 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
| * Add a note about the previous bugfix to RELEASE-NOTESGergely Nagy2024-04-251-0/+2
| | | | | | | | Signed-off-by: Gergely Nagy <forgejo@gergo.csillger.hu>
* | Merge pull request 'fix(cli): admin user create first user never require a ↵Earl Warren2024-04-251-0/+1
|\ \ | | | | | | | | | | | | | | | | | | password change' (#3412) from earl-warren/forgejo:wip-cli-user-create into forgejo Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/3412 Reviewed-by: twenty-panda <twenty-panda@noreply.codeberg.org>
| * | fix(cli): admin user create first user never require a password changeEarl Warren2024-04-241-0/+1
| | | | | | | | | | | | Fixes: https://codeberg.org/forgejo/forgejo/issues/3399
* | | Merge pull request 'feat(docs): 8.0.0 release notes template' (#3416) from ↵Earl Warren2024-04-251-0/+14
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | earl-warren/forgejo:wip-release-notes-v8.0 into forgejo Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/3416 Reviewed-by: twenty-panda <twenty-panda@noreply.codeberg.org>
| * | feat(docs): 8.0.0 release notes templateEarl Warren2024-04-241-0/+14
| |/ | | | | | | | | so that individual commits can include additions to the release notes when relevant.
* / fix(docs): v7.0.0 admin user create regression (take2)Earl Warren2024-04-241-1/+1
|/ | | | | | | The scope of the regression is limited to the first created user when it is not an admin. Refs: https://codeberg.org/forgejo/forgejo/issues/3399
* feat(docs): 7.0.1 release notes templateEarl Warren2024-04-241-0/+8
| | | | | so that individual commits can include additions to the release notes when relevant.
* fix(docs): v7.0.0 admin user create regressionEarl Warren2024-04-241-0/+2
| | | | | | | | The tests in Forgejo extensively rely on admin user create to create the first admin user. This regression was not noticed because it is an exception and a password change will not be required. Refs: https://codeberg.org/forgejo/forgejo/issues/3399
* fix(docs): tweak 7.0 release notes for FAQEarl Warren2024-04-231-2/+7
| | | | | - running doctor convert - disabling Add More...
* [RELEASE] update the release notes introductionEarl Warren2024-04-231-2/+2
| | | | | - the release cycle is no longer tied to the Gitea release cycle - breaking changes happen in a manner consistent with semantic versioning
* [RELEASE] v7.0.0 release notes (#3203)Earl Warren2024-04-231-1/+448
| | | | | | | | | | | | | | | | | These release notes need a lot of attention to be good. But they are passable and ready for review. Multiple factors made them challenging to collect: - lack of organization Forgejo side which is going to be better for the next version - complete reorganization of the development workflows which made it challenging to sort out what is in the release or not - unification of the branches into a single one after the hard fork decision Refs: https://codeberg.org/forgejo/forgejo/issues/2425 Co-authored-by: 0ko <0ko@noreply.codeberg.org> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/3203 Reviewed-by: Otto <otto@codeberg.org> Co-authored-by: Earl Warren <contact@earl-warren.org> Co-committed-by: Earl Warren <contact@earl-warren.org>
* [RELEASE] v1.21.11-1 release notesEarl Warren2024-04-191-0/+16
|
* slight wording change and most serious fix firstEarl Warren2024-04-181-3/+3
|
* add security fixes details, link to comparecrystal2024-04-181-2/+3
|
* typocrystal2024-04-181-1/+1
|
* [RELEASE] v1.21.11-0 release notescrystal2024-04-171-1/+32
|
* [RELEASE] v1.21.10-0 release notesEarl Warren2024-04-041-0/+40
|
* [RELEASE] v1.21.8-0 release notesEarl Warren2024-03-221-0/+34
|
* [RELEASE] v1.21.7-0 release notes (cosmetic changes)Earl Warren2024-03-061-4/+8
|
* [RELEASE] v1.21.7-0 release notesEarl Warren2024-03-061-0/+33
|
* [RELEASE] v1.21.6-0 release notesEarl Warren2024-02-221-0/+48
| | | | Refs: https://codeberg.org/forgejo/forgejo/issues/2408
* [DOCS] RELEASE-NOTES.md (squash) v1.21.5-0 (squash) go-gitEarl Warren2024-02-051-1/+2
| | | | (cherry picked from commit 6fc9ce83caf1cde207f375459b8a1d5495f7b78e)
* [DOCS] RELEASE-NOTES.md (squash) v1.21.5-0Earl Warren2024-02-051-0/+41
| | | | (cherry picked from commit 29bdaed6d2ddc4df750886d4833e0ca2d1f189f9)
* [DOCS] RELEASE-NOTES.md (squash) v1.21.4-0 securityEarl Warren2024-02-051-2/+1
| | | | | | | Refs: https://codeberg.org/forgejo/forgejo/issues/2158 (cherry picked from commit 7e663e496e212ec4f27f8808c441ab583d48c9ad) (cherry picked from commit 3e5d45a2ab1a98f14c53f5aa36bb164ce6d7a3aa) (cherry picked from commit 6c22e906fbaffc4451020e113b5ca2d890f1cf67)