Prepair docs for v1.0.0 release (#2061)

Backport  #2056 and #2058
This commit is contained in:
6543 2023-07-29 15:07:30 +02:00 committed by GitHub
parent 7635b5d1f0
commit 1f09a8730d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 3 deletions

View file

@ -1,6 +1,6 @@
# Changelog
## [1.0.0-rc1](https://github.com/woodpecker-ci/woodpecker/releases/tag/v1.0.0-rc1) - 2023-07-25
## [1.0.0](https://github.com/woodpecker-ci/woodpecker/releases/tag/v1.0.0) - 2023-07-29
* BREAKING
* Use IDs to access organizations (#1873)
@ -13,6 +13,7 @@
* Access repos by their IDs (#1691)
* Drop "coding" support (#1644)
* Add queue details UI for admins (#1632)
* Remove `command:` from steps (#1032)
* Remove old `build` API routes (#1283)
* Let single line command be a single command (#1009)
* Drop deprecated environment vars (#920)
@ -59,6 +60,7 @@
* Support plugin-only secrets (#1344)
* Fix insecure /tmp usage in local backend (#872)
* BUGFIXES
* Handle case where there is no latest pipeline for GetBadge (#2042) (#2050)
* Fix repo gate protection (#1969)
* Make secrets with "/" in name editable / deletable (#1938)
* Fix Bitbucket implement missing features (#1887) (#1889)

View file

@ -908,6 +908,6 @@ Woodpecker gives the ability to configure privileged mode in the YAML. You can u
services:
docker:
image: docker:dind
command: [ "--storage-driver=vfs", "--tls=false" ]
commands: dockerd-entrypoint.sh --storage-driver=vfs --tls=false
+ privileged: true
```

View file

@ -35,6 +35,9 @@ No breaking changes
- To find the id of orgs use the `/api/orgs/lookup/{org_full_name}` endpoint.
- The UI urls for a organization changed from `/org/{owner}/...` to `/orgs/{org-id}/...`. You will be redirected automatically when using the old url.
- The woodpecker-go api-client is now using the `org-id` instead of `org name` for all functions
- The `command:` field has been removed from steps. If you were using it, please check if the entrypoint of the image you used is a shell.
- If it is a shell, simply rename `command:` to `commands:`.
- If it's not, you need to prepend the entrypoint before and also rename it (e.g., `commands: <entrypoint> <cmd>`).
## 0.15.0

View file

@ -908,6 +908,6 @@ Woodpecker gives the ability to configure privileged mode in the YAML. You can u
services:
docker:
image: docker:dind
command: [ "--storage-driver=vfs", "--tls=false" ]
commands: dockerd-entrypoint.sh --storage-driver=vfs --tls=false
+ privileged: true
```

View file

@ -35,6 +35,9 @@ No breaking changes
- To find the id of orgs use the `/api/orgs/lookup/{org_full_name}` endpoint.
- The UI urls for a organization changed from `/org/{owner}/...` to `/orgs/{org-id}/...`. You will be redirected automatically when using the old url.
- The woodpecker-go api-client is now using the `org-id` instead of `org name` for all functions
- The `command:` field has been removed from steps. If you were using it, please check if the entrypoint of the image you used is a shell.
- If it is a shell, simply rename `command:` to `commands:`.
- If it's not, you need to prepend the entrypoint before and also rename it (e.g., `commands: <entrypoint> <cmd>`).
## 0.15.0