Package Details: intellij-http-client 241.15989.150-1

Git Clone URL: https://aur.archlinux.org/intellij-http-client.git (read-only, click to copy)
Package Base: intellij-http-client
Description: IntelliJ HTTP Client: run HTTP requests from a terminal. The binary is called ijhttp.
Upstream URL: https://www.jetbrains.com/help/idea/http-client-cli.html
Keywords: api curl http httpie hurl ijhttp rest
Licenses: custom
Submitter: vitalijr2
Maintainer: vitalijr2
Last Packager: vitalijr2
Votes: 1
Popularity: 0.000485
First Submitted: 2023-04-23 12:41 (UTC)
Last Updated: 2024-05-13 04:07 (UTC)

Dependencies (2)

Required by (0)

Sources (2)

Pinned Comments

vitalijr2 commented on 2023-08-30 21:17 (UTC) (edited on 2024-01-30 09:17 (UTC) by vitalijr2)

As IntelliJ teams does not provide public changelog or any version info, you can check last version there:

Be careful about versions newer than latest: they are most likely not stable.

Latest Comments

vitalijr2 commented on 2023-11-30 07:49 (UTC)

Since 233.11799.6 you could customize report path (name of directories but not the report file itself). See this comment on IntelliJ JIRA board.

vitalijr2 commented on 2023-08-30 21:17 (UTC) (edited on 2024-01-30 09:17 (UTC) by vitalijr2)

As IntelliJ teams does not provide public changelog or any version info, you can check last version there:

Be careful about versions newer than latest: they are most likely not stable.

vitalijr2 commented on 2023-05-23 06:27 (UTC)

from 231.9011.34-2: with archlinux-java-run you should not set java-runtime-17 and can run it with even 11 and 8.

vitalijr2 commented on 2023-05-05 19:11 (UTC) (edited on 2023-05-11 10:42 (UTC) by vitalijr2)

Hi Serra, sorry for the late reply.

There is the issue IDEA-310148: HTTP Client CLI - JDK Version Issues.

I guess I will not wait since IJ still hasn't responded and make a patch.

Update

The patch was applied and tested: now only on ArchLinux the IntelliJ HTTP Client works with JDK 17 and newer :)

Serra commented on 2023-05-01 09:49 (UTC)

Hi, I think the depends specification in the package is wrong.

When running the client with Java 20 I get: IntelliJ HTTP Client requires Java version 17. But provided Java has version 20.0.1

I took a look at the bash script and found the following hard check:

Checking for correct Java version

JAVA_VERSION=$("$JAVACMD" -version 2>&1 | awk -F '"' '/version/ {print $2}')

if [[ $JAVA_VERSION != 17.* ]] ; then die "IntelliJ HTTP Client requires Java version 17. But provided Java has version $JAVA_VERSION" fi