Skip to content

Commit 9e6e792

Browse files
xiangyan99scbedd
andauthored
Conda 2024 09 01 (#36964)
* init 2024-09-01 * data plane update * update * update mgmt * update * update * fix the issue with tools --------- Co-authored-by: Scott Beddall <[email protected]>
1 parent 034f53f commit 9e6e792

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+539
-37
lines changed
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
{% set name = "azure-messaging-webpubsubclient" %}
2+
3+
package:
4+
name: "{{ name|lower }}"
5+
version: {{ environ.get('AZURESDK_CONDA_VERSION', '0.0.0') }}
6+
7+
source:
8+
url: {{ environ.get('WEBPUBSUB_SOURCE_DISTRIBUTION', '') }}
9+
10+
build:
11+
noarch: python
12+
number: 0
13+
script: "{{ PYTHON }} -m pip install . -vv"
14+
15+
requirements:
16+
host:
17+
- cryptography
18+
- azure-core >={{ environ.get('AZURESDK_CONDA_VERSION', '0.0.0') }}
19+
- azure-identity >={{ environ.get('AZURESDK_CONDA_VERSION', '0.0.0') }}
20+
- msrest >={{ environ.get('AZURESDK_CONDA_VERSION', '0.0.0') }}
21+
- pip
22+
- pyjwt
23+
- python
24+
- six
25+
- typing_extensions
26+
- requests-oauthlib >=0.5.0
27+
- aiohttp
28+
- isodate
29+
- websocket-client >=1.6.0
30+
run:
31+
- cryptography
32+
- pyjwt
33+
- python
34+
- six
35+
- azure-core >={{ environ.get('AZURESDK_CONDA_VERSION', '0.0.0') }}
36+
- azure-identity >={{ environ.get('AZURESDK_CONDA_VERSION', '0.0.0') }}
37+
- msrest >={{ environ.get('AZURESDK_CONDA_VERSION', '0.0.0') }}
38+
- typing_extensions
39+
- requests-oauthlib >=0.5.0
40+
- aiohttp
41+
- isodate
42+
- websocket-client >=1.6.0
43+
44+
test:
45+
imports:
46+
- azure.messaging.webpubsubclient
47+
- azure.messaging.webpubsubclient.aio
48+
49+
about:
50+
home: "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/webpubsub/azure-messaging-webpubsubclient"
51+
license: MIT
52+
license_family: MIT
53+
license_file:
54+
summary: "Microsoft Azure WebPubSub Client Library for Python"
55+
description: |
56+
Azure Web PubSub is a cloud service that helps developers easily build real-time features in web applications with publish-subscribe patterns at scale.
57+
Any scenario that requires real-time messaging between server and clients or among clients following publish-subscribe patterns can benefit from using Web PubSub. Developers no longer need to poll the server by sending repeated HTTP requests at intervals, which is wasteful and hard-to-scale.
58+
As shown in the diagram below, your clients establish WebSocket connections with your Web PubSub resource. This client library:
59+
60+
- simplifies managing client connections
61+
- simplifies sending messages among clients
62+
- automatically retries after unintended drops of client connection
63+
- reliably deliveries messages in number and in order after recovering from connection drops
64+
Please see https://aka.ms/azsdk/conda/releases/webpubsubclient for version details.
65+
doc_url:
66+
dev_url:
67+
68+
extra:
69+
recipe-maintainers:
70+
- xiangyan99

conda/conda-recipes/azure-mgmt/meta.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ test:
5555
- azure.mgmt.apimanagement.aio.operations
5656
- azure.mgmt.apimanagement.models
5757
- azure.mgmt.apimanagement.operations
58+
- azure.mgmt.appcomplianceautomation
59+
- azure.mgmt.appcomplianceautomation.aio
60+
- azure.mgmt.appcomplianceautomation.models
5861
- azure.mgmt.appconfiguration
5962
- azure.mgmt.appconfiguration.aio
6063
- azure.mgmt.appconfiguration.models
@@ -641,6 +644,11 @@ test:
641644
- azure.mgmt.operationsmanagement.aio.operations
642645
- azure.mgmt.operationsmanagement.models
643646
- azure.mgmt.operationsmanagement.operations
647+
- azure.mgmt.oracledatabase
648+
- azure.mgmt.oracledatabase.aio
649+
- azure.mgmt.oracledatabase.aio.operations
650+
- azure.mgmt.oracledatabase.models
651+
- azure.mgmt.oracledatabase.operations
644652
- azure.mgmt.orbital
645653
- azure.mgmt.orbital.aio
646654
- azure.mgmt.orbital.aio.operations
@@ -834,6 +842,11 @@ test:
834842
- azure.mgmt.resourceconnector.aio.operations
835843
- azure.mgmt.resourceconnector.models
836844
- azure.mgmt.resourceconnector.operations
845+
- azure.mgmt.scvmm
846+
- azure.mgmt.scvmm.aio
847+
- azure.mgmt.scvmm.aio.operations
848+
- azure.mgmt.scvmm.models
849+
- azure.mgmt.scvmm.operations
837850
- azure.mgmt.search
838851
- azure.mgmt.search.aio
839852
- azure.mgmt.search.aio.operations
@@ -862,6 +875,11 @@ test:
862875
- azure.mgmt.servicefabric.aio.operations
863876
- azure.mgmt.servicefabric.models
864877
- azure.mgmt.servicefabric.operations
878+
- azure.mgmt.servicefabricmanagedclusters
879+
- azure.mgmt.servicefabricmanagedclusters.aio
880+
- azure.mgmt.servicefabricmanagedclusters.aio.operations
881+
- azure.mgmt.servicefabricmanagedclusters.models
882+
- azure.mgmt.servicefabricmanagedclusters.operations
865883
- azure.mgmt.servicebus
866884
- azure.mgmt.servicebus.aio
867885
- azure.mgmt.servicebus.models

conda/conda-recipes/conda_env.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
variables:
2-
AZURESDK_CONDA_VERSION: '2024.06.01'
2+
AZURESDK_CONDA_VERSION: '2024.09.01'

conda/conda-recipes/msal-extensions/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ build:
1414

1515
requirements:
1616
host:
17-
- msal >=2023.06.01
17+
- msal >={{ environ.get('AZURESDK_CONDA_VERSION', '0.0.0') }}
1818
- pip
1919
- portalocker
2020
- python
2121
run:
22-
- msal >=2023.06.01
22+
- msal >={{ environ.get('AZURESDK_CONDA_VERSION', '0.0.0') }}
2323
- portalocker
2424
- pyjwt
2525
- python

conda/conda-releaselogs/azure-ai-contentsafety.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Azure AI Content Safety client library for Python (conda)
22

3+
## 2024.09.01
4+
5+
### Packages included
6+
7+
- azure-ai-contentsafety-1.0.0
8+
39
## 2024.06.01
410

511
### Packages included

conda/conda-releaselogs/azure-ai-formrecognizer.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Azure Form Recognizer client library for Python (conda)
22

3+
## 2024.09.01
4+
5+
### Packages included
6+
7+
- azure-ai-formrecognizer-3.3.3
8+
39
## 2024.06.01
410

511
### Packages included

conda/conda-releaselogs/azure-ai-language-conversations.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Azure Conversational Language Understanding client library for Python (conda)
22

3+
## 2024.09.01
4+
5+
### Packages included
6+
7+
- azure-ai-language-conversations-1.1.0
8+
39
## 2024.06.01
410

511
### Packages included

conda/conda-releaselogs/azure-ai-language-questionanswering.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Azure Cognitive Language Services Question Answering client library for Python (conda)
22

3+
## 2024.09.01
4+
5+
### Packages included
6+
7+
- azure-ai-language-questionanswering-1.1.0
8+
39
## 2024.06.01
410

511
### Packages included

conda/conda-releaselogs/azure-ai-metricsadvisor.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Azure Metrics Advisor client library for Python (conda)
22

3+
## 2024.09.01
4+
5+
### Packages included
6+
7+
- azure-ai-metricsadvisor-1.0.0
8+
39
## 2024.06.01
410

511
### Packages included

conda/conda-releaselogs/azure-ai-ml.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Azure ML Package client library for Python (conda)
22

3+
## 2024.09.01
4+
5+
### Packages included
6+
7+
- azure-ai-ml-1.19.0
8+
39
## 2024.06.01
410

511
### Packages included

0 commit comments

Comments
 (0)