From c2d06036f22ce61f5a1e3084c8b265d897b7fcab Mon Sep 17 00:00:00 2001 From: Thomas Fitzsimmons Date: Wed, 10 May 2023 17:59:59 -0400 Subject: [PATCH] Bump version to 0.8.3 * url-http-oauth.el: Bump version to 0.8.3. * NEWS: Document 0.8.3 changes. * README: New file. --- NEWS | 36 ++++++++++++++++++++---------------- README | 30 ++++++++++++++++++++++++++++++ url-http-oauth.el | 2 +- 3 files changed, 51 insertions(+), 17 deletions(-) create mode 100644 README diff --git a/NEWS b/NEWS index 8c5cbff..3300a26 100644 --- a/NEWS +++ b/NEWS @@ -1,31 +1,35 @@ GNU Emacs url-http-oauth NEWS -- history of user-visible changes. +* New in url-http-oauth 0.8.3 + +Released 2023-05-10 + +Warning: To deal with OAuth 2.0 refresh tokens, `url-http-oauth' needs +to delete then rewrite entries in netrc files listed in the +`auth-sources' variable. The netrc entry rewriting code is new and +relatively untested so please back up these files before trying OAuth +2.0 support. Entry deletion respects the customization value of +`auth-source-save-behavior'; if it is set to `ask', you will be +prompted before the entry deletion happens. + +** Add url-http-oauth-demo.el. + +** Validate "client-identifier" setting. + +** Autoload public API functions. + +** Fix compatibility for older Emacs versions. + * New in url-http-oauth 0.8.2 Released 2023-05-09 -Warning: To handle refresh tokens, url-http-oauth needs to delete -entries from netrc files listed in the `auth-sources' variable. -Please back up all files listed in the `auth-sources' variable before -trying url-http-oauth 0.8.1 because the netrc entry deletion code is -new and relatively untested. Deletion respects the customization -value of `auth-source-save-behavior'; if it is set to `ask', you will -be prompted before the entry deletion happens. - ** Prevent url-oauth-auth throwing an error in the default case. * New in url-http-oauth 0.8.1 Released 2023-05-08 -Warning: To handle refresh tokens, url-http-oauth needs to delete -entries from netrc files listed in the `auth-sources' variable. -Please back up all files listed in the `auth-sources' variable before -trying url-http-oauth 0.8.1 because the netrc entry deletion code is -new and relatively untested. Deletion respects the customization -value of `auth-source-save-behavior'; if it is set to `ask', you will -be prompted before the entry deletion happens. - ** Introduce ability to delete entries in `auth-sources' netrc files. ** Feature-complete for EWS access. diff --git a/README b/README new file mode 100644 index 0000000..3e2a48d --- /dev/null +++ b/README @@ -0,0 +1,30 @@ +url-http-oauth adds OAuth 2.0 support to Emacs's URL library. + +Most Recent Improvements +------------------------ + +New in url-http-oauth 0.8.3, released 2023-05-10 + +Warning: To deal with OAuth 2.0 refresh tokens, `url-http-oauth' needs +to delete then rewrite entries in netrc files listed in the +`auth-sources' variable. The netrc entry rewriting code is new and +relatively untested so please back up these files before trying OAuth +2.0 support. Entry deletion respects the customization value of +`auth-source-save-behavior'; if it is set to `ask', you will be +prompted before the entry deletion happens. + +** Add url-http-oauth-demo.el. + +** Validate "client-identifier" setting. + +** Autoload public API functions. + +** Fix compatibility for older Emacs versions. + +Quick Start +----------- + +M-x package-install RET url-http-oauth + +Study url-http-oauth-demo.el, which is installed alongside +url-http-oauth.el. diff --git a/url-http-oauth.el b/url-http-oauth.el index 4cda772..a13d292 100644 --- a/url-http-oauth.el +++ b/url-http-oauth.el @@ -3,7 +3,7 @@ ;; Copyright (C) 2023 Free Software Foundation, Inc. ;; Author: Thomas Fitzsimmons -;; Version: 0.8.2 +;; Version: 0.8.3 ;; Keywords: comm, data, processes, hypermedia ;; This program is free software; you can redistribute it and/or modify -- 2.45.2