Skip to content

Commit

Permalink
CodeGen from PR 31855 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 0bdfe0561c938d926bc92e4f74863371b79d4638 into 9cc32832a6393dda2f844e49ae4604f224627ef6
  • Loading branch information
SDKAuto committed Dec 12, 2024
1 parent c5cfcb8 commit 4d46c36
Show file tree
Hide file tree
Showing 23 changed files with 1,928 additions and 36 deletions.
77 changes: 48 additions & 29 deletions common/config/rush/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 13 additions & 4 deletions rush.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* This is the main configuration file for Rush.
* For full documentation, please see https://rushjs.io
*/ {
*/{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
/**
* (Required) This specifies the version of the Rush engine to be used in this repo.
Expand Down Expand Up @@ -570,7 +570,9 @@
"projectFolder": "common/tools/dev-tool",
"versionPolicyName": "utility",
// Add Identity to decoupledLocalDependencies so that dev-tool uses the package from npm, avoiding a cyclic dependency.
"decoupledLocalDependencies": ["@azure/identity"]
"decoupledLocalDependencies": [
"@azure/identity"
]
},
{
"packageName": "@azure/eventgrid",
Expand Down Expand Up @@ -610,7 +612,9 @@
{
"packageName": "@azure/identity",
"projectFolder": "sdk/identity/identity",
"decoupledLocalDependencies": ["@azure/keyvault-keys"],
"decoupledLocalDependencies": [
"@azure/keyvault-keys"
],
"versionPolicyName": "client"
},
{
Expand Down Expand Up @@ -2317,6 +2321,11 @@
"packageName": "@azure/arm-connectedcache",
"projectFolder": "sdk/connectedcache/arm-connectedcache",
"versionPolicyName": "management"
},
{
"packageName": "@azure-rest/microsoft-playwright-testing",
"projectFolder": "sdk/playwrighttesting/microsoft-playwright-testing-rest",
"versionPolicyName": "client"
}
]
}
}
8 changes: 5 additions & 3 deletions sdk/playwrighttesting/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# NOTE: Please refer to https://aka.ms/azsdk/engsys/ci-yaml before editing this file.

trigger:
branches:
include:
Expand All @@ -12,21 +12,21 @@ trigger:
exclude:
- sdk/playwrighttesting/ci.mgmt.yml
- sdk/playwrighttesting/arm-playwrighttesting

pr:
branches:
include:
- main
- feature/*
- release/*
- hotfix/*
exclude:
- feature/v4
paths:
include:
- sdk/playwrighttesting/
exclude:
- sdk/playwrighttesting/ci.mgmt.yml
- sdk/playwrighttesting/arm-playwrighttesting

extends:
template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml
parameters:
Expand All @@ -36,3 +36,5 @@ extends:
safeName: azurecreatemicrosoftplaywrighttesting
- name: azure-microsoft-playwright-testing
safeName: azuremicrosoftplaywrighttesting
- name: azure-rest-microsoft-playwright-testing
safeName: azurerestmicrosoftplaywrighttesting
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Release History

## 1.0.0 (2024-12-12)

### Features Added

The package of @azure-rest/microsoft-playwright-testing is using our next generation design principles. To learn more, please refer to our documentation [Quick Start](https://aka.ms/azsdk/js/mgmt/quickstart).
21 changes: 21 additions & 0 deletions sdk/playwrighttesting/microsoft-playwright-testing-rest/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2024 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading

0 comments on commit 4d46c36

Please sign in to comment.