-
Notifications
You must be signed in to change notification settings - Fork 332
[SQSERVICES-1885] [OAUTH] Scopes with regard to calendar integration #3046
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
battermann
merged 62 commits into
SQSERVICES-1825-be-oauth-refresh-token-generation
from
SQSERVICES-1885-be-oauth-scopes-with-regard-to-calendar-integration
Feb 8, 2023
Merged
Changes from all commits
Commits
Show all changes
62 commits
Select commit
Hold shift + click to select a range
fa2bdda
Fix flaky tests, add debugging to others (#3041)
smatting f959352
Streamline team feature ExposeInvitationURLsToTeamAdminConfig impleme…
battermann 0a8d0a4
charts: Mark all test resources to be only created while running test…
akshaymankar 17b6e3a
Update searchability documentation (#3044)
smatting a54578a
play with hasserver instance
battermann b30fe2d
Add security response about wire.com DoS and HTML injection
sanojwr 3373794
Update docs/src/security-responses/2023-01-19_html_injection.md
sanojwr d01cbb2
Update docs/src/security-responses/2023-01-19_html_injection.md
sanojwr 15cfd83
Merge pull request #3050 from wireapp/sanojwr/security_responses
sanojwr e8408bf
.gitignore: Add third party modules of nginz
smatting 70aa9a7
...
fisx afdbe5c
...
fisx d58d78a
...
fisx 5087280
...
fisx a721f44
...
fisx 633cfae
spar tests deflake: do an ES refresh, not reindex (#3048)
jschaul 443f741
Helm hook type (#3049)
jschaul d182942
helmfile sync: speedup (#3052)
jschaul 11e4167
Deflake metrics test (#3053)
jschaul 6ac782b
WIP: attempt to use checkType in OAuth logic
pcapriotti 58b2955
...
fisx be524fa
[FS-1075] Extend the Swagger documentation for federation error types…
e7724d7
wip
battermann cb62224
Test helper SQSWatcher: use purgeQueue (#3054)
jschaul 7d1504b
Improve helm test output; and provide the means (even if disabled due…
jschaul 3d7d9b2
clean up
battermann 95dde99
more clear comments
battermann e4b69e8
clean up
battermann f37c319
another cleanup
battermann 716b5f8
Small fixes to documentation (#3060)
smatting a0549ee
conn id optional
battermann f6e46c3
Lower the log level of federator inotify (#3056)
pcapriotti 8051138
Update spar docs (#3038)
fisx ed226cd
Allow single scopes and lists of scopes in routes.
fisx 7d735c6
Merge remote-tracking branch 'refs/remotes/origin/SQSERVICES-1885-be-…
fisx a7e4cbf
instance HasSwagger (ZAuthServant ...)
fisx 70d1f47
Fixup
fisx e0c9c91
Merge remote-tracking branch 'origin/develop' into SQSERVICES-1885-be…
fisx d93bb7d
Tweak HasSwagger docs.
fisx 1a6e02a
Merge branch 'SQSERVICES-1885-be-oauth-scopes-with-regard-to-calendar…
battermann 3407a2f
support lenient, optional zoauth combinators.
fisx d7be8cc
Merge branch 'SQSERVICES-1885-be-oauth-scopes-with-regard-to-calendar…
battermann fea0a27
Fixup
fisx 8ad2b3f
make oauth work with swagger
battermann 15015d0
show scope(s) for each endpoint in swagger
battermann 4eece1d
Merge branch 'SQSERVICES-1885-be-oauth-scopes-with-regard-to-calendar…
battermann 8192d7e
fix
battermann 0003255
fix 2
battermann a9f4d3e
grammar
battermann 389fa39
make JWK available in galley
battermann fa47d21
oauth access to conversation create works
battermann 26e75c5
jwk effect shared
battermann 54a7cb2
generated local nix packages
battermann 501a96f
setup config for secret for staging
battermann 62da199
fix tests
battermann 87e6dd8
enable oauth for post conversations
battermann 9d5f5e3
renaming
battermann 737ba2b
fix
battermann 8d61c29
oauth scope for feature-configs
battermann 5047395
wip
battermann fdff6a6
clean up
battermann 0c14cca
update comment
battermann File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,6 +20,7 @@ elasticsearch-ephemeral minio-external cassandra-external \ | |
| nginx-ingress-controller nginx-ingress-services reaper sftd restund coturn \ | ||
| inbucket k8ssandra-test-cluster | ||
| KIND_CLUSTER_NAME := wire-server | ||
| HELM_PARALLELISM ?= 1 # 1 for sequential tests; 6 for all-parallel tests | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think that should go to a separate PR, no? |
||
|
|
||
| package ?= all | ||
| EXE_SCHEMA := ./dist/$(package)-schema | ||
|
|
@@ -315,15 +316,15 @@ kube-integration: kube-integration-setup kube-integration-test | |
|
|
||
| .PHONY: kube-integration-setup | ||
| kube-integration-setup: charts-integration | ||
| export NAMESPACE=$(NAMESPACE); ./hack/bin/integration-setup-federation.sh | ||
| export NAMESPACE=$(NAMESPACE); export HELM_PARALLELISM=$(HELM_PARALLELISM); ./hack/bin/integration-setup-federation.sh | ||
|
|
||
| .PHONY: kube-integration-test | ||
| kube-integration-test: | ||
| export NAMESPACE=$(NAMESPACE); ./hack/bin/integration-test.sh | ||
| export NAMESPACE=$(NAMESPACE); export HELM_PARALLELISM=$(HELM_PARALLELISM); ./hack/bin/integration-test.sh | ||
|
|
||
| .PHONY: kube-integration-teardown | ||
| kube-integration-teardown: | ||
| export NAMESPACE=$(NAMESPACE); ./hack/bin/integration-teardown-federation.sh | ||
| export NAMESPACE=$(NAMESPACE); export HELM_PARALLELISM=$(HELM_PARALLELISM); ./hack/bin/integration-teardown-federation.sh | ||
|
|
||
| .PHONY: kube-integration-e2e-telepresence | ||
| kube-integration-e2e-telepresence: | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Extend the docs on the federation error type |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Update SAML/SCIM docs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Deflake integration test: metrics | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here. am i reading the wrong diff? |
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Lower the log level of federator inotify |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| CI integration setup time should be reduced: tweak the way cassandra-ephemeral is started |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| charts: Mark all service/secret/configmap test resources to be re-created by defining them as helm hooks (#3037, #3049) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Add config to allow to run helm tests for different services in parallel; improve integration test output logs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.