From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adam Porter Subject: Re: [ANN] org-ql 0.4 released Date: Fri, 24 Jan 2020 17:24:09 -0600 Message-ID: <87blqsv3om.fsf@alphapapa.net> References: <87ftg5vf70.fsf@alphapapa.net> <87blqt2ego.fsf@jaunder.io> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:37790) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iv8JJ-0003JG-Aa for emacs-orgmode@gnu.org; Fri, 24 Jan 2020 18:24:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iv8JF-0002Sd-OP for emacs-orgmode@gnu.org; Fri, 24 Jan 2020 18:24:19 -0500 Received: from ciao.gmane.io ([159.69.161.202]:34222) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iv8JF-0002Qp-Co for emacs-orgmode@gnu.org; Fri, 24 Jan 2020 18:24:17 -0500 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1iv8JB-0006Li-SD for emacs-orgmode@gnu.org; Sat, 25 Jan 2020 00:24:13 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane-mx.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org Michael Alan Dorman writes: >> Hi friends, >> >> FYI, I've released org-ql 0.4. It includes many improvements since 0.3. >> >> https://github.com/alphapapa/org-ql > > It would be nice if you could do a stable release of org-super-agenda so > that it could be installed from melpa-stable... Comments like yours lead me to the conclusion that MELPA Stable needs to be abolished. I have been a proponent of the idea of MELPA Stable, so I don't say that lightly. I'll assume that you don't know what the technical issues are and offer an explanation. Briefly: + MELPA Stable is nothing like what one might assume it's intended to be like, e.g. Debian Stable or Debian Testing. It provides none of the benefits that Debian Stable and Testing provide. + MELPA Stable is, just like "regular" MELPA, a "rolling" collection of packages developed without any coordination between maintainers. + The only difference is that MELPA Stable contains whatever versions of packages that their maintainers have decided to tag with a version number, rather than the latest commit to the master branch. These versions are not necessarily better, more stable, more reliable, or more trustworthy than the untagged versions which appear in "regular" MELPA. + Due to the lack of coordination between dependencies and their APIs, version conflicts and breakage are a regular occurrence. For example, if package A depends on package B, and package B makes an API change and tags a new MELPA Stable release, users of package A's MELPA Stable version will see package A cease to work properly until package A, not only commits a fix, but tags a new MELPA Stable version containing the fix. Since packages A and B do not share the same development schedule, it is likely that their tagged-version release schedules will not synchronize well. If you are familiar with Debian, imagine if any upstream changes were automatically pushed to Testing despite any freeze that might be in place. It would be virtually impossible to complete a freeze and make a new stable release, and Testing and Stable would cease to be useful, leaving only Unstable as a usable target. This is the situation between "regular" MELPA and MELPA Stable. For my packages, I tag stable versions for a few reasons: + To help users track changes in the changelog. + To help me separate new, possibly bug-introducing changes from working, debugged code. + To help packagers in systems like Debian and Guix, who package stable versions of some Elisp packages--and who, in so doing, take responsibility for breakage. Now, I sympathize with not wanting to be vulnerable to potential breakage caused by the uncoordinated release of changes to packages on "regular" MELPA. That is a real problem. But the solution is not to use MELPA Stable. The solution is to take charge of what packages you upgrade and when, rather than being at the mercy of whatever commits happen to be in MELPA at the moment. For myself, I commit the ~/.emacs.d/elpa directory to Git with the rest of my config, and I upgrade packages intentionally. If breakage happens, I can easily revert and deal with it later. Other users use alternative package managers, like Borg or Straight or Quelpa, which pull changes directly from Git repos and allow pinning to commits, tags, etc. So, for yourself, I can only recommend that you abandon MELPA Stable and install packages by other means. If you don't have the time or inclination to redo your whole config like that, then just use something like Quelpa to install the current version of org-super-agenda directly. It's a couple lines of use-package in your config, and you can upgrade it manually from then on, e.g. with . As always, your Emacs config is up to you. Now, I'm off to to the discussions on MELPA's tracker to add my vote to abolish MELPA Stable, or to at least allow packages to opt-out of it.