Merge branch 'master' into remake-traces

This commit is contained in:
A.Unger
2021-08-09 15:52:19 +02:00
5 changed files with 13 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
# The test runner source for API tests
CORE_COMMITID=83a407af2fbabc6cd6bb2d6b9abfe62e85d2da64
CORE_COMMITID=cf1259bdc261a8f94e59ced83232dfc662afdabc
CORE_BRANCH=master
# The test runner source for UI tests
WEB_COMMITID=f7d0073606a1ab91e5e7f41df7d649a241a3364e
WEB_COMMITID=9e3299e89bdb0ba885dda34efedff83868193535
WEB_BRANCH=master

View File

@@ -214,8 +214,6 @@ def checkForRecentBuilds(ctx):
return pipelines
def stopRecentBuilds(ctx):
repo_slug = ctx.build.source_repo if ctx.build.source_repo else ctx.repo.slug
return [{
"name": "stop-recent-builds",
"image": "drone/cli:alpine",
@@ -227,8 +225,8 @@ def stopRecentBuilds(ctx):
},
},
"commands": [
"drone build ls %s --status running > /drone/src/recentBuilds.txt" % repo_slug,
"drone build info %s ${DRONE_BUILD_NUMBER} > /drone/src/thisBuildInfo.txt" % repo_slug,
"drone build ls %s --status running > /drone/src/recentBuilds.txt" % ctx.repo.slug,
"drone build info %s ${DRONE_BUILD_NUMBER} > /drone/src/thisBuildInfo.txt" % ctx.repo.slug,
"cd /drone/src && ./tests/acceptance/cancelBuilds.sh",
],
"when": {

View File

@@ -6,6 +6,7 @@ The following sections list the changes for unreleased.
## Summary
* Bugfix - Specify primary user type for all accounts: [#2364](https://github.com/owncloud/ocis/pull/2364)
* Bugfix - Improve IDP Login Accessibility: [#5376](https://github.com/owncloud/web/issues/5376)
* Bugfix - Forward basic auth to OpenID connect token authentication endpoint: [#2095](https://github.com/owncloud/ocis/issues/2095)
* Bugfix - Log all requests in the proxy access log: [#2301](https://github.com/owncloud/ocis/pull/2301)
@@ -19,6 +20,10 @@ The following sections list the changes for unreleased.
## Details
* Bugfix - Specify primary user type for all accounts: [#2364](https://github.com/owncloud/ocis/pull/2364)
https://github.com/owncloud/ocis/pull/2364
* Bugfix - Improve IDP Login Accessibility: [#5376](https://github.com/owncloud/web/issues/5376)
We have addressed the feedback from the `a11y` audit and improved the IDP login screen

View File

@@ -0,0 +1,3 @@
Bugfix: Specify primary user type for all accounts
https://github.com/owncloud/ocis/pull/2364

View File

@@ -144,6 +144,7 @@ func (a *accountsServiceBackend) accountToUser(account *accounts.Account) *cs3.U
Id: &cs3.UserId{
OpaqueId: account.Id,
Idp: a.OIDCIss,
Type: cs3.UserType_USER_TYPE_PRIMARY, // TODO: once we have support for other user types, this needs to be inferred
},
Username: account.OnPremisesSamAccountName,
DisplayName: account.DisplayName,