Skip to content

Commit 7d2a0ed

Browse files
AtmaManirohitgeo
authored andcommitted
v1.2.1 release notes (#131)
* v1.2.1 release notes * minor fixes for v1.2.1
1 parent 12e055a commit 7d2a0ed

File tree

2 files changed

+30
-5
lines changed

2 files changed

+30
-5
lines changed

guide/02 API Overview/Release notes.ipynb

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# What's new in version 1.2.1\n",
8+
"Version `1.2.1` is a primarily a bug fix and documentation update release. Below is a non exhaustive list of bug fixes that were fixed:\n",
9+
"\n",
10+
" - Fix to ensure `DataStoreManager.list()` is updated when user adds, modifies or updates data stores.\n",
11+
" - BUG-000104664 ArcGIS API for Python fails to return the groupProviderName value\n",
12+
" - BUG-000105897 When iterating through items in a nonexistent folder using the ArcGIS Python API, items from the ArcGIS Online root folder are returned.\n",
13+
" - BUG-000105969 In ArcGIS Python API, using `replicas.create()` and `data_format = 'json'` is not able to create output in local directory when out_path is defined.\n",
14+
" - ENH-000106710 Automate the creation of Enterprise groups in ArcGIS Online and Portal using the ArcGIS API for Python.\n",
15+
" - Support for Living Atlas on ArcGIS Enterprise\n",
16+
" - Better error messages\n",
17+
" - BUG-000104664 ArcGIS API for Python fails to return the `groupProviderName` value. \n",
18+
" - BUG-000105270 `returnAttachments` is an invalid parameter and is repeated multiple times in the `arcgis.features.managers` module reference page for the Python API\n",
19+
" - Support for `find_outliers` tool\n",
20+
" - Support to add Item resources as text, URL and archive\n",
21+
" - Geocoding results can be returned as `FeatureSet` objects.\n",
22+
" - Support for publishing hosted tile layers from feature layers\n",
23+
" - Documentation for administering your GIS, administering your ArcGIS servers, building a distributed GIS, customizing your GIS look and feel are added."
24+
]
25+
},
326
{
427
"cell_type": "markdown",
528
"metadata": {},

guide/03 The GIS/customizing-the-look-and-feel-of-your-gis.ipynb

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"outputs": [],
2121
"source": [
2222
"from arcgis.gis import GIS\n",
23-
"gis = GIS(\"https://dev005219.esri.com/portal/\", 'admin', 'esri.agp')"
23+
"gis = GIS(\"portalname.domain.com/webadaptor\", \"username\", \"password\")"
2424
]
2525
},
2626
{
@@ -29,7 +29,7 @@
2929
"source": [
3030
"When you install ArcGIS Enterprise or create a new organization on ArcGIS Online, it would look similar to the image shown below:\n",
3131
"\n",
32-
"![base portal image](http://esri.github.io/arcgis-python-api/notebooks/nbimages/guide_gis_ux_base_portal.PNG)\n",
32+
"![](http://esri.github.io/arcgis-python-api/notebooks/nbimages/guide_gis_ux_default_install_portal.PNG)\n",
3333
"\n",
3434
"The rest of this guide walks you through customizing this GIS. As an example, this guide chooses to customize this GIS for Public Works Department of the city of Los Angeles."
3535
]
@@ -129,7 +129,7 @@
129129
"Once the name and description is set, the portal website looks like below:\n",
130130
"![name and description set](http://esri.github.io/arcgis-python-api/notebooks/nbimages/guide_gis_ux_name_desc.PNG)\n",
131131
"\n",
132-
"**Note**: The name of the GIS shows up in the browser tab name. Description shows up in the gray bar. To update the large 'ArcGIS Enterprise' text, you need to update the banner image as shown below:"
132+
"<blockquote><b>Note</b>: The name of the GIS shows up in the browser tab name. Description shows up in the gray bar. To update the large 'ArcGIS Enterprise' text, you need to update the banner image as shown below:</blockquote>"
133133
]
134134
},
135135
{
@@ -207,7 +207,7 @@
207207
"Refershing the portal website will render the new appearance:\n",
208208
"![logo banner background set](http://esri.github.io/arcgis-python-api/notebooks/nbimages/guide_gis_ux_logo_banner_background.PNG)\n",
209209
"\n",
210-
"<blockquote><b>Note:</b> Refer the help on [configuring home page](http://server.arcgis.com/en/portal/latest/administer/windows/configure-home.htm) to understand the dimensions of the images for best appearance. You can also pass custom HTML code while setting the banner. To learn more about that [refer here](http://server.arcgis.com/en/portal/latest/administer/windows/supported-html.htm).</blockquote>\n",
210+
"<blockquote><b>Note:</b> Refer the help on <a href=\"http://server.arcgis.com/en/portal/latest/administer/windows/configure-home.htm\"> configuring home page</a> to understand the dimensions of the images for best appearance. You can also pass custom HTML code while setting the banner. To learn more about that <a href=\"http://server.arcgis.com/en/portal/latest/administer/windows/supported-html.htm\">refer here</a>.</blockquote>\n",
211211
"\n",
212212
"### Download existing customizations\n",
213213
"You can download the current banner, logo, background values using the corresponding `get` methods"
@@ -373,7 +373,9 @@
373373
{
374374
"cell_type": "code",
375375
"execution_count": 19,
376-
"metadata": {},
376+
"metadata": {
377+
"collapsed": true
378+
},
377379
"outputs": [],
378380
"source": [
379381
"gis.admin.ux.featured_content = {'group':traffic_group}"

0 commit comments

Comments
 (0)