Skip to content

Commit cd45b2d

Browse files
committed
Merge 'upstream/master' into jy-gax-deprecation
2 parents 3d547af + bfb491f commit cd45b2d

22 files changed

+10140
-7144
lines changed

.github/workflows/DockerBuild.LambdaBaseImage.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
version:
88
description: "Version of ArcGIS API for Python to install in the image"
99
type: string
10-
default: "2.3.0"
10+
default: "2.3.1"
1111
python_version:
1212
description: "Python version to base image on"
1313
type: string
@@ -28,22 +28,22 @@ jobs:
2828

2929
steps:
3030
- name: Checkout code
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232

3333
- name: Set up Docker Buildx
3434
id: buildx
35-
uses: docker/setup-buildx-action@v2
35+
uses: docker/setup-buildx-action@v3
3636

3737
- name: Login to Github Packages
38-
uses: docker/login-action@v2
38+
uses: docker/login-action@v3
3939
with:
4040
registry: ghcr.io
4141
username: ${{ github.actor }}
4242
password: ${{ secrets.GITHUB_TOKEN }}
4343

4444
- name: Docker meta
4545
id: meta
46-
uses: docker/metadata-action@v4
46+
uses: docker/metadata-action@v5
4747
with:
4848
images: |
4949
ghcr.io/esri/arcgis-python-api-lambda
@@ -55,7 +55,7 @@ jobs:
5555
5656
- id: docker_build
5757
name: Build image and push to GitHub Container Registry
58-
uses: docker/build-push-action@v4
58+
uses: docker/build-push-action@v6
5959
with:
6060
# relative path to the place where source code with Dockerfile is located
6161
context: .

.github/workflows/DockerBuild.NotebookImage.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ on:
77
version:
88
description: "Version of ArcGIS API for Python to install in the image"
99
type: string
10-
default: "2.2.0"
10+
default: "2.3.1"
1111
python_version:
1212
description: "Python version to base image on"
1313
type: string
14-
default: "3.9"
14+
default: "3.11"
1515
is_latest_release:
1616
description: "Version of ArcGIS API for Python is Latest current release"
1717
type: boolean
@@ -32,18 +32,18 @@ jobs:
3232

3333
- name: Set up Docker Buildx
3434
id: buildx
35-
uses: docker/setup-buildx-action@v2
35+
uses: docker/setup-buildx-action@v3
3636

3737
- name: Login to Github Packages
38-
uses: docker/login-action@v2
38+
uses: docker/login-action@v3
3939
with:
4040
registry: ghcr.io
4141
username: ${{ github.actor }}
4242
password: ${{ secrets.GITHUB_TOKEN }}
4343

4444
- name: Docker meta
4545
id: meta
46-
uses: docker/metadata-action@v4
46+
uses: docker/metadata-action@v5
4747
with:
4848
images: |
4949
ghcr.io/esri/arcgis-python-api-notebook
@@ -55,7 +55,7 @@ jobs:
5555
5656
- id: docker_build
5757
name: Build image and push to GitHub Container Registry
58-
uses: docker/build-push-action@v4
58+
uses: docker/build-push-action@v6
5959
with:
6060
# relative path to the place where source code with Dockerfile is located
6161
context: ./docker

docker/LambdaBaseImage.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ LABEL org.opencontainers.image.source=https://github.com/esri/arcgis-python-api
1111
# install dependencies, then clean yum cache
1212
RUN yum -y install gcc gcc-c++ krb5-devel krb5-server krb5-libs && yum clean all && rm -rf /var/cache/yum
1313
# install arcgis
14-
ARG arcgis_version="2.3.0"
14+
ARG arcgis_version="2.3.1"
1515
# adding .* ensures the latest patch version is installed
1616
RUN pip3 install "arcgis==${arcgis_version}.*" --target "${LAMBDA_TASK_ROOT}" && rm -rf /root/.cache/pip
1717
# set entrypoint to app.py handler method

docker/NotebookImage.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
ARG python_version="3.9"
2-
FROM jupyter/base-notebook:python-${python_version}
1+
ARG python_version="3.11"
2+
FROM quay.io/jupyter/base-notebook:python-${python_version}
33

44
ARG python_version
5-
ARG arcgis_version="2.2.0"
5+
ARG arcgis_version="2.3.1"
66
ARG sampleslink="https://github.com/Esri/arcgis-python-api/releases/download/v${arcgis_version}/samples.zip"
77
ARG githubfolder="arcgis-python-api"
88
ENV DOCKER_STACKS_JUPYTER_CMD="notebook"

guide/02-api-overview/release_notes_230.ipynb

Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,49 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "a7a42416",
6+
"metadata": {},
7+
"source": [
8+
"# What's new in version 2.3.0.3\n",
9+
"* Updates internal dependency version for _requests_ library"
10+
]
11+
},
12+
{
13+
"cell_type": "markdown",
14+
"id": "d44e1341",
15+
"metadata": {},
16+
"source": [
17+
"# What's new in version 2.3.0.2\n",
18+
"#### [`arcgis.gis`](/python/api-reference/arcgis.gis.toc.html)\n",
19+
"* Removed incorrect messaging regarding deprecations\n",
20+
"* [`ContentManager`](/python/api-reference/arcgis.gis.toc.html#contentmanager)\n",
21+
" * [`clone_items()`](/python/api-reference/arcgis.gis.toc.html#arcgis.gis.ContentManager.clone_items)\n",
22+
" * Fixes error and messaging with cloning Dashboard items when using the _item_mapping_ argument"
23+
]
24+
},
25+
{
26+
"cell_type": "markdown",
27+
"id": "3da5d7d1",
28+
"metadata": {},
29+
"source": [
30+
"# What's new in version 2.3.0.1\n",
31+
"\n",
32+
"#### [`arcgis.gis`](/python/api-reference/arcgis.gis.toc.html)\n",
33+
"* [`ContentManager`](/python/api-reference/arcgis.gis.toc.html#contentmanager)\n",
34+
" * [`clone_items()`](/python/api-reference/arcgis.gis.toc.html#arcgis.gis.ContentManager.clone_items)\n",
35+
" * Fixes error resulting from supporting views structure with cloning Survey123 Form items\n",
36+
" \n",
37+
"#### [`arcgis.learn`](/python/api-reference/arcgis.learn.toc.html)\n",
38+
"* [Object Classification Models](/python/api-reference/arcgis.learn.toc.html#object-classification-models)\n",
39+
" * [`FeatureClassifier`](/python/api-reference/arcgis.learn.toc.html#featureclassifier)\n",
40+
" * [`fit()`](/python/api-reference/arcgis.learn.toc.html#arcgis.learn.FeatureClassifier.fit)\n",
41+
" * Fixes `KeyError` when inferencing with a model using a _tensorflow_ backend\n",
42+
"* [Object Tracking Models](/python/api-reference/arcgis.learn.toc.html#object-tracking-models)\n",
43+
" * [`SiamMask`](/python/api-reference/arcgis.learn.toc.html#siammask)\n",
44+
" * Fixes load failures to full motion video in ArcGIS Pro with saved models "
45+
]
46+
},
347
{
448
"cell_type": "markdown",
549
"id": "c34e7960",
@@ -837,7 +881,7 @@
837881
"name": "python",
838882
"nbconvert_exporter": "python",
839883
"pygments_lexer": "ipython3",
840-
"version": "3.9.17"
884+
"version": "3.11.9"
841885
},
842886
"toc": {
843887
"base_numbering": 1,

0 commit comments

Comments
 (0)