Compare commits

..

3 Commits

Author SHA1 Message Date
Alessandro Pinna 9804b5b34e
Merge 3cc0b10097 into e697e9163e 2024-07-24 23:14:20 +08:00
Simone Gotti e697e9163e
Merge pull request #526 from sgotti/release_v0.10.0
Release v0.10.0
2024-06-24 10:44:52 +02:00
Simone Gotti 86579b03cf Release v0.10.0 2024-06-19 10:49:40 +02:00
2 changed files with 26 additions and 1 deletions

View File

@ -115,7 +115,7 @@ local task_build_push_images(name, target, push) =
|||,
},
]) + [
{ type: 'run', command: '/kaniko/executor --context=dir:///kaniko/agola --build-arg AGOLAWEB_IMAGE=sorintlab/agola-web:v0.9.0 --target %s %s' % [target, options] },
{ type: 'run', command: '/kaniko/executor --context=dir:///kaniko/agola --build-arg AGOLAWEB_IMAGE=sorintlab/agola-web:v0.10.0 --target %s %s' % [target, options] },
],
depends: ['checkout code and save to workspace', 'integration tests', 'test docker driver'],
};

View File

@ -1,5 +1,30 @@
## Changelog
### v0.10.0
- gateway: unify/improve handling of authenticated user (@sgotti) [#525](https://github.com/agola-io/agola/pull/525)
- gateway: move remaining get of current user from api to action (@sgotti) [#524](https://github.com/agola-io/agola/pull/524)
- gateway: fix commit status and run webhook deliveries api (@alessandro-sorint) [#521](https://github.com/agola-io/agola/pull/521)
- tests: fix wrong ProjectCommitStatusRedelivery test (@alessandro-sorint) [#522](https://github.com/agola-io/agola/pull/522)
- cmd/export: close file descriptor (@testwill) [#516](https://github.com/agola-io/agola/pull/516)
- objectstorage: multiple updates and changes (@sgotti) [#519](https://github.com/agola-io/agola/pull/519)
- runservice: fix objectsCleaner lock key usage (@sgotti) [#520](https://github.com/agola-io/agola/pull/520)
- util: use generic Ptr function (@sgotti) [#518](https://github.com/agola-io/agola/pull/518)
- *: update dependencies (@sgotti) [#517](https://github.com/agola-io/agola/pull/517)
- api: add some missing http content types headers. (@sgotti) [#514](https://github.com/agola-io/agola/pull/514)
- config: add docker registries auth nil check (@alessandro-sorint) [#513](https://github.com/agola-io/agola/pull/513)
- configstore: move logic from db to action handler (@sgotti) [#511](https://github.com/agola-io/agola/pull/511)
- *: update dependencies (@sgotti) [#512](https://github.com/agola-io/agola/pull/512)
- *: add detailed errors to api responses (@sgotti) [#507](https://github.com/agola-io/agola/pull/507)
- *: use do method in http handlers (@sgotti) [#508](https://github.com/agola-io/agola/pull/508)
- gateway: add action.APIErrorFromRemoteError (@sgotti) [#506](https://github.com/agola-io/agola/pull/506)
- errors: split wrapped error from APIError message (@sgotti) [#505](https://github.com/agola-io/agola/pull/505)
- configstore: move last bits of logic from api to action (@sgotti) [#504](https://github.com/agola-io/agola/pull/504)
- configstore: fix wrong error handling (@sgotti) [#503](https://github.com/agola-io/agola/pull/503)
- validation: add min/max length check to name validation (@sgotti) [#499](https://github.com/agola-io/agola/pull/499)
- *: update to go 1.22 (@sgotti) [#498](https://github.com/agola-io/agola/pull/498)
- sqlg updates (@sgotti) [#495](https://github.com/agola-io/agola/pull/495)
### v0.9.0
- agolademo: use docker compose (@sgotti) [#494](https://github.com/agola-io/agola/pull/494)