Do you accept the patch? Hide the menu bar and disable updates
@j.taala
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) |
Do you accept the patch? Hide the menu bar and disable updates
@j.taala
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\"}}"}
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
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.
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 ;)
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 :)
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
@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?
Thanks @kstolp. Looks like an issue on my side.
@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.
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.:
Edit the
PKGBUILD
file with whatever editor you like: edit line 4 to bepkgver=8.11.1
or whatever version you like, then save and exit out of the editor and runupdpkgsums
will download the file and update sha for file in PKGBUILD so it will install with makepkg