-
-
Notifications
You must be signed in to change notification settings - Fork 5
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
Support on-premise installations #48
Comments
@jneidel I will have a look! thanks for that issue! :) |
just checked the docs - https://confluence.atlassian.com/enterprise/using-personal-access-tokens-1026032365.html - it looks pretty straightforward. Access tokens are used via Basic auth like Personal tokens are used via Bearer token auth. |
Cool 🚀 |
@jneidel it's available in version 0.11.0 https://github.com/mk-5/fjira/releases/tag/0.11.0 CI failed because of chocolatey deployment - the first package version is still in review. / all should be fine except that one :) |
Login works 👍 When opening a board and selecting an assignee to filter by I get 400 and 404 respectively. And scrolling down with arrow and not vim keys is sacrilege ⛪ |
@jneidel I will have a look .. 400, and 404 - I guess some api-version problems. Which version of jira-server do you have? What do you mean by "vim keys"? 🤔 |
okay @jneidel I can also confirm that issue. I tried it with dockerized jira server version (https://hub.docker.com/r/atlassian/jira-software). The fix is on the way |
fix ready in 0.11.2 |
vim keys are the superior hjkl (j/k down/up, h/l left/right). They are widely supported in interactive cli apps. Interactive GNU apps (e.g. less), lf, ranger, newsboat, epr and the namesake vim come to mind right now but there are tons more. I also use them in the browser via a plugin. They allow for much easier use from the home row (touch typing). |
@jneidel mhmm, I have no problem with binding another keys as an "arrows" in parallel to arrows, but I would not say that arrows are sacrilege ⛪. I think it's quite problematic to use |
I'm fully with you - but I cannot see how it should work in a search view. You can use |
For fzf I have tab/shift-tab setup to go through the list, like that I don't need to leave the home row. Yes, I agree, for the fuzzy finder view it does not make sense to use vim keys for scrolling. But there is the issue view which scrolls only with arrow and not vim keys. That's actually the one I meant, sorry for not being more specific 😄 |
Board view works as expected now! (vim keys would also work here) I still get errors on:
|
okay, I'll have a look. I think it's similar issue to that one #35 . For now .. I have no clue, but I guess it could be something similar to the previous issue. Jira Cloud accept project keys like 'ABC' or project id like 123. Jira Server doesn't like like it, and it needs to be numeric id. About vim keys - I can adapt boards view to work with both arrows, and vim keys - it's not a problem |
@jneidel I was not able to reproduce the first issue with 400 error, but I was able to reproduce the second issue with 404 - it should be fixed now. I'm using that simple docker setup to test it: https://github.com/mk-5/fjira/blob/master/scripts/docker-compose-jira-server.yml You can test - the latest version 0.11.5 |
@jneidel okay ... I think I found one small issue already / let's say "typo" 😅 there is missing return after error. This is why there is success message above error one. I will fix it right away - we will see at least what kind of error it is. |
@jneidel okay / there is a new version 0.11.7. I've fixed that incorrect success message issue + I've extended error message a bit.- could be that it will be pretty wide. Would be awesome if you can try it again with new version. I found that docs via google: https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-issues/#api-rest-api-2-issue-issueidorkey-assignee-put according to that documentation this is how do-assignment request looks like:
It's a bit different comparing it to the Jira Cloud: https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-issues/#api-rest-api-2-issue-issueidorkey-assignee-put
fjira is sending I think we will know more after the next fjira version test. |
Our Jira Server version is v9.9.0 |
@jneidel all right - thanks! I will check that version. The weird thing is that |
@jneidel hurray! I reproduced that error using some jira server instance. The fix is on a way |
@jneidel okay - assignment request for on-premise installation is fixed in version 0.11.8 |
Can confirm that assigment works 👍 |
Authentication via API token is only gonna work for cloud hosted instances.
For supporting on-premise installations an Personal Access Token would need to be used. Ref
Also see the SSO for auth edgecase ref
Describe the solution you'd like
Implement auth via PAT
The text was updated successfully, but these errors were encountered: