microsoft_kiota_faraday 0.15.0 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/CODEOWNERS +1 -1
- data/.github/copilot-instructions.md +25 -0
- data/.github/policies/kiota-http-ruby-branch-protection.yml +40 -0
- data/.github/policies/resourceManagement.yml +4 -4
- data/.github/release-please.yml +3 -0
- data/.github/workflows/auto-merge-dependabot.yml +2 -1
- data/.github/workflows/code-ql.yml +5 -4
- data/.github/workflows/conflicting-pr-label.yml +1 -0
- data/.github/workflows/release-please-gha.yml +49 -0
- data/.github/workflows/release.yml +7 -19
- data/.github/workflows/ruby.yml +18 -4
- data/.release-please-manifest.json +3 -0
- data/CHANGELOG.md +14 -0
- data/CODE_OF_CONDUCT.md +1 -0
- data/CONTRIBUTING.md +56 -0
- data/lib/microsoft_kiota_faraday/version.rb +1 -1
- data/microsoft_kiota_faraday.gemspec +2 -2
- data/release-please-config.json +15 -0
- metadata +21 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cbcc1ea965a89aa18a991692a546198ab56436ccc5c53211842a80752eb0a5a9
|
|
4
|
+
data.tar.gz: fc7e290e83f6aac388785fca00e907c6c943525aa666d4ca75985b4767a398ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e4c4a8231fc7fc39dda165c19811f1f9f66660a9f892a8594c8c863257f22075713a548ef9d355193dbdc1d444bd2f0359d262b800905c6fab1eb5dcc1ed3a9d
|
|
7
|
+
data.tar.gz: 274059939496b3c79a0cabcf0263691923a735459ce0e6dbb9e7e8d6cd4d50a6a810e08b70d3718330e241810917617ff9f7bc3189c759faffc52e49a3e024d4
|
data/.github/CODEOWNERS
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
* @
|
|
1
|
+
* @microsoft/kiota-write
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Copilot Instructions for Kiota HTTP Ruby
|
|
2
|
+
|
|
3
|
+
## Commit Messages
|
|
4
|
+
|
|
5
|
+
This repository uses [Conventional Commits](https://www.conventionalcommits.org/) and [release-please](https://github.com/googleapis/release-please) for automated releases.
|
|
6
|
+
|
|
7
|
+
All commit messages **must** follow the format:
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
<type>(<optional scope>): <description>
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Choosing the right type
|
|
14
|
+
|
|
15
|
+
- `fix:` for bug fixes (bumps patch version)
|
|
16
|
+
- `feat:` for new features (bumps minor version)
|
|
17
|
+
- Append `!` after the type for breaking changes, e.g. `feat!:` or `fix!:` (bumps minor version while pre-1.0)
|
|
18
|
+
- `docs:`, `chore:`, `ci:`, `test:`, `refactor:` for non-release changes
|
|
19
|
+
|
|
20
|
+
### Rules
|
|
21
|
+
|
|
22
|
+
- Use lowercase for the type and description
|
|
23
|
+
- Do not end the description with a period
|
|
24
|
+
- Use the imperative mood in the description (e.g. "add support for" not "added support for")
|
|
25
|
+
- When a PR is squash-merged, the PR title becomes the commit message — ensure PR titles follow this format
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Copyright (c) Microsoft Corporation.
|
|
2
|
+
# Licensed under the MIT License.
|
|
3
|
+
|
|
4
|
+
name: kiota-http-ruby-branch-protection
|
|
5
|
+
description: Branch protection policy for the kiota-http-ruby repository
|
|
6
|
+
resource: repository
|
|
7
|
+
configuration:
|
|
8
|
+
branchProtectionRules:
|
|
9
|
+
|
|
10
|
+
- branchNamePattern: main
|
|
11
|
+
# Specifies whether this branch can be deleted. boolean
|
|
12
|
+
allowsDeletions: false
|
|
13
|
+
# Specifies whether forced pushes are allowed on this branch. boolean
|
|
14
|
+
allowsForcePushes: false
|
|
15
|
+
# Specifies whether new commits pushed to the matching branches dismiss pull request review approvals. boolean
|
|
16
|
+
dismissStaleReviews: true
|
|
17
|
+
# Specifies whether admins can overwrite branch protection. boolean
|
|
18
|
+
isAdminEnforced: false
|
|
19
|
+
# Indicates whether "Require a pull request before merging" is enabled. boolean
|
|
20
|
+
requiresPullRequestBeforeMerging: true
|
|
21
|
+
# Specifies the number of pull request reviews before merging. int (0-6). Should be null/empty if PRs are not required
|
|
22
|
+
requiredApprovingReviewsCount: 1
|
|
23
|
+
# Require review from Code Owners. Requires requiredApprovingReviewsCount. boolean
|
|
24
|
+
requireCodeOwnersReview: true
|
|
25
|
+
# Are commits required to be signed. boolean
|
|
26
|
+
requiresCommitSignatures: false
|
|
27
|
+
# Are conversations required to be resolved before merging? boolean
|
|
28
|
+
requiresConversationResolution: true
|
|
29
|
+
# Are merge commits prohibited from being pushed to this branch. boolean
|
|
30
|
+
requiresLinearHistory: false
|
|
31
|
+
# Required status checks to pass before merging
|
|
32
|
+
requiredStatusChecks:
|
|
33
|
+
- license/cla
|
|
34
|
+
- check-ruby-version-matrix
|
|
35
|
+
# Require branches to be up to date before merging. boolean
|
|
36
|
+
requiresStrictStatusChecks: false
|
|
37
|
+
# Indicates whether there are restrictions on who can push. boolean
|
|
38
|
+
restrictsPushes: false
|
|
39
|
+
# Restrict who can dismiss pull request reviews. boolean
|
|
40
|
+
restrictsReviewDismissals: false
|
|
@@ -16,7 +16,7 @@ configuration:
|
|
|
16
16
|
- isIssue
|
|
17
17
|
- isOpen
|
|
18
18
|
- hasLabel:
|
|
19
|
-
label: '
|
|
19
|
+
label: 'status:waiting-for-author-feedback'
|
|
20
20
|
- hasLabel:
|
|
21
21
|
label: 'Status: No Recent Activity'
|
|
22
22
|
- noActivitySince:
|
|
@@ -31,7 +31,7 @@ configuration:
|
|
|
31
31
|
- isIssue
|
|
32
32
|
- isOpen
|
|
33
33
|
- hasLabel:
|
|
34
|
-
label: '
|
|
34
|
+
label: 'status:waiting-for-author-feedback'
|
|
35
35
|
- noActivitySince:
|
|
36
36
|
days: 4
|
|
37
37
|
- isNotLabeledWith:
|
|
@@ -64,13 +64,13 @@ configuration:
|
|
|
64
64
|
- isActivitySender:
|
|
65
65
|
issueAuthor: True
|
|
66
66
|
- hasLabel:
|
|
67
|
-
label: '
|
|
67
|
+
label: 'status:waiting-for-author-feedback'
|
|
68
68
|
- isOpen
|
|
69
69
|
then:
|
|
70
70
|
- addLabel:
|
|
71
71
|
label: 'Needs: Attention :wave:'
|
|
72
72
|
- removeLabel:
|
|
73
|
-
label: '
|
|
73
|
+
label: 'status:waiting-for-author-feedback'
|
|
74
74
|
description:
|
|
75
75
|
- if:
|
|
76
76
|
- payloadType: Issues
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
name: Auto-merge dependabot updates
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
|
+
workflow_dispatch:
|
|
4
5
|
pull_request:
|
|
5
6
|
branches: [ main ]
|
|
6
7
|
|
|
@@ -19,7 +20,7 @@ jobs:
|
|
|
19
20
|
steps:
|
|
20
21
|
- name: Dependabot metadata
|
|
21
22
|
id: metadata
|
|
22
|
-
uses: dependabot/fetch-metadata@
|
|
23
|
+
uses: dependabot/fetch-metadata@v3.1.0
|
|
23
24
|
with:
|
|
24
25
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
25
26
|
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
name: "CodeQL"
|
|
13
13
|
|
|
14
14
|
on:
|
|
15
|
+
workflow_dispatch:
|
|
15
16
|
push:
|
|
16
17
|
branches: [ main ]
|
|
17
18
|
pull_request:
|
|
@@ -40,11 +41,11 @@ jobs:
|
|
|
40
41
|
|
|
41
42
|
steps:
|
|
42
43
|
- name: Checkout repository
|
|
43
|
-
uses: actions/checkout@
|
|
44
|
+
uses: actions/checkout@v6
|
|
44
45
|
|
|
45
46
|
# Initializes the CodeQL tools for scanning.
|
|
46
47
|
- name: Initialize CodeQL
|
|
47
|
-
uses: github/codeql-action/init@
|
|
48
|
+
uses: github/codeql-action/init@v4
|
|
48
49
|
with:
|
|
49
50
|
languages: ${{ matrix.language }}
|
|
50
51
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
@@ -58,7 +59,7 @@ jobs:
|
|
|
58
59
|
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
|
|
59
60
|
# If this step fails, then you should remove it and run the build manually (see below)
|
|
60
61
|
- name: Autobuild
|
|
61
|
-
uses: github/codeql-action/autobuild@
|
|
62
|
+
uses: github/codeql-action/autobuild@v4
|
|
62
63
|
|
|
63
64
|
# ℹ️ Command-line programs to run using the OS shell.
|
|
64
65
|
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
|
@@ -71,6 +72,6 @@ jobs:
|
|
|
71
72
|
# ./location_of_script_within_repo/buildscript.sh
|
|
72
73
|
|
|
73
74
|
- name: Perform CodeQL Analysis
|
|
74
|
-
uses: github/codeql-action/analyze@
|
|
75
|
+
uses: github/codeql-action/analyze@v4
|
|
75
76
|
with:
|
|
76
77
|
category: "/language:${{matrix.language}}"
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
## -----------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
+
# Licensed under the MIT License. See LICENSE.txt in the project root for license information.
|
|
4
|
+
## -----------------------------------------------------------------------------
|
|
5
|
+
#
|
|
6
|
+
# Summary:
|
|
7
|
+
# This GitHub Actions workflow automates the release process using Release Please.
|
|
8
|
+
# It triggers on pushes to the main branch, generates a GitHub App token using organization
|
|
9
|
+
# variables and secrets, and then runs the release-please-action to manage versioning and changelogs.
|
|
10
|
+
|
|
11
|
+
name: Release Please
|
|
12
|
+
|
|
13
|
+
on:
|
|
14
|
+
push:
|
|
15
|
+
branches:
|
|
16
|
+
- main
|
|
17
|
+
workflow_dispatch:
|
|
18
|
+
|
|
19
|
+
permissions:
|
|
20
|
+
contents: read
|
|
21
|
+
|
|
22
|
+
jobs:
|
|
23
|
+
check-secret:
|
|
24
|
+
runs-on: ubuntu-latest
|
|
25
|
+
outputs:
|
|
26
|
+
has-token: ${{ steps.check.outputs.has-token }}
|
|
27
|
+
steps:
|
|
28
|
+
- id: check
|
|
29
|
+
run: echo "has-token=${{ secrets.RELEASE_PLEASE_TOKEN_PROVIDER_PEM != '' }}" >> $GITHUB_OUTPUT
|
|
30
|
+
release:
|
|
31
|
+
needs: check-secret
|
|
32
|
+
if: needs.check-secret.outputs.has-token == 'true'
|
|
33
|
+
runs-on: ubuntu-latest
|
|
34
|
+
steps:
|
|
35
|
+
- uses: actions/checkout@v6
|
|
36
|
+
|
|
37
|
+
- name: Generate GitHub App token
|
|
38
|
+
id: app-token
|
|
39
|
+
uses: actions/create-github-app-token@v3
|
|
40
|
+
with:
|
|
41
|
+
client-id: ${{ vars.RELEASE_PLEASE_TOKEN_PROVIDER_APP_ID }}
|
|
42
|
+
private-key: ${{ secrets.RELEASE_PLEASE_TOKEN_PROVIDER_PEM }}
|
|
43
|
+
|
|
44
|
+
- name: Release Please
|
|
45
|
+
uses: googleapis/release-please-action@v5
|
|
46
|
+
with:
|
|
47
|
+
token: ${{ steps.app-token.outputs.token }}
|
|
48
|
+
config-file: release-please-config.json
|
|
49
|
+
manifest-file: .release-please-manifest.json
|
|
@@ -1,38 +1,26 @@
|
|
|
1
|
-
name:
|
|
1
|
+
name: Publish
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
5
|
tags:
|
|
6
6
|
- "v[0-9]+.[0-9]+.[0-9]+"
|
|
7
|
-
workflow_dispatch:
|
|
8
7
|
|
|
9
8
|
permissions:
|
|
10
|
-
contents:
|
|
9
|
+
contents: read
|
|
11
10
|
|
|
12
11
|
jobs:
|
|
13
|
-
Git_Release:
|
|
14
|
-
runs-on: ubuntu-latest
|
|
15
|
-
steps:
|
|
16
|
-
- uses: actions/checkout@v4
|
|
17
|
-
- name: Github Release
|
|
18
|
-
uses: anton-yurchenko/git-release@v6.0
|
|
19
|
-
env:
|
|
20
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}
|
|
21
|
-
DRAFT_RELEASE: "false"
|
|
22
|
-
PRE_RELEASE: "false"
|
|
23
|
-
CHANGELOG_FILE: "CHANGELOG.md"
|
|
24
|
-
ALLOW_EMPTY_CHANGELOG: "true"
|
|
25
|
-
|
|
26
12
|
deploy_prod:
|
|
27
13
|
environment:
|
|
28
14
|
name: production_feeds
|
|
29
15
|
runs-on: ubuntu-latest
|
|
30
16
|
steps:
|
|
31
|
-
- uses: actions/checkout@
|
|
17
|
+
- uses: actions/checkout@v6
|
|
18
|
+
with:
|
|
19
|
+
ref: ${{ github.ref }}
|
|
32
20
|
- uses: ruby/setup-ruby@v1
|
|
33
21
|
with:
|
|
34
|
-
ruby-version: '3.
|
|
35
|
-
bundler-cache: true
|
|
22
|
+
ruby-version: '3.4'
|
|
23
|
+
bundler-cache: true
|
|
36
24
|
bundler: 'latest'
|
|
37
25
|
cache-version: 1
|
|
38
26
|
- run: bundle exec rake
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -12,10 +12,10 @@ jobs:
|
|
|
12
12
|
fail-fast: false
|
|
13
13
|
matrix:
|
|
14
14
|
os: [ubuntu-latest, macos-latest]
|
|
15
|
-
ruby-version: ['3.
|
|
15
|
+
ruby-version: ['3.3', '3.4', '4.0', head, jruby, jruby-head, truffleruby, truffleruby-head]
|
|
16
16
|
runs-on: ${{ matrix.os }}
|
|
17
17
|
steps:
|
|
18
|
-
- uses: actions/checkout@
|
|
18
|
+
- uses: actions/checkout@v6
|
|
19
19
|
- uses: ruby/setup-ruby@v1
|
|
20
20
|
with:
|
|
21
21
|
ruby-version: ${{ matrix.ruby-version }}
|
|
@@ -25,10 +25,24 @@ jobs:
|
|
|
25
25
|
- name: Run tests
|
|
26
26
|
run: bundle exec rake
|
|
27
27
|
- name: Upload artifacts for ruby version 3 and ubuntu
|
|
28
|
-
if: ${{ matrix.os == 'ubuntu-latest' && matrix.ruby-version == '3.
|
|
29
|
-
uses: actions/upload-artifact@
|
|
28
|
+
if: ${{ matrix.os == 'ubuntu-latest' && matrix.ruby-version == '3.4'}}
|
|
29
|
+
uses: actions/upload-artifact@v7
|
|
30
30
|
with:
|
|
31
31
|
name: drop
|
|
32
32
|
path: |
|
|
33
33
|
./Gemfile.lock
|
|
34
34
|
./README.md
|
|
35
|
+
|
|
36
|
+
# The check-ruby-version-matrix returns success if all matrix jobs in build are successful; otherwise, it returns a failure.
|
|
37
|
+
# Use this as a PR status check for GitHub Policy Service instead of individual matrix entry checks.
|
|
38
|
+
check-ruby-version-matrix:
|
|
39
|
+
runs-on: ubuntu-latest
|
|
40
|
+
needs: [build]
|
|
41
|
+
if: always()
|
|
42
|
+
steps:
|
|
43
|
+
- name: All build matrix options are successful
|
|
44
|
+
if: ${{ !(contains(needs.*.result, 'failure')) }}
|
|
45
|
+
run: exit 0
|
|
46
|
+
- name: One or more build matrix options failed
|
|
47
|
+
if: ${{ contains(needs.*.result, 'failure') }}
|
|
48
|
+
run: exit 1
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.16.0](https://github.com/microsoft/kiota-http-ruby/compare/v0.15.0...v0.16.0) (2026-04-23)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* upgrade ruby CI matrix to 3.3, 3.4 and 4.0 ([7bf4976](https://github.com/microsoft/kiota-http-ruby/commit/7bf497603ae5106b57e7b1baf5b51b902049d17c))
|
|
14
|
+
* upgrade ruby CI matrix to 3.3, 3.4 and 4.0 ([278f84d](https://github.com/microsoft/kiota-http-ruby/commit/278f84dd0fd8f2d9d13927089b8c09fcc51b5402))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* update minimum required ruby version to 3.3.0 ([fa6e13f](https://github.com/microsoft/kiota-http-ruby/commit/fa6e13fbd422c508a690a29e678ebc1ca3d7f33a))
|
|
20
|
+
* update minimum required ruby version to 3.3.0 ([f867d27](https://github.com/microsoft/kiota-http-ruby/commit/f867d270aa008881650af6470428cc19b29d2abd))
|
|
21
|
+
|
|
8
22
|
## [Unreleased]
|
|
9
23
|
|
|
10
24
|
### Added
|
data/CODE_OF_CONDUCT.md
CHANGED
|
@@ -7,3 +7,4 @@ Resources:
|
|
|
7
7
|
- [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/)
|
|
8
8
|
- [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
|
|
9
9
|
- Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns
|
|
10
|
+
- Employees can reach out at [aka.ms/opensource/moderation-support](https://aka.ms/opensource/moderation-support)
|
data/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# Contributing to Kiota HTTP for Ruby
|
|
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
|
+
## Commit Messages
|
|
16
|
+
|
|
17
|
+
This project uses [Conventional Commits](https://www.conventionalcommits.org/) to automate versioning and changelog generation through [release-please](https://github.com/googleapis/release-please).
|
|
18
|
+
|
|
19
|
+
Every commit merged to `main` **must** follow this format:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
<type>(<optional scope>): <description>
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Types
|
|
26
|
+
|
|
27
|
+
| Type | Description | Version Bump |
|
|
28
|
+
|------|-------------|--------------|
|
|
29
|
+
| `fix` | Bug fix | Patch (`0.15.0` → `0.15.1`) |
|
|
30
|
+
| `feat` | New feature | Minor (`0.15.0` → `0.16.0`) |
|
|
31
|
+
| `feat!`, `fix!`, `refactor!`, etc. | Breaking change (append `!`) | Minor while pre-1.0 (`0.15.0` → `0.16.0`) |
|
|
32
|
+
| `docs` | Documentation only | No release |
|
|
33
|
+
| `chore` | Maintenance tasks | No release |
|
|
34
|
+
| `ci` | CI/CD changes | No release |
|
|
35
|
+
| `test` | Test changes | No release |
|
|
36
|
+
| `refactor` | Code refactoring | No release |
|
|
37
|
+
|
|
38
|
+
### Examples
|
|
39
|
+
|
|
40
|
+
```
|
|
41
|
+
fix: correct content not being set in request information
|
|
42
|
+
feat: add try_add method for request headers
|
|
43
|
+
feat!: bump minimum required ruby version to 3.0
|
|
44
|
+
docs: update README installation instructions
|
|
45
|
+
chore: update dependencies
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
### Pull Requests
|
|
49
|
+
|
|
50
|
+
When a PR is squash-merged, the PR title becomes the commit message on `main`. Make sure the **PR title** follows the conventional commit format so release-please can categorize it correctly.
|
|
51
|
+
|
|
52
|
+
## Development Setup
|
|
53
|
+
|
|
54
|
+
1. Clone the repository
|
|
55
|
+
2. Run `bundle install` to install dependencies
|
|
56
|
+
3. Run `bundle exec rake` to run linting and tests
|
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
'source_code_uri' => 'https://github.com/microsoft/kiota-http-ruby',
|
|
19
19
|
'github_repo' => 'ssh://github.com/microsoft/kiota-http-ruby'
|
|
20
20
|
}
|
|
21
|
-
spec.required_ruby_version = ">= 3.
|
|
21
|
+
spec.required_ruby_version = ">= 3.3.0"
|
|
22
22
|
|
|
23
23
|
# Specify which files should be added to the gem when it is released.
|
|
24
24
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
@@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
|
|
|
28
28
|
spec.bindir = 'bin'
|
|
29
29
|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
30
30
|
spec.require_paths = ['lib']
|
|
31
|
-
spec.add_runtime_dependency 'microsoft_kiota_abstractions', '
|
|
31
|
+
spec.add_runtime_dependency 'microsoft_kiota_abstractions', '>= 0.14', '< 0.16'
|
|
32
32
|
spec.add_runtime_dependency 'faraday', '~> 2.7', '>= 2.7.2'
|
|
33
33
|
spec.add_development_dependency 'rake', '~> 13.0'
|
|
34
34
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
|
|
3
|
+
"packages": {
|
|
4
|
+
".": {
|
|
5
|
+
"release-type": "ruby",
|
|
6
|
+
"package-name": "microsoft_kiota_faraday",
|
|
7
|
+
"changelog-path": "CHANGELOG.md",
|
|
8
|
+
"include-v-in-tag": true,
|
|
9
|
+
"include-component-in-tag": false,
|
|
10
|
+
"bump-minor-pre-major": true,
|
|
11
|
+
"version-file": "lib/microsoft_kiota_faraday/version.rb"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"bootstrap-sha": "e93a03a8e502a589d1f2c2cfaa88f470aec3456e"
|
|
15
|
+
}
|
metadata
CHANGED
|
@@ -1,29 +1,34 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: microsoft_kiota_faraday
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.16.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Microsoft Corporation
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: microsoft_kiota_abstractions
|
|
15
14
|
requirement: !ruby/object:Gem::Requirement
|
|
16
15
|
requirements:
|
|
17
|
-
- - "
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '0.14'
|
|
19
|
+
- - "<"
|
|
18
20
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
21
|
+
version: '0.16'
|
|
20
22
|
type: :runtime
|
|
21
23
|
prerelease: false
|
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
25
|
requirements:
|
|
24
|
-
- - "
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: '0.14'
|
|
29
|
+
- - "<"
|
|
25
30
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.
|
|
31
|
+
version: '0.16'
|
|
27
32
|
- !ruby/object:Gem::Dependency
|
|
28
33
|
name: faraday
|
|
29
34
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -93,17 +98,23 @@ extensions: []
|
|
|
93
98
|
extra_rdoc_files: []
|
|
94
99
|
files:
|
|
95
100
|
- ".github/CODEOWNERS"
|
|
101
|
+
- ".github/copilot-instructions.md"
|
|
96
102
|
- ".github/dependabot.yml"
|
|
103
|
+
- ".github/policies/kiota-http-ruby-branch-protection.yml"
|
|
97
104
|
- ".github/policies/resourceManagement.yml"
|
|
105
|
+
- ".github/release-please.yml"
|
|
98
106
|
- ".github/workflows/auto-merge-dependabot.yml"
|
|
99
107
|
- ".github/workflows/code-ql.yml"
|
|
100
108
|
- ".github/workflows/conflicting-pr-label.yml"
|
|
109
|
+
- ".github/workflows/release-please-gha.yml"
|
|
101
110
|
- ".github/workflows/release.yml"
|
|
102
111
|
- ".github/workflows/ruby.yml"
|
|
103
112
|
- ".gitignore"
|
|
113
|
+
- ".release-please-manifest.json"
|
|
104
114
|
- ".rspec"
|
|
105
115
|
- CHANGELOG.md
|
|
106
116
|
- CODE_OF_CONDUCT.md
|
|
117
|
+
- CONTRIBUTING.md
|
|
107
118
|
- Gemfile
|
|
108
119
|
- LICENSE
|
|
109
120
|
- README.md
|
|
@@ -120,6 +131,7 @@ files:
|
|
|
120
131
|
- lib/microsoft_kiota_faraday/middleware/user_agent_option.rb
|
|
121
132
|
- lib/microsoft_kiota_faraday/version.rb
|
|
122
133
|
- microsoft_kiota_faraday.gemspec
|
|
134
|
+
- release-please-config.json
|
|
123
135
|
homepage: https://microsoft.github.io/kiota/
|
|
124
136
|
licenses:
|
|
125
137
|
- MIT
|
|
@@ -129,7 +141,6 @@ metadata:
|
|
|
129
141
|
homepage_uri: https://microsoft.github.io/kiota/
|
|
130
142
|
source_code_uri: https://github.com/microsoft/kiota-http-ruby
|
|
131
143
|
github_repo: ssh://github.com/microsoft/kiota-http-ruby
|
|
132
|
-
post_install_message:
|
|
133
144
|
rdoc_options: []
|
|
134
145
|
require_paths:
|
|
135
146
|
- lib
|
|
@@ -137,15 +148,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
137
148
|
requirements:
|
|
138
149
|
- - ">="
|
|
139
150
|
- !ruby/object:Gem::Version
|
|
140
|
-
version: 3.
|
|
151
|
+
version: 3.3.0
|
|
141
152
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
142
153
|
requirements:
|
|
143
154
|
- - ">="
|
|
144
155
|
- !ruby/object:Gem::Version
|
|
145
156
|
version: '0'
|
|
146
157
|
requirements: []
|
|
147
|
-
rubygems_version: 3.
|
|
148
|
-
signing_key:
|
|
158
|
+
rubygems_version: 3.6.9
|
|
149
159
|
specification_version: 4
|
|
150
160
|
summary: Microsoft Kiota Faraday - Kiota Ruby http request adapter for running requests
|
|
151
161
|
test_files: []
|