Skip to content

Commit 31a6eeb

Browse files
authored
Merge branch 'main' into feat/request-body-compression
2 parents e320ca1 + 255b504 commit 31a6eeb

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

+1266
-993
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
4+
name: kiota-typescript-branch-protection
5+
description: Branch protection policy for the kiota-typescript repository
6+
resource: repository
7+
configuration:
8+
branchProtectionRules:
9+
10+
- branchNamePattern: main
11+
# This branch pattern applies to the following branches as of 06/09/2023 14:08:44:
12+
# dev
13+
14+
# Specifies whether this branch can be deleted. boolean
15+
allowsDeletions: false
16+
# Specifies whether forced pushes are allowed on this branch. boolean
17+
allowsForcePushes: false
18+
# Specifies whether new commits pushed to the matching branches dismiss pull request review approvals. boolean
19+
dismissStaleReviews: true
20+
# Specifies whether admins can overwrite branch protection. boolean
21+
isAdminEnforced: false
22+
# Indicates whether "Require a pull request before merging" is enabled. boolean
23+
requiresPullRequestBeforeMerging: true
24+
# Specifies the number of pull request reviews before merging. int (0-6). Should be null/empty if PRs are not required
25+
requiredApprovingReviewsCount: 1
26+
# Require review from Code Owners. Requires requiredApprovingReviewsCount. boolean
27+
requireCodeOwnersReview: true
28+
# Are commits required to be signed. boolean. TODO: all contributors must have commit signing on local machines.
29+
requiresCommitSignatures: false
30+
# Are conversations required to be resolved before merging? boolean
31+
requiresConversationResolution: true
32+
# Are merge commits prohibited from being pushed to this branch. boolean
33+
requiresLinearHistory: false
34+
# Required status checks to pass before merging. Values can be any string, but if the value does not correspond to any existing status check, the status check will be stuck on pending for status since nothing exists to push an actual status
35+
requiredStatusChecks:
36+
- license/cla
37+
- check-typescript-version-matrix
38+
# Require branches to be up to date before merging. This should be false since the repo contains autogenerated files. boolean
39+
requiresStrictStatusChecks: false
40+
# Indicates whether there are restrictions on who can push. boolean. Should be set with whoCanPush.
41+
restrictsPushes: false
42+
# Restrict who can dismiss pull request reviews. boolean
43+
restrictsReviewDismissals: false

.github/release-please.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
manifest: true
2+
primaryBranch: main
3+
handleGHRelease: true

.github/workflows/build_test_validate.yml

+75-66
Original file line numberDiff line numberDiff line change
@@ -7,71 +7,80 @@ on:
77
pull_request:
88

99
jobs:
10-
build:
11-
runs-on: ubuntu-latest
12-
environment:
13-
name: build_test
14-
env:
15-
TENANT_ID: ${{ secrets.TENANT_ID }}
16-
strategy:
17-
matrix:
18-
node-version: [18.x, 20.x]
19-
steps:
20-
- uses: actions/checkout@v4
21-
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v4
23-
with:
24-
node-version: ${{ matrix.node-version }}
25-
- run: .\scripts\updateVersion.ps1
26-
shell: pwsh
27-
working-directory: ./
28-
- run: npm ci
29-
- run: npm run build
30-
- run: npm run lint:eslint:loud
31-
- run: npm run prettier:check
32-
- name: Archive dist folders # archive dist folders to verify if they are transpiled correctly and available for publishing
33-
uses: actions/upload-artifact@v4
34-
with:
35-
name: dist folders ${{ matrix.node-version }}
36-
path: |
37-
packages/abstractions/dist
38-
packages/serialization/form/dist
39-
packages/serialization/json/dist
40-
packages/serialization/multipart/dist
41-
packages/serialization/text/dist
42-
packages/http/fetch/dist
43-
packages/authentication/azure/dist
44-
- run: npm run test:integrated
45-
if: ${{env.TENANT_ID != '' }}
46-
env:
47-
TENANT_ID: ${{secrets.tenant_id}}
48-
CLIENT_ID: ${{secrets.client_id}}
49-
CLIENT_SECRET: ${{secrets.client_secret}}
50-
USER_ID: ${{secrets.user_id}}
51-
- run: npm run test
52-
53-
publish-npm:
54-
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, 'auto dependabot')}}
55-
needs: build
56-
environment:
57-
name: production_feed
58-
runs-on: ubuntu-latest
59-
steps:
60-
- uses: actions/checkout@v4
61-
- uses: actions/setup-node@v4
62-
with:
63-
node-version: 20
64-
registry-url: https://registry.npmjs.org/
65-
- run: |
66-
git config --global user.name '${GITHUB_ACTOR}'
67-
git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com'
68-
env:
69-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
70-
GITHUB_ACTOR: ${{ secrets.GIT_USERNAME }}
71-
- run: npm ci
72-
- run: npm run build
73-
- run: npx lerna publish from-package --yes
74-
env:
75-
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
10+
build:
11+
runs-on: ubuntu-latest
12+
environment:
13+
name: build_test
14+
env:
15+
TENANT_ID: ${{ secrets.TENANT_ID }}
16+
strategy:
17+
matrix:
18+
node-version: [18.x, 20.x, 22.x]
19+
steps:
20+
- uses: actions/checkout@v4
21+
- name: Use Node.js ${{ matrix.node-version }}
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: ${{ matrix.node-version }}
25+
- run: npm ci
26+
- run: npm run build
27+
- run: npm run lint:eslint:loud
28+
- run: npm run prettier:check
29+
- name: Archive dist folders # archive dist folders to verify if they are transpiled correctly and available for publishing
30+
uses: actions/upload-artifact@v4
31+
with:
32+
name: dist folders ${{ matrix.node-version }}
33+
path: |
34+
packages/abstractions/dist
35+
packages/serialization/form/dist
36+
packages/serialization/json/dist
37+
packages/serialization/multipart/dist
38+
packages/serialization/text/dist
39+
packages/http/fetch/dist
40+
packages/authentication/azure/dist
41+
- run: npm run test:integrated
42+
if: ${{env.TENANT_ID != '' }}
43+
env:
44+
TENANT_ID: ${{secrets.tenant_id}}
45+
CLIENT_ID: ${{secrets.client_id}}
46+
CLIENT_SECRET: ${{secrets.client_secret}}
47+
USER_ID: ${{secrets.user_id}}
48+
- run: npm run test
7649

