Skip to content

Commit 9373596

Browse files
Copilotgavinbarron
andauthored
Merge remote-tracking branch 'origin/main' into dependabot/npm_and_yarn/minimatch-10.2.4
# Conflicts: # package-lock.json Co-authored-by: gavinbarron <7122716+gavinbarron@users.noreply.github.com>
2 parents 27ab207 + bd0b1ac commit 9373596

1,381 files changed

Lines changed: 99674 additions & 5570 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
trigger: none
2+
pr: none
3+
4+
schedules:
5+
- cron: '0 0 * * *'
6+
displayName: Daily builds
7+
branches:
8+
include:
9+
- main
10+
always: true
11+
12+
resources:
13+
repositories:
14+
- repository: 1ESPipelineTemplates
15+
type: git
16+
name: 1ESPipelineTemplates/1ESPipelineTemplates
17+
ref: refs/tags/release
18+
19+
extends:
20+
template: v1/1ES.Unofficial.PipelineTemplate.yml@1ESPipelineTemplates
21+
parameters:
22+
pool:
23+
name: Azure-Pipelines-1ESPT-ExDShared
24+
os: linux
25+
sdl:
26+
sourceAnalysisPool:
27+
name: Azure-Pipelines-1ESPT-ExDShared
28+
image: windows-2022
29+
os: windows
30+
credscan:
31+
enabled: true
32+
policheck:
33+
enabled: true
34+
binskim:
35+
enabled: true
36+
stages:
37+
- stage: Build
38+
jobs:
39+
- job: Build
40+
displayName: Build TypeScript Beta SDK
41+
steps:
42+
- checkout: self
43+
submodules: recursive
44+
45+
- task: NodeTool@0
46+
displayName: Set up Node.js
47+
inputs:
48+
versionSpec: '20.x'
49+
50+
- script: npm ci
51+
displayName: Install dependencies
52+
workingDirectory: $(Build.SourcesDirectory)
53+
54+
- script: npm run build --workspaces
55+
displayName: Build SDK
56+
workingDirectory: $(Build.SourcesDirectory)
57+
58+
- script: npm test
59+
displayName: Run unit tests
60+
workingDirectory: $(Build.SourcesDirectory)

.github/workflows/auto-merge-dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- name: Dependabot metadata
2121
id: metadata
22-
uses: dependabot/fetch-metadata@v2.5.0
22+
uses: dependabot/fetch-metadata@v3.1.0
2323
with:
2424
github-token: "${{ secrets.GITHUB_TOKEN }}"
2525

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
node-version: [18.x, 20.x, 22.x]
24+
node-version: [20.x, 22.x]
2525
# Single version should work for compilation testing
2626

2727
steps:

.github/workflows/project-auto-add.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- name: Generate token
2020
id: generate_token
21-
uses: actions/create-github-app-token@v2
21+
uses: actions/create-github-app-token@v3
2222
with:
2323
app-id: ${{ secrets.GRAPHBOT_APP_ID }}
2424
private-key: ${{ secrets.GRAPHBOT_APP_PEM }}

.github/workflows/release-please-gha.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323

2424
- name: Generate GitHub App token
2525
id: app-token
26-
uses: actions/create-github-app-token@v2
26+
uses: actions/create-github-app-token@v3
2727
with:
2828
app-id: ${{ vars.RELEASE_PLEASE_TOKEN_PROVIDER_APP_ID }}
2929
private-key: ${{ secrets.RELEASE_PLEASE_TOKEN_PROVIDER_PEM }}
3030

3131
- name: Release Please
32-
uses: googleapis/release-please-action@v4
32+
uses: googleapis/release-please-action@v5
3333
with:
3434
token: ${{ steps.app-token.outputs.token }}
3535
config-file: release-please-config.json

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.0.0-preview.73"
2+
".": "1.0.0-preview.75"
33
}

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.0-preview.75](https://github.com/microsoftgraph/msgraph-beta-sdk-typescript/compare/v1.0.0-preview.74...v1.0.0-preview.75) (2026-05-05)
9+
10+
11+
### Features
12+
13+
* **generation:** update request builders and models ([3c64b71](https://github.com/microsoftgraph/msgraph-beta-sdk-typescript/commit/3c64b7109e9a3ec4650f2f4ed28a92be7fd0ea24))
14+
* **generation:** update request builders and models ([8479e77](https://github.com/microsoftgraph/msgraph-beta-sdk-typescript/commit/8479e773e9a658278644b19963720ddd041ee9b3))
15+
16+
## [1.0.0-preview.74](https://github.com/microsoftgraph/msgraph-beta-sdk-typescript/compare/v1.0.0-preview.73...v1.0.0-preview.74) (2026-04-17)
17+
18+
19+
### Features
20+
21+
* **generation:** update request builders and models ([eb410de](https://github.com/microsoftgraph/msgraph-beta-sdk-typescript/commit/eb410de950556e524fbbabdcf9ebd1796b564808))
22+
823
## [1.0.0-preview.73](https://github.com/microsoftgraph/msgraph-beta-sdk-typescript/compare/v1.0.0-preview.72...v1.0.0-preview.73) (2026-01-22)
924

1025

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "1.0.0-preview.73"
3+
"version": "1.0.0-preview.75"
44
}

0 commit comments

Comments
 (0)