Skip to content

Commit

Permalink
[Schema Registry] Update 3.10 and 2.7 disclaimer (#20982)
Browse files Browse the repository at this point in the history
* update docs

* update core dec
  • Loading branch information
yunhaoling committed Oct 1, 2021
1 parent 9b2a640 commit 60fb182
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@
- `client` and `group_name` in `AvroSerializer` constructor
- `schema` in `serialize` on `AvroSerializer`

### Bugs Fixed

### Other Changes

## 1.0.0b2 (2021-08-18)

This version and all future versions will require Python 2.7 or Python 3.6+, Python 3.5 is no longer supported.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Schema Registry schema identifiers and Avro-encoded data.

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

## _Disclaimer_

_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_

## Getting started

### Install the package
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: MIT License',
],
zip_safe=False,
Expand Down
6 changes: 1 addition & 5 deletions sdk/schemaregistry/azure-schemaregistry/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

## 1.0.0b3 (Unreleased)

### Features Added

### Breaking Changes

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

### Bugs Fixed

### Other Changes

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

## 1.0.0b2 (2021-08-17)
Expand Down
4 changes: 4 additions & 0 deletions sdk/schemaregistry/azure-schemaregistry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ schema identifiers rather than full schemas.

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

## _Disclaimer_

_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_

## Getting started

### Install the package
Expand Down
3 changes: 2 additions & 1 deletion sdk/schemaregistry/azure-schemaregistry/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,14 @@
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: MIT License',
],
zip_safe=False,
packages=find_packages(exclude=exclude_packages),
install_requires=[
'msrest>=0.5.0',
'azure-core<2.0.0,>=1.17.1'
'azure-core<2.0.0,>=1.19.0'
],
extras_require={
":python_version<'3.0'": ['azure-nspkg']
Expand Down
2 changes: 1 addition & 1 deletion shared_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ backports.functools-lru-cache>=1.6.4
#override azure-security-attestation msrest>=0.6.21
#override azure-security-attestation azure-core<2.0.0,>=1.8.2
#override azure-data-tables msrest>=0.6.19
#override azure-schemaregistry azure-core<2.0.0,>=1.17.1
#override azure-schemaregistry azure-core<2.0.0,>=1.19.0
opencensus>=0.6.0
opencensus-ext-threading
opencensus-ext-azure>=0.3.1
Expand Down

0 comments on commit 60fb182

Please sign in to comment.