50+
publish-npm:
51+
if: "${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && contains(github.event.head_commit.message, 'chore: release main') }}"
52+
needs: build
53+
environment:
54+
name: production_feed
55+
runs-on: ubuntu-latest
56+
steps:
57+
- uses: actions/checkout@v4
58+
- uses: actions/setup-node@v4
59+
with:
60+
node-version: 20
61+
registry-url: https://registry.npmjs.org/
62+
- run: |
63+
git config --global user.name '${GITHUB_ACTOR}'
64+
git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com'
65+
env:
66+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
67+
GITHUB_ACTOR: ${{ secrets.GIT_USERNAME }}
68+
- run: npm ci
69+
- run: npm run build
70+
- run: npx lerna publish from-package --yes
71+
env:
72+
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
7773

74+
# The check-typescript-version-matrix returns success if all matrix jobs in build are successful; otherwise, it returns a failure.
75+
# Use this as a PR status check for GitHub Policy Service instead of individual matrix entry checks.
76+
check-typescript-version-matrix:
77+
runs-on: ubuntu-latest
78+
needs: [build]
79+
if: always()
80+
steps:
81+
- name: All build matrix options are successful
82+
if: ${{ !(contains(needs.*.result, 'failure')) }}
83+
run: exit 0
84+
- name: One or more build matrix options failed
85+
if: ${{ contains(needs.*.result, 'failure') }}
86+
run: exit 1

.release-please-manifest.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"packages/abstractions": "1.0.0-preview.68",
3+
"packages/authentication/azure": "1.0.0-preview.63",
4+
"packages/authentication/spfx": "1.0.0-preview.57",
5+
"packages/bundle": "1.0.0-preview.11",
6+
"packages/http/fetch": "1.0.0-preview.67",
7+
"packages/serialization/form": "1.0.0-preview.56",
8+
"packages/serialization/json": "1.0.0-preview.68",
9+
"packages/serialization/multipart": "1.0.0-preview.46",
10+
"packages/serialization/text": "1.0.0-preview.65"
11+
}

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

CONTRIBUTING.md

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
## Contributing
2+
3+
This project welcomes contributions and suggestions. Most contributions require you to agree to a
4+
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
5+
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
6+
7+
When you submit a pull request, a CLA bot will automatically determine whether you need to provide
8+
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
9+
provided by the bot. You will only need to do this once across all repos using our CLA.
10+
11+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
12+
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
13+
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
14+
15+
## File issues
16+
17+
The best way to get started with a contribution is to start a dialog with the owners of this repository. Sometimes features will be under development or out of scope for this SDK and it's best to check before starting work on contribution.
18+
19+
## Commit message format
20+
21+
To support our automated release process, pull requests are required to follow the [Conventional Commit](https://www.conventionalcommits.org/en/v1.0.0/)
22+
format.
23+
24+
Each commit message consists of a **header**, an optional **body** and an optional **footer**. The header is the first line of the commit and
25+
MUST have a **type** (see below for a list of types) and a **description**. An optional **scope** can be added to the header to give extra context.
26+
27+
```
28+
<type>[optional scope]: <short description>
29+
<BLANK LINE>
30+
<optional body>
31+
<BLANK LINE>
32+
<optional footer(s)>
33+
```
34+
35+
The recommended commit types used are:
36+
37+
- **feat** for feature updates (increments the _minor_ version)
38+
- **fix** for bug fixes (increments the _patch_ version)
39+
- **perf** for performance related changes e.g. optimizing an algorithm
40+
- **refactor** for code refactoring changes
41+
- **test** for test suite updates e.g. adding a test or fixing a test
42+
- **style** for changes that don't affect the meaning of code. e.g. formatting changes
43+
- **docs** for documentation updates e.g. ReadMe update or code documentation updates
44+
- **build** for build system changes (gradle updates, external dependency updates)
45+
- **ci** for CI configuration file changes e.g. updating a pipeline
46+
- **chore** for miscallaneous non-sdk changesin the repo e.g. removing an unused file
47+
48+
Adding a footer with the prefix **BREAKING CHANGE:** will cause an increment of the _major_ version.

0 commit comments

Comments
 (0)