Skip to content

Commit 60fb182

Browse files
authored
[Schema Registry] Update 3.10 and 2.7 disclaimer (#20982)
* update docs * update core dec
1 parent 9b2a640 commit 60fb182

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

sdk/schemaregistry/azure-schemaregistry-avroserializer/CHANGELOG.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@
1919
- `client` and `group_name` in `AvroSerializer` constructor
2020
- `schema` in `serialize` on `AvroSerializer`
2121

22-
### Bugs Fixed
23-
24-
### Other Changes
25-
2622
## 1.0.0b2 (2021-08-18)
2723

2824
This version and all future versions will require Python 2.7 or Python 3.6+, Python 3.5 is no longer supported.

sdk/schemaregistry/azure-schemaregistry-avroserializer/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Schema Registry schema identifiers and Avro-encoded data.
66

77
[Source code][source_code] | [Package (PyPi)][pypi] | [API reference documentation][api_reference] | [Samples][sr_avro_samples] | [Changelog][change_log]
88

9+
## _Disclaimer_
10+
11+
_Azure SDK Python packages support for Python 2.7 is ending 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_
12+
913
## Getting started
1014

1115
### Install the package

sdk/schemaregistry/azure-schemaregistry-avroserializer/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
'Programming Language :: Python :: 3.7',
6868
'Programming Language :: Python :: 3.8',
6969
'Programming Language :: Python :: 3.9',
70+
'Programming Language :: Python :: 3.10',
7071
'License :: OSI Approved :: MIT License',
7172
],
7273
zip_safe=False,

sdk/schemaregistry/azure-schemaregistry/CHANGELOG.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
## 1.0.0b3 (Unreleased)
44

5-
### Features Added
6-
75
### Breaking Changes
86

97
- `get_schema_id` method on sync and async `SchemaRegistryClient` has been renamed `get_schema_properties`.
@@ -17,11 +15,9 @@
1715
- `location` instance variable in `SchemaProperties` has been removed.
1816
- `Schema` and `SchemaProperties` no longer have positional parameters, as they will not be constructed by the user.
1917

20-
### Bugs Fixed
21-
2218
### Other Changes
2319

24-
- Updated azure-core dependency to 1.17.1.
20+
- Updated azure-core dependency to 1.19.0.
2521
- Removed caching support of registered schemas so requests are sent to the service to register schemas, get schema properties, and get schemas.
2622

2723
## 1.0.0b2 (2021-08-17)

sdk/schemaregistry/azure-schemaregistry/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ schema identifiers rather than full schemas.
66

77
[Source code][source_code] | [Package (PyPi)][pypi] | [API reference documentation][api_reference] | [Samples][sr_samples] | [Changelog][change_log]
88

9+
## _Disclaimer_
10+
11+
_Azure SDK Python packages support for Python 2.7 is ending 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_
12+
913
## Getting started
1014

1115
### Install the package

sdk/schemaregistry/azure-schemaregistry/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,14 @@
6262
'Programming Language :: Python :: 3.7',
6363
'Programming Language :: Python :: 3.8',
6464
'Programming Language :: Python :: 3.9',
65+
'Programming Language :: Python :: 3.10',
6566
'License :: OSI Approved :: MIT License',
6667
],
6768
zip_safe=False,
6869
packages=find_packages(exclude=exclude_packages),
6970
install_requires=[
7071
'msrest>=0.5.0',
71-
'azure-core<2.0.0,>=1.17.1'
72+
'azure-core<2.0.0,>=1.19.0'
7273
],
7374
extras_require={
7475
":python_version<'3.0'": ['azure-nspkg']

shared_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ backports.functools-lru-cache>=1.6.4
169169
#override azure-security-attestation msrest>=0.6.21
170170
#override azure-security-attestation azure-core<2.0.0,>=1.8.2
171171
#override azure-data-tables msrest>=0.6.19
172-
#override azure-schemaregistry azure-core<2.0.0,>=1.17.1
172+
#override azure-schemaregistry azure-core<2.0.0,>=1.19.0
173173
opencensus>=0.6.0
174174
opencensus-ext-threading
175175
opencensus-ext-azure>=0.3.1

0 commit comments

Comments
 (0)