summaryrefslogtreecommitdiff
path: root/docs/source
diff options
context:
space:
mode:
authorJordonPhillips <phjordon@amazon.com>2017-02-20 15:48:39 -0800
committerJordonPhillips <phjordon@amazon.com>2017-02-20 15:48:39 -0800
commit0c15422dffba1c4364b798f36f66feae7a7ce0cd (patch)
tree1a684da5e2a3a47775d869dd667f919e82c422e0 /docs/source
parentd7253d8f4dc5fa05733422196bfe8f1e09090ba6 (diff)
downloadboto-0c15422dffba1c4364b798f36f66feae7a7ce0cd.tar.gz
Added release notes for 2.46.0
Diffstat (limited to 'docs/source')
-rw-r--r--docs/source/index.rst1
-rw-r--r--docs/source/releasenotes/2.46.0.rst25
2 files changed, 26 insertions, 0 deletions
diff --git a/docs/source/index.rst b/docs/source/index.rst
index 7eb06bea..ca119dc7 100644
--- a/docs/source/index.rst
+++ b/docs/source/index.rst
@@ -152,6 +152,7 @@ Release Notes
.. toctree::
:titlesonly:
+ releasenotes/v2.46.0
releasenotes/v2.45.0
releasenotes/v2.44.0
releasenotes/v2.43.0
diff --git a/docs/source/releasenotes/2.46.0.rst b/docs/source/releasenotes/2.46.0.rst
new file mode 100644
index 00000000..1f2205ef
--- /dev/null
+++ b/docs/source/releasenotes/2.46.0.rst
@@ -0,0 +1,25 @@
+boto v2.46.0
+============
+
+:date: 2017/02/20
+
+This release migrates boto2 to the new endpoint format which is also used by
+boto3. The major advantage this provides is the ability to connect to regions
+that aren't hard-coded in our built in endpoints file without having to go and
+find out what the hostname for that service/region is yourself. No more
+waiting for updates just to get region support!
+
+Since this feature could potentially break assumptions, it is disabled by
+default. You can enable it by using either the ``use_endpoint_heuristics``
+config variable or the ``BOTO_USE_ENDPOINT_HEURISTICS`` environment variable.
+
+Even though we are changing the underlying format of our built in endpoints,
+the endpoints provided by ``endpoints_path`` or ``BOTO_ENDPOINTS`` will
+continue to use the legacy format, so you will not need to update your custom
+endpoints as part of this update.
+
+Changes
+-------
+* Endpoints v2 (:issue:`3675`, :sha:`d7253d8`)
+
+