\r\n \u003Clink rel=\"alternate icon\" type=\"image/png\" href=\"/favicons/favicon-light-default.png\" id=\"favicon-png\" />\r\n \u003Clink rel=\"icon\" type=\"image/svg+xml\" href=\"/favicons/favicon-light-default.svg\" id=\"favicon-svg\" />\r\n \u003Cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n \u003Cmeta name=\"theme-color\" content=\"#65a30d\" />\r\n \u003Ctitle>Woodpecker\u003C/title>\r\n \u003Cscript type=\"\" src=\"/web-config.js\">\u003C/script>\r\n \u003Cscript type=\"module\" crossorigin src=\"/assets/index-4b7b57db.js\">\u003C/script>\r\n \u003Clink rel=\"stylesheet\" href=\"/assets/index-f123c06a.css\">\r\n \u003C/head>\r\n \u003Cbody>\r\n \u003Cdiv id=\"app\">\u003C/div>\r\n\r\n \u003C/body>\r\n\u003C/html>\r\n```\r\n\r\nThat is basically an \"empty\" page. Let's look at the response code:\r\n```\r\n$ curl -I http://localhost:8000/foo\r\nHTTP/1.1 200 OK\r\nX-Woodpecker-Version: next-45319b24\r\n# ...etc.\r\n```\r\n\r\nThat should have returned 404.\r\n\r\nNow let's request a non-existent API endpoint:\r\n```\r\n$ curl -I http://localhost:8000/api/bar\r\nHTTP/1.1 200 OK\r\nX-Woodpecker-Version: next-45319b24\r\n# ...etc.\r\n```\r\n\r\nSame thing.\r\n\r\nNow let's request a real API endpoint, for healthchecks:\r\n```\r\n$ curl http://localhost:8000/api/healthz\r\n\u003C!DOCTYPE html>\r\n\u003Chtml lang=\"en\">\r\n # ...\r\n\u003C/html>\r\n\r\n$ curl -I http://localhost:8000/api/healthz\r\nHTTP/1.1 200 OK\r\nX-Woodpecker-Version: next-45319b24\r\n# ...etc.\r\n```\r\n\r\nSame thing. Also, it should not return a page, only a REST response.\r\n\r\nClean up:\r\n```\r\n$ apk delete curl\r\n$ exit\r\n```\r\n\r\nSummary:\r\n- both existent and non-existent endpoints and pages respond with 200\r\n- that means the `/api/healthz` endpoint is not working: it's a \"proof of life\" rather than \"proof of health\"\r\n- and the health endpoint should only return a json REST response, not a page\r\n\r\n### System Info\r\n\r\n```shell\r\nversion next-45319b24-alpine\r\ndockerised\r\n```\r\n\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Validations\r\n\r\n- [X] Read the [Contributing Guidelines](https://github.com/woodpecker-ci/woodpecker/blob/master/CONTRIBUTING.md).\r\n- [X] Read the [docs](https://woodpecker-ci.org/docs/intro).\r\n- [X] Check that there isn't [already an issue](https://github.com/woodpecker-ci/woodpecker/issues) that reports the same bug to avoid creating a duplicate.\r\n- [X] Checked that the bug isn't fixed in the `next` version already [https://woodpecker-ci.org/faq#which-version-of-woodpecker-should-i-use]\r\n- [X] Check that this is a concrete bug. For Q&A join our [Discord Chat Server](https://discord.gg/fcMQqSMXJy) or the [Matrix room](https://matrix.to/#/#woodpecker:matrix.org).",[2893,2896],{"name":2894,"color":2895},"bug","d73a4a",{"name":2897,"color":2898},"server","5D7A92",1947,"All pages and API endpoints (including non-existent ones) return 200","2025-03-16T13:50:31Z","https://github.com/woodpecker-ci/woodpecker/issues/1947",0.79187393,{"description":2905,"labels":2906,"number":2913,"owner":2872,"repository":2873,"state":2874,"title":2914,"updated_at":2915,"url":2916,"score":2917},"https://github.com/woodpecker-ci/woodpecker/blob/4456da99c56437ef49c799a047ad3518023e6ce3/pipeline/rpc/peer.go#L54",[2907,2910],{"name":2908,"color":2909},"documentation","7D625D",{"name":2911,"color":2912},"refactor","4f8cc9",3322,"Rename Interface to actully reflect what it is used for","2024-02-07T00:03:34Z","https://github.com/woodpecker-ci/woodpecker/issues/3322",0.79701406,{"description":2919,"labels":2920,"number":2931,"owner":2872,"repository":2873,"state":2932,"title":2933,"updated_at":2934,"url":2935,"score":2936},"use locales for strings so we can make it translatable\r\n- [x] add locales framework (#912)\r\n- [ ] user is able to select/set language ( #1305)\r\n- [x] decide on translation platform\r\n - [ ] [Crowdin](https://crowdin.com/)\r\n - [x] [Weblate](https://weblate.org/en/)\r\n - [ ] [pontoon](https://pontoon.mozilla.org/)\r\n- [x] add ci pipeline that upload & download from translation platform",[2921,2924,2925,2928],{"name":2922,"color":2923},"ui","46DEA2",{"name":2883,"color":2884},{"name":2926,"color":2927},"translation","F51C68",{"name":2929,"color":2930},"summary","C3DC73",258,"closed","Locales","2022-10-21T19:58:38Z","https://github.com/woodpecker-ci/woodpecker/issues/258",0.72510684,{"description":2938,"labels":2939,"number":2943,"owner":2872,"repository":2873,"state":2932,"title":2944,"updated_at":2945,"url":2946,"score":2947},"### Clear and concise description of the problem\n\nCurrently all locales are loaded immediately. This unnecessarily bloats the bundle size.\n\n### Suggested solution\n\nLazy load locales: https://vue-i18n.intlify.dev/guide/advanced/lazy.html\n\n### Alternative\n\n_No response_\n\n### Additional context\n\n_No response_\n\n### Validations\n\n- [X] Read the [Contributing Guidelines](https://github.com/woodpecker-ci/woodpecker/blob/master/CONTRIBUTING.md).\n- [X] Read the [docs](https://woodpecker-ci.org/docs/intro).\n- [X] Check that there isn't already an [issue](https://github.com/woodpecker-ci/woodpecker/issues) that request the same feature to avoid creating a duplicate.",[2940,2941,2942],{"name":2922,"color":2923},{"name":2869,"color":2870},{"name":2926,"color":2927},1345,"Lazy load locales","2022-12-29T12:42:00Z","https://github.com/woodpecker-ci/woodpecker/issues/1345",0.72845024,{"description":2949,"labels":2950,"number":2955,"owner":2872,"repository":2873,"state":2932,"title":2956,"updated_at":2957,"url":2958,"score":2959},"### Component\r\n\r\nother\r\n\r\n### Describe the bug\r\n\r\nThe docker tag `vX.X` (v2.1) (details: https://woodpecker-ci.org/docs/administration/deployment/docker-compose#docker-images) does not work.\r\n\r\n### Additional context\r\n```\r\ndocker pull woodpeckerci/woodpecker-server:v2.1-alpne\r\nError response from daemon: manifest for woodpeckerci/woodpecker-server:v2.1-alpne not found: manifest unknown: manifest unknown\r\n```\r\n\r\n### Validations\r\n\r\n- [X] Read the [Contributing Guidelines](https://github.com/woodpecker-ci/woodpecker/blob/main/CONTRIBUTING.md).\r\n- [X] Read the [docs](https://woodpecker-ci.org/docs/intro).\r\n- [X] Check that there isn't [already an issue](https://github.com/woodpecker-ci/woodpecker/issues) that reports the same bug to avoid creating a duplicate.\r\n- [X] Checked that the bug isn't fixed in the `next` version already [https://woodpecker-ci.org/faq#which-version-of-woodpecker-should-i-use]\r\n- [X] Check that this is a concrete bug. For Q&A join our [Discord Chat Server](https://discord.gg/fcMQqSMXJy) or the [Matrix room](https://matrix.to/#/#woodpecker:matrix.org).",[2951,2952],{"name":2894,"color":2895},{"name":2953,"color":2954},"build","6AB8BA",3131,"Docker Tag vX.X not working","2024-12-21T10:52:57Z","https://github.com/woodpecker-ci/woodpecker/issues/3131",0.73687005,{"description":2961,"labels":2962,"number":2964,"owner":2872,"repository":2873,"state":2932,"title":2965,"updated_at":2966,"url":2967,"score":2968},"#877 did introduce an regression (I did also not notice while reviewing :/ ) \r\n\r\nWP only exec 1 pipeline but should do 2\r\n\r\n## Before\r\nhttps://ci.woodpecker-ci.org/woodpecker-ci/woodpecker/build/2558\r\n## Now :/\r\nhttps://ci.woodpecker-ci.org/woodpecker-ci/woodpecker/build/2563",[2963],{"name":2894,"color":2895},931,"Pipelines are skipped where they should not","2022-05-20T03:37:11Z","https://github.com/woodpecker-ci/woodpecker/issues/931",0.75243324,{"description":2970,"labels":2971,"number":2973,"owner":2872,"repository":2873,"state":2932,"title":2974,"updated_at":2975,"url":2976,"score":2977},"### Component\n\nserver\n\n### Describe the bug\n\nThe repair function is recreating the webhoook using the `WOODPECKER_HOST` instead of `WOODPECKER_WEBHOOK_HOST`.\n\n### System Info\n\n```shell\n1.0-90310de6f1\n```\n\n\n### Additional context\n\n_No response_\n\n### Validations\n\n- [X] Read the [Contributing Guidelines](https://github.com/woodpecker-ci/woodpecker/blob/main/CONTRIBUTING.md).\n- [X] Read the [docs](https://woodpecker-ci.org/docs/intro).\n- [X] Check that there isn't [already an issue](https://github.com/woodpecker-ci/woodpecker/issues) that reports the same bug to avoid creating a duplicate.\n- [X] Checked that the bug isn't fixed in the `next` version already [https://woodpecker-ci.org/faq#which-version-of-woodpecker-should-i-use]\n- [X] Check that this is a concrete bug. For Q&A join our [Discord Chat Server](https://discord.gg/fcMQqSMXJy) or the [Matrix room](https://matrix.to/#/#woodpecker:matrix.org).",[2972],{"name":2894,"color":2895},2371,"Repair not using value from WOODPECKER_WEBHOOK_HOST","2023-09-13T06:42:17Z","https://github.com/woodpecker-ci/woodpecker/issues/2371",0.7578122,{"description":2979,"labels":2980,"number":2982,"owner":2872,"repository":2873,"state":2932,"title":2983,"updated_at":2984,"url":2985,"score":2986},"### Component\n\ncli\n\n### Describe the bug\n\n```sh\r\n$ woodpecker-cli secret info --org yonas\r\n5:19AM FTL error running cli error=\"json: cannot unmarshal array into Go value of type woodpecker.Secret\"\r\n```\n\n### Steps to reproduce\n\nRun `woodpecker-cli secret info --org \u003Cyour username>`\n\n### Expected behavior\n\nI should get info about the secrets I've created.\n\n### System Info\n\n```shell\nFreeBSD 14\r\nCommit: 54b91db\n```\n\n\n### Additional context\n\n_No response_\n\n### Validations\n\n- [X] Read the [docs](https://woodpecker-ci.org/docs/intro).\n- [X] Check that there isn't [already an issue](https://github.com/woodpecker-ci/woodpecker/issues) that reports the same bug to avoid creating a duplicate.\n- [X] Checked that the bug isn't fixed in the `next` version already [https://woodpecker-ci.org/faq#which-version-of-woodpecker-should-i-use]",[2981],{"name":2894,"color":2895},4004,"FTL error running cli error=\"json: cannot unmarshal array into Go value of type woodpecker.Secret\"","2024-08-07T22:26:51Z","https://github.com/woodpecker-ci/woodpecker/issues/4004",0.7703709,["Reactive",2988],{},["Set"],["ShallowReactive",2991],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$foaYWW9BRbcABQYTFtNOKg_rRBKZLYt-cJuaTzVmNWDg":-1},"/woodpecker-ci/woodpecker/1313"]