From d44aeb6c34dd7bf4a105841fda1a036c8341c0c6 Mon Sep 17 00:00:00 2001 From: John Yaist Date: Wed, 21 May 2025 13:04:57 -0700 Subject: [PATCH 1/3] update release notes for 241 patch --- guide/02-api-overview/release_notes_241.ipynb | 60 ++++++++++++++++++- 1 file changed, 59 insertions(+), 1 deletion(-) diff --git a/guide/02-api-overview/release_notes_241.ipynb b/guide/02-api-overview/release_notes_241.ipynb index 46cfcf0ad5..2fb20c904a 100644 --- a/guide/02-api-overview/release_notes_241.ipynb +++ b/guide/02-api-overview/release_notes_241.ipynb @@ -1,5 +1,63 @@ { "cells": [ + { + "cell_type": "markdown", + "id": "c1ea9231-7b0b-4e36-aed7-77c1b7a894c7", + "metadata": {}, + "source": [ + "# What's new in version 2.4.1.1" + ] + }, + { + "cell_type": "markdown", + "id": "5f206e81-771b-4684-a769-f5738d08936d", + "metadata": {}, + "source": [ + "#### [`arcgis.gis`](/python/latest/api-reference/arcgis.gis.toc.html)\n", + "* [`ContentManager`](/python/latest/api-reference/arcgis.gis.toc.html#arcgis.gis.ContentManager)\n", + " * [`clone_items()`](/python/latest/api-reference/arcgis.gis.toc.html#arcgis.gis.ContentManager.clone_items)\n", + " * Fixes incorrect output when cloning *text* based items\n", + " * Fixes errors when cloning content with *WKT* spatial references\n", + " * Fixes `_ItemCreateException` when cloning feature layers with editor tracking enabled\n", + " * **BUG-000174140** Fixes failures when cloning *Form* items created in Survey123 Connect with editor tracking enabled\n", + " * **BUG-000175735** Fixes issues where *folder* and *search_existing_items* arguments were not read correctly with *StoryMap* themes\n", + " * **BUG-000174859** Fixes issue when cloning previously cloned ArcGIS Enterprise items to another ArcGIS Enterprise deployment\n", + " * Fixes issue when cloning *Form* items to ArcGIS on Kubernetes deployments\n", + "#### [`arcgis.gis.admin`](python/latest/api-reference/arcgis.gis.admin.html)\n", + "* [`Kubernetes`](/python/latest/api-reference/arcgis.gis.admin.html#kubernetes)\n", + " * [`KubeServiceDirectory`](python/latest/api-reference/arcgis.gis.admin.html#kubeservicedirectory)\n", + " * Fixes `AttributeError` with *folders* property preventing correct return values \n", + "#### [`arcgis.features`](/python/latest/api-reference/arcgis.features.toc.html)\n", + "* [`FeatureLayer`](/python/latest/api-reference/arcgis.features.toc.html#arcgis.features.FeatureLayer)\n", + " * [`query()`](/python/latest/api-reference/arcgis.features.toc.html#arcgis.features.FeatureLayer.query)\n", + " * Fixes infinite looping and incorrect results when using *result_record_count* argument\n", + "#### [`arcgis.apps`](/python/latest/api-reference/arcgis.apps.html)\n", + "* [`arcgis.apps.itemgraph`](/python/latest/api-reference/arcgis.apps.itemgraph.html)\n", + " * [`create_dependency_graph()`](/python/latest/api-reference/arcgis.apps.itemgraph.html#create-dependency-graph)\n", + " * Updates error handling for corrupted content and accommodates larger number of items\n", + " * Updates internal processing to accommodate items which were incorrectly not written to output\n", + " * Fixes incorrect inclusion of items outside an organization for various graphs\n", + " * [`import_list()`](/python/latest/api-reference/arcgis.apps.itemgraph.html#import-list)\n", + " * Fixes error when importing *views* based on previously published feature layers \n", + "* [`arcgis.apps.survey123`](/python/latest/api-reference/arcgis.apps.survey123.html)\n", + " * [`Survey`](/python/latest/api-reference/arcgis.apps.survey123.html#arcgis.apps.survey123.Survey)\n", + " * [`publish()`](/python/latest/api-reference/arcgis.apps.survey123.html#arcgis.apps.survey123.Survey.publish)\n", + " * Fixes `InvalidDefinition` error caused by incorrect definitions for *EditorTrackinInfo* \n", + "#### [`arcgis.learn`](/python/api-reference/arcgis.learn.toc.html)\n", + "* Removed the *SatlasPretrain* models from list of supported backbones for classification and detection models\n", + "[Data Preparation Methods](/python/latest/api-reference/arcgis.learn.toc.html#data-preparation-methods)\n", + " * [`prepare_data()`](/python/latest/api-reference/arcgis.learn.toc.html#arcgis.learn.prepare_data)\n", + " * Remove warnings regarding status for various *torchvision* namespaces\n", + "[Inferencing Methods](/python/latest/api-reference/arcgis.learn.toc.html#inferencing-methods)\n", + " * [`classify_objects`](/python/latest/api-reference/arcgis.learn.toc.html#classify-objects)\n", + " * Fixes error where *threshold* is ignored when using *input_features* argument\n", + " * [`classify_pixels`](/python/latest/api-reference/arcgis.learn.toc.html#classify-pixels)\n", + " * Fixes tool failure because of inability to load *HEDEdgeDetector* model\n", + "[Model Management](/python/latest/api-reference/arcgis.learn.toc.html#model-management)\n", + " * [`train_model()`](/python/latest/api-reference/arcgis.learn.toc.html#arcgis.learn.train_model)\n", + " * Fixes errors and failures to generate output finding learning rate and showing results in Linux environments" + ] + }, { "cell_type": "markdown", "id": "38657f92", @@ -700,7 +758,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.11" + "version": "3.13.2" }, "toc": { "base_numbering": 1, From 9e5d12120a28438a6d14d525c84541a8ae0fdd24 Mon Sep 17 00:00:00 2001 From: John Yaist Date: Wed, 21 May 2025 13:20:42 -0700 Subject: [PATCH 2/3] update bullet point indentation --- guide/02-api-overview/release_notes_241.ipynb | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/guide/02-api-overview/release_notes_241.ipynb b/guide/02-api-overview/release_notes_241.ipynb index 2fb20c904a..fce552955c 100644 --- a/guide/02-api-overview/release_notes_241.ipynb +++ b/guide/02-api-overview/release_notes_241.ipynb @@ -45,17 +45,17 @@ " * Fixes `InvalidDefinition` error caused by incorrect definitions for *EditorTrackinInfo* \n", "#### [`arcgis.learn`](/python/api-reference/arcgis.learn.toc.html)\n", "* Removed the *SatlasPretrain* models from list of supported backbones for classification and detection models\n", - "[Data Preparation Methods](/python/latest/api-reference/arcgis.learn.toc.html#data-preparation-methods)\n", - " * [`prepare_data()`](/python/latest/api-reference/arcgis.learn.toc.html#arcgis.learn.prepare_data)\n", - " * Remove warnings regarding status for various *torchvision* namespaces\n", - "[Inferencing Methods](/python/latest/api-reference/arcgis.learn.toc.html#inferencing-methods)\n", - " * [`classify_objects`](/python/latest/api-reference/arcgis.learn.toc.html#classify-objects)\n", - " * Fixes error where *threshold* is ignored when using *input_features* argument\n", - " * [`classify_pixels`](/python/latest/api-reference/arcgis.learn.toc.html#classify-pixels)\n", - " * Fixes tool failure because of inability to load *HEDEdgeDetector* model\n", - "[Model Management](/python/latest/api-reference/arcgis.learn.toc.html#model-management)\n", - " * [`train_model()`](/python/latest/api-reference/arcgis.learn.toc.html#arcgis.learn.train_model)\n", - " * Fixes errors and failures to generate output finding learning rate and showing results in Linux environments" + "* [Data Preparation Methods](/python/latest/api-reference/arcgis.learn.toc.html#data-preparation-methods)\n", + " * [`prepare_data()`](/python/latest/api-reference/arcgis.learn.toc.html#arcgis.learn.prepare_data)\n", + " * Remove warnings regarding status for various *torchvision* namespaces\n", + "* [Inferencing Methods](/python/latest/api-reference/arcgis.learn.toc.html#inferencing-methods)\n", + " * [`classify_objects`](/python/latest/api-reference/arcgis.learn.toc.html#classify-objects)\n", + " * Fixes error where *threshold* is ignored when using *input_features* argument\n", + " * [`classify_pixels`](/python/latest/api-reference/arcgis.learn.toc.html#classify-pixels)\n", + " * Fixes tool failure because of inability to load *HEDEdgeDetector* model\n", + "* [Model Management](/python/latest/api-reference/arcgis.learn.toc.html#model-management)\n", + " * [`train_model()`](/python/latest/api-reference/arcgis.learn.toc.html#arcgis.learn.train_model)\n", + " * Fixes errors and failures to generate output finding learning rate and showing results in Linux environments" ] }, { From 2c5d4f1907de8bf73f8fa9f9d4842959b012c22c Mon Sep 17 00:00:00 2001 From: John Yaist Date: Wed, 21 May 2025 13:24:39 -0700 Subject: [PATCH 3/3] add parantheses to calls --- guide/02-api-overview/release_notes_241.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/02-api-overview/release_notes_241.ipynb b/guide/02-api-overview/release_notes_241.ipynb index fce552955c..e0238289eb 100644 --- a/guide/02-api-overview/release_notes_241.ipynb +++ b/guide/02-api-overview/release_notes_241.ipynb @@ -49,9 +49,9 @@ " * [`prepare_data()`](/python/latest/api-reference/arcgis.learn.toc.html#arcgis.learn.prepare_data)\n", " * Remove warnings regarding status for various *torchvision* namespaces\n", "* [Inferencing Methods](/python/latest/api-reference/arcgis.learn.toc.html#inferencing-methods)\n", - " * [`classify_objects`](/python/latest/api-reference/arcgis.learn.toc.html#classify-objects)\n", + " * [`classify_objects()`](/python/latest/api-reference/arcgis.learn.toc.html#classify-objects)\n", " * Fixes error where *threshold* is ignored when using *input_features* argument\n", - " * [`classify_pixels`](/python/latest/api-reference/arcgis.learn.toc.html#classify-pixels)\n", + " * [`classify_pixels()`](/python/latest/api-reference/arcgis.learn.toc.html#classify-pixels)\n", " * Fixes tool failure because of inability to load *HEDEdgeDetector* model\n", "* [Model Management](/python/latest/api-reference/arcgis.learn.toc.html#model-management)\n", " * [`train_model()`](/python/latest/api-reference/arcgis.learn.toc.html#arcgis.learn.train_model)\n",