https://github.com/sator-imaging/unity-releasenotes
Unity Release Notes archive for search across releases.
https://github.com/sator-imaging/unity-releasenotes
release-notes unity unity3d
Last synced: 4 months ago
JSON representation
Unity Release Notes archive for search across releases.
- Host: GitHub
- URL: https://github.com/sator-imaging/unity-releasenotes
- Owner: sator-imaging
- Created: 2022-08-07T14:51:01.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2026-02-05T01:06:34.000Z (4 months ago)
- Last Synced: 2026-02-05T14:13:31.793Z (4 months ago)
- Homepage: https://alpha.release-notes.ds.unity3d.com/
- Size: 6.03 MB
- Stars: 13
- Watchers: 0
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Unity-ReleaseNotes [](https://github.com/sator-imaging/Unity-ReleaseNotes/actions/workflows/cron.yml)
Update job starts on everyday 23:59 UTC. It may be delayed an hour or more due to busy time of GitHub Actions.
## Official Site (Alpha)
There is official release notes archives:
https://alpha.release-notes.ds.unity3d.com/
# Usage
`" Fixed"` to search fixed issues.
`filename:known ` to search known issues.
`path:Unity` to specify version searching for.
> [!TIP]
> Note that GitHub search sometimes says "nothing found", reloading page will show correct result.
Examples:
- Recently fixed URP issues, except for alpha release:
https://github.com/sator-imaging/Unity-ReleaseNotes/search?o=desc&q=%22URP+Fixed%22+-alpha&s=indexed
- To see known URP issues in Unity 2021:
https://github.com/sator-imaging/Unity-ReleaseNotes/search?o=desc&q=URP+filename%3Aknown+path%3AUnity2021&s=indexed
- Recently fixed XR issues:
https://github.com/sator-imaging/Unity-ReleaseNotes/search?o=desc&q=%22XR+Fixed%22&s=indexed
- URP issues in Unity 2021, ascending order:
https://github.com/sator-imaging/Unity-ReleaseNotes/search?o=asc&q=URP+issue+path%3AUnity2021&s=indexed
## Devnote
How to delete all the releases and tags from remote repository.[^1][^2]
[^1]: [GitHub CLI](https://cli.github.com/) must be installed and authorized.
[^2]: Linux-compatible CLI environment is required on windows.
1. delete all releases.
`git tag | xargs -t -n 1 gh release delete`
2. delete all tags remaining on remote repository.
`git tag | xargs -t -n 1 git push --delete origin`
3. delete local repository tags if necessary.
`git tag | xargs -t git tag -d`