Skip to content

Commit 7c34263

Browse files
authored
Merge branch 'main' into copilot/engsys-move-esrp-release-to-11
2 parents 22bad5a + 91d3a11 commit 7c34263

File tree

47 files changed

+2369
-757
lines changed

Some content is hidden

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

47 files changed

+2369
-757
lines changed

.github/lsp.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"lspServers": {
3+
"rust": {
4+
"command": "rust-analyzer",
5+
"fileExtensions": {
6+
".rs": "rust"
7+
}
8+
}
9+
}
10+
}

.github/workflows/issue-triage.lock.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/issue-triage.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ network:
2525
- release-assets.githubusercontent.com
2626
- telemetry.enterprise.githubcopilot.com
2727
blocked:
28-
- github.com
2928
- registry.npmjs.org
3029

3130
safe-outputs:

AGENTS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ You are an expert Rust programmer. You write safe, efficient, maintainable, and
161161
- If you have trouble generating safe, efficient, maintainable, and lint-free code, insert a `TODO` comment describing what should happen.
162162
- Do not modify generated code, found in `generated` subdirectories. These files are generated by external tools and should not be edited manually.
163163
- When searching for function call chains in Rust code, be aware that rustfmt often formats method chains across multiple lines like `obj\n .foo()\n .bar()`. Use multi-line search patterns (e.g., `rg` with `-U` flag) or search for individual method names rather than complete call chains.
164+
- When finding references to a symbol for code changes, prefer using LSP (e.g., `findReferences`, `incomingCalls`) over text search for compiler-verified results. Use `workspaceSymbol` or `goToDefinition` to locate the symbol first, then `findReferences` to find all usages.
164165

165166
## Building
166167

Cargo.lock

Lines changed: 56 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ serde_test = "1"
136136
serial_test = "3.3"
137137
sha2 = { version = "0.10" }
138138
syn = { version = "2.0.115", features = ["full"] }
139-
tar = { version = "0.4.44", default-features = false }
139+
tar = { version = "0.4.45", default-features = false }
140140
thiserror = "2.0"
141141
time = { version = "0.3.47", features = [
142142
"serde-well-known",

deny.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ ignore = []
1010
allow = [
1111
"Apache-2.0",
1212
"BSD-3-Clause",
13-
"BSL-1.0",
14-
"ISC",
1513
"MIT",
1614
"MPL-2.0",
1715
# "OpenSSL",

eng/common/pipelines/templates/archetype-typespec-emitter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ extends:
247247
- template: /eng/common/pipelines/templates/steps/create-authenticated-npmrc.yml
248248
parameters:
249249
npmrcPath: $(buildArtifactsPath)/packages/.npmrc
250-
registryUrl: https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js-test-autorest/npm/registry/
250+
registryUrl: https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/
251251

252252
# publish to devops feed
253253
- pwsh: |
@@ -270,7 +270,7 @@ extends:
270270

271271
- ${{ if parameters.PublishPublic }}:
272272
# publish to npmjs.org using ESRP
273-
- task: EsrpRelease@9
273+
- task: EsrpRelease@11
274274
inputs:
275275
displayName: Publish to npmjs.org
276276
ConnectedServiceName: Azure SDK PME Managed Identity

eng/common/pipelines/templates/jobs/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
7171
- ${{ if eq(parameters.Registry, 'https://registry.npmjs.org/') }}:
7272

73-
- task: EsrpRelease@9
73+
- task: EsrpRelease@11
7474
displayName: 'Publish ${{ parameters.ArtifactName }} via ESRP'
7575
condition: and(succeeded(), ne(variables['SkipPublishing'], 'true'))
7676
inputs:

eng/common/spelling/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)