Package Details: postman-bin 11.45.2-1

Git Clone URL: https://aur.archlinux.org/postman-bin.git (read-only, click to copy)
Package Base: postman-bin
Description: Build, test, and document your APIs faster
Upstream URL: https://www.getpostman.com
Licenses: custom
Conflicts: postman
Provides: postman
Submitter: claudiodangelis
Maintainer: j.taala
Last Packager: j.taala
Votes: 298
Popularity: 3.55
First Submitted: 2016-10-21 18:18 (UTC)
Last Updated: 2025-05-15 21:59 (UTC)

Pinned Comments

j.taala commented on 2021-09-17 09:50 (UTC) (edited on 2021-12-21 22:53 (UTC) by j.taala)

@ntfc I was going to go the other way (update to 9.0.1 instead of reverting back to 8.11.1).

P.S. postman are pretty bad at updating their release notes page (even after a new version is out).

If you want to revert to any previous version you can do so by cloning the aur repo and changing the version in the PKGBUILD file and using makepkg to build it (it will download and install that version for you). E.g.:

git clone https://aur.archlinux.org/postman-bin.git
cd postman-bin

Edit the PKGBUILD file with whatever editor you like: edit line 4 to be pkgver=8.11.1 or whatever version you like, then save and exit out of the editor and run

updpkgsums
makepkg -sif

updpkgsums will download the file and update sha for file in PKGBUILD so it will install with makepkg

Latest Comments

1 2 3 4 5 6 .. 22 Next › Last »

puzzle commented on 2025-05-12 20:05 (UTC)

Do you accept the patch? Hide the menu bar and disable updates

@j.taala

puzzle commented on 2025-05-12 19:04 (UTC)

how disable auto update

postman.desktop[29309]: 1747076535151 main error "@postman/app-updater: error",{"errno":-13,"code":"EACCES","syscall":"open","path":"/opt/postman/Postman-1747076534563.tar.gz","name":"Error","message":"EACCES: permission denied, open '/opt/postman/Postman-1747076534563.tar.gz'","stack":"Error: EACCES: permission denied, open '/opt/postman/Postman-1747076534563.tar.gz'"},{"info":"{\"packageName\":\"Postman\",\"eID\":\"Postman-1747076534563\",\"downloadURL\":\"https://dl.pstmn.io/download/version/11.45.0-r250512-1424/linux_64\",\"downloadDirectory\":\"/opt/postman\",\"downloadInfo\":{\"status\":\"DOWNLOAD_ERROR\",\"error\":{\"errno\":-13,\"code\":\"EACCES\",\"syscall\":\"open\",\"path\":\"/opt/postman/Postman-1747076534563.tar.gz\"},\"downloadDirectory\":\"/opt/postman\"}}"}

arseru commented on 2025-02-20 18:06 (UTC)

I finally managed to get v11.32.3-1 working by just cloning the repo locally and making sure node v20 was used:

git clone https://aur.archlinux.org/postman-bin.git && cd postman-bin
nvm install 20 && nvm use 20
makepkg -si

arseru commented on 2025-02-20 17:10 (UTC)

Hey @hbayrousson, thanks for the answer - unfortunately that doesn't work for me either:

$ npm i --force

npm warn using --force Recommended protections disabled.
npm error code E404
npm error 404 Not Found - GET https://registry.npmjs.org/@postman%2fruntime - Not found
npm error 404
npm error 404  '@postman/runtime@^0.4.12' is not in this registry.
npm error 404
npm error 404 Note that you can also install from a
npm error 404 tarball, folder, http url, or git url.

hbayrousson commented on 2024-12-03 08:23 (UTC) (edited on 2024-12-05 07:53 (UTC) by hbayrousson)

Hey @arseru, I had the same issue than you.

It seems it is related with node version that was used to install the node modules and the one that you have on your computer.

Check you have a node version compatible :

node --version should be close to v20.18.0 (you can use nvm for instance)

To have it working :

cd /opt/postman/app/resources/app/
rm -rf ./node_modules/@sentry
npm i --force

and there hopefully it is working !

If someone have a more elegant way without play with the node_modules ;)

arseru commented on 2024-12-02 11:37 (UTC)

Hey @j.taala, thanks for the reply! Unfortunately rebuilding/reinstalling didn't work for me, so I'll stay on the previous version for now, which still works :)

j.taala commented on 2024-12-02 10:54 (UTC)

Hey @arseru,

I did get it to work by uninstalling and then reinstalling.

Try

sudo pacman -R postman-bin

Then reinstall (I use yay), e.g.

yay -S postman-bin

arseru commented on 2024-12-02 10:32 (UTC)

@j.taala I bumped into the same crash error as you, I'm running 11.21.0-1. Did you find a fix for it?

j.taala commented on 2024-11-28 21:53 (UTC)

Thanks @kstolp. Looks like an issue on my side.

kstolp commented on 2024-11-28 19:39 (UTC)

@j.taala I'm on 11.21.0-1, and it's working normally. I'm not seeing the same error as you. Note: I haven't changed any settings related to proxies within Postman, and I build in a clean chroot.