Package Details: intellij-http-client 252.28539.13-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: 2
Popularity: 0.000011
First Submitted: 2023-04-23 12:41 (UTC)
Last Updated: 2026-01-03 15:43 (UTC)

Dependencies (2)

Required by (0)

Sources (2)

Pinned Comments

vitalijr2 commented on 2026-01-03 15:45 (UTC) (edited on 2026-01-03 16:30 (UTC) by vitalijr2)

The version 252.28539.13 is the last which supports JDK 17. Next one 253.28294.334 will require JDK 21.

If you have alredy installed 253.28294.334 to downgrade the version remove the package, remove the cache then install the package again.

For paru:

  • paru -R intellij-http-client
  • rm -rf ~/.cache/paru/clone/intellij-http-client/
  • paru -S intellij-http-client

vitalijr2 commented on 2023-08-30 21:17 (UTC) (edited on 2026-01-03 15:16 (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.

Another source of version numbers are release notes there: https://youtrack.jetbrains.com/articles/IDEA-A-21/IDEA-Latest-Builds-And-Release-Notes

Latest Comments

vitalijr2 commented on 2026-01-03 15:45 (UTC) (edited on 2026-01-03 16:30 (UTC) by vitalijr2)

The version 252.28539.13 is the last which supports JDK 17. Next one 253.28294.334 will require JDK 21.

If you have alredy installed 253.28294.334 to downgrade the version remove the package, remove the cache then install the package again.

For paru:

  • paru -R intellij-http-client
  • rm -rf ~/.cache/paru/clone/intellij-http-client/
  • paru -S intellij-http-client

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 2026-01-03 15:16 (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.

Another source of version numbers are release notes there: https://youtrack.jetbrains.com/articles/IDEA-A-21/IDEA-Latest-Builds-And-Release-Notes

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