Skip to content

Commit

Permalink
Fix username attributes for sso login
Browse files Browse the repository at this point in the history
  • Loading branch information
muralibasani committed Aug 21, 2024
2 parents 62e841a + 94596b8 commit 225b272
Show file tree
Hide file tree
Showing 12 changed files with 7,753 additions and 6,041 deletions.
11 changes: 7 additions & 4 deletions .github/ISSUE_TEMPLATE/01_question.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@ name: ❓ Ask a question
blank_issues_enabled: false
contact_links:

- name: Klaw Community Support
- name: Ask question in Community Forum
url: https://aiven.io/community/forum/new-topic?category=open-source&tags=klaw
about: Ask questions in Aiven's Community Forum. The prefilled category and tag will help us see your questions fast.
- name: Read in Community Forum
url: https://aiven.io/community/forum/c/open-source/12
about: Please ask and answer questions here.
- name: Klaw Github discussions
about: You can check for previous questions and also answer questions in our Open Source category in Aiven's Community Forum. Tip: You can filter by tag `klaw` if you want to check Klaw-only topics.
- name: Klaw GitHub discussions
url: https://github.com/aiven/klaw/discussions
about: Please ask and answer questions here.
about: You can ask and answer questions here, too!

The Klaw team will cross post questions and answers across both forums. The Klaw Community Support forum, which is hosted and supported by Aiven directly, has more visibility for other interested parties, so we would encourage questions to be asked there. We will respond and answer questions in both GitHub discussions and the Community Forum.
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,15 @@ With several downloads every week, many more companies which did not adopt a sol
### New React UI

Not required but to get the latest experience we recommend also building the React UI.
- [pnpm](https://pnpm.io/) (>=18.0.0 <19.0.0)
- [nodejs](https://nodejs.org/) (>=8.0.0 <9.0.0)
Latest:
- [pnpm](https://pnpm.io/) (>=9.0.0 <10.0.0)
- [nodejs](https://nodejs.org/) (>=20.0.0 <21.0.0)

Pre-20th of August 2024
- [pnpm](https://pnpm.io/) (>=8.0.0 <9.0.0)
- [nodejs](https://nodejs.org/) (>=18.0.0 <19.0.0)

If in doubt of the version you require locally you can see the information in [here](coral/package.json) under engines.

### Formatting

Expand Down Expand Up @@ -144,8 +151,9 @@ For the versions available, see the [tags on this repository](https://github.com

We encourage everyone to ask question, if you have a question someone else definitely does too.

- [Klaw Community Support](https://aiven.io/community/forum/c/open-source/12)
- [Klaw GitHub discussions](https://github.com/aiven/klaw/discussions)
- [Ask in Klaw Community forum](https://aiven.io/community/forum/new-topic?category=open-source&tags=klaw)
- [Read in Klaw Community forum](https://aiven.io/community/forum/c/open-source/12?tags=klaw)
- [Ask and read in Klaw GitHub discussions](https://github.com/aiven/klaw/discussions)

The Klaw team will cross post questions and answers across both forums. The Klaw Community Support forum, which is hosted and supported by Aiven directly, has more visibility for other interested parties, so we would encourage questions to be asked there. We will respond and answer questions in both GitHub discussions and the Community Forum.

Expand Down
2 changes: 1 addition & 1 deletion coral/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/hydrogen
lts/iron
2 changes: 1 addition & 1 deletion coral/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ This is the setup you every time. You can find the different ways how to run the

- [node](https://nodejs.org/en/) needs to be installed <br/>
-> see [nvmrc](.nvmrc) or the `engines` definition in [package.json](package.json) for version).
- Coral uses [pnpm](https://pnpm.io/) (version 8) as a package manager. Read their official documentation [how to
- Coral uses [pnpm](https://pnpm.io/) (see version in `engines` definition in [package.json](package.json)) as a package manager. Read their official documentation [how to
install](https://pnpm.io/installation) pnpm.

1. navigate to this directory
Expand Down
2 changes: 1 addition & 1 deletion coral/docs/development-with-local-klaw.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Please check out the [proxy README](../proxy/README.md) for more detailed inform
**⚠️ Requirements**

- [node](https://nodejs.org/en/) needs to be installed. See [nvmrc](../.nvmrc) or the `engines` definition in [package.json](../package.json) for version.
- Coral uses [pnpm](https://pnpm.io/) (version 8) as a package manager. Read their official documentation [how to
- Coral uses [pnpm](https://pnpm.io/) (see version in `engines` definition in [package.json](../package.json)) as a package manager. Read their official documentation [how to
install](https://pnpm.io/installation) pnpm.

**Step by step**
Expand Down
2 changes: 1 addition & 1 deletion coral/docs/development-witout-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
**⚠️ Requirements**

- [node](https://nodejs.org/en/) needs to be installed. See [nvmrc](../.nvmrc) or the `engines` definition in [package.json](../package.json) for version.
- Coral uses [pnpm](https://pnpm.io/) (version 8) as a package manager. Read their official documentation [how to
- Coral uses [pnpm](https://pnpm.io/) (see version in `engines` definition in [package.json](../package.json)) as a package manager. Read their official documentation [how to
install](https://pnpm.io/installation) pnpm.

**Step by step**
Expand Down
4 changes: 2 additions & 2 deletions coral/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"license": "Apache-2.0",
"engineStrict": true,
"engines": {
"node": ">=18.0.0 <19.0.0",
"pnpm": ">=8.0.0 <9.0.0",
"node": ">=20.0.0 <21.0.0",
"pnpm": ">=9.0.0 <10.0.0",
"yarn": "❗Please use pnpm to assure a consistent package management.",
"npm": "❗Please use pnpm to assure a consistent package management."
},
Expand Down
Loading

0 comments on commit 225b272

Please sign in to comment.