microsoft_graph_core 0.2.0 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c675efe3e600fe5e3167f22f83d4a383ad19d9ff8ea78e539f30768326a9b291
4
- data.tar.gz: 9ad15ec7cc22a1d1a0c2f3c2b19c0ef75d28d75dd25eb3baf80f36b48df8b763
3
+ metadata.gz: cc9a6dd0e83e2b73a46e8761c5a9865f5e99ef7ce8e931ddd08ed03f6e1b110b
4
+ data.tar.gz: 4cbb63f80ad7a5ea9728a1c7a519611e475d7ea5227ab8f9284e3373fbea403a
5
5
  SHA512:
6
- metadata.gz: de2d57a9c323a67393ee5d62cd57321bc25dcb40d0b5176ab2cd8b9e78bf40f7f8284000336809f9b3fc5ceb8bc5b48091477addfe39d57f879d795a87d28e81
7
- data.tar.gz: b38cb8444c4a30eb51de10af1aba7d3adf56e3abdac05143b3d7c418fe7b4b2f50a290ac7e6ab265b3b63f2313e62cbec596c4e842726a8ffba895b715c64fb2
6
+ metadata.gz: 6925575a3678cf9c8b11458d60a0d14b4d854ba0eda61c6af444088e6db31faec798c3dd67e5b6a71b1293572c2006a3fb04924ee4abb28b4fdbc532fa6519e0
7
+ data.tar.gz: d16c7a343307197c92e0fd95efbab984ef717baff2dff9d1cbc401259ce97c2727b15f52183ed25ddf09cb52b13b245659bbeb31608918e837930e807befccde
@@ -0,0 +1,32 @@
1
+ name: Auto-merge dependabot updates
2
+
3
+ on:
4
+ pull_request:
5
+ branches: [ main ]
6
+
7
+ permissions:
8
+ pull-requests: write
9
+ contents: write
10
+
11
+ jobs:
12
+
13
+ dependabot-merge:
14
+
15
+ runs-on: ubuntu-latest
16
+
17
+ if: ${{ github.actor == 'dependabot[bot]' }}
18
+
19
+ steps:
20
+ - name: Dependabot metadata
21
+ id: metadata
22
+ uses: dependabot/fetch-metadata@v1.3.6
23
+ with:
24
+ github-token: "${{ secrets.GITHUB_TOKEN }}"
25
+
26
+ - name: Enable auto-merge for Dependabot PRs
27
+ # Only if version bump is not a major version change
28
+ if: ${{steps.metadata.outputs.update-type != 'version-update:semver-major'}}
29
+ run: gh pr merge --auto --merge "$PR_URL"
30
+ env:
31
+ PR_URL: ${{github.event.pull_request.html_url}}
32
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
@@ -10,7 +10,7 @@ jobs:
10
10
  steps:
11
11
  - name: Generate token
12
12
  id: generate_token
13
- uses: tibdex/github-app-token@021a2405c7f990db57f5eae5397423dcc554159c
13
+ uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92
14
14
  with:
15
15
  app_id: ${{ secrets.GRAPHBOT_APP_ID }}
16
16
  private_key: ${{ secrets.GRAPHBOT_APP_PEM }}
@@ -28,7 +28,7 @@ jobs:
28
28
  - uses: actions/checkout@v3
29
29
  - uses: ruby/setup-ruby@v1
30
30
  with:
31
- ruby-version: '3.1'
31
+ ruby-version: '3.2'
32
32
  bundler-cache: true # runs 'bundle install' and caches installed gems automatically
33
33
  bundler: 'latest'
34
34
  cache-version: 1
@@ -12,7 +12,7 @@ jobs:
12
12
  fail-fast: false
13
13
  matrix:
14
14
  os: [ubuntu-latest, macos-latest]
15
- ruby-version: ['2.7', '3.0', '3.1', head, jruby, jruby-head, truffleruby, truffleruby-head]
15
+ ruby-version: ['3.0', '3.1', '3.2', head, jruby, jruby-head, truffleruby, truffleruby-head]
16
16
  runs-on: ${{ matrix.os }}
17
17
  steps:
18
18
  - uses: actions/checkout@v3
@@ -25,7 +25,7 @@ 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.1'}}
28
+ if: ${{ matrix.os == 'ubuntu-latest' && matrix.ruby-version == '3.2'}}
29
29
  uses: actions/upload-artifact@v3
30
30
  with:
31
31
  name: drop
data/CHANGELOG.md CHANGED
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
 
12
12
  ### Changed
13
13
 
14
+ ## [0.3.0] - 2023-03-28
15
+
16
+ ### Changed
17
+
18
+ - Upgraded kiota dependencies
19
+
14
20
  ## [0.2.0] - 2023-01-09
15
21
 
16
22
  ### Added
@@ -1,5 +1,5 @@
1
1
  module MicrosoftGraphCore
2
2
  class VersionInformation
3
- VERSION = "0.2.0"
3
+ VERSION = "0.3.0"
4
4
  end
5
5
  end
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
20
20
  'source_code_uri' => 'https://github.com/microsoftgraph/msgraph-sdk-ruby-core',
21
21
  'github_repo' => 'ssh://github.com/microsoftgraph/msgraph-sdk-ruby-core'
22
22
  }
23
- spec.required_ruby_version = '>= 2.7.0'
23
+ spec.required_ruby_version = '>= 3.0.0'
24
24
 
25
25
  # Specify which files should be added to the gem when it is released.
26
26
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
31
31
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
32
32
  spec.require_paths = ["lib"]
33
33
 
34
- spec.add_runtime_dependency 'microsoft_kiota_abstractions', '~> 0.13.0', '>= 0.13.0'
34
+ spec.add_runtime_dependency 'microsoft_kiota_abstractions', '>= 0.13', '< 0.15'
35
35
  spec.add_runtime_dependency 'microsoft_kiota_faraday', '>= 0.10', '< 0.12'
36
36
  spec.add_runtime_dependency 'microsoft_kiota_serialization_json', '~> 0.8.0'
37
37
  spec.add_runtime_dependency 'microsoft_kiota_authentication_oauth', '>= 0.7', '< 0.8'
metadata CHANGED
@@ -1,35 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: microsoft_graph_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Microsoft Corporation
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-19 00:00:00.000000000 Z
11
+ date: 2023-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: microsoft_kiota_abstractions
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: 0.13.0
20
17
  - - ">="
21
18
  - !ruby/object:Gem::Version
22
- version: 0.13.0
19
+ version: '0.13'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '0.15'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
- - - "~>"
28
- - !ruby/object:Gem::Version
29
- version: 0.13.0
30
27
  - - ">="
31
28
  - !ruby/object:Gem::Version
32
- version: 0.13.0
29
+ version: '0.13'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '0.15'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: microsoft_kiota_faraday
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -121,6 +121,7 @@ extra_rdoc_files: []
121
121
  files:
122
122
  - ".github/CODEOWNERS"
123
123
  - ".github/dependabot.yml"
124
+ - ".github/workflows/auto-merge-dependabot.yml"
124
125
  - ".github/workflows/code-ql.yml"
125
126
  - ".github/workflows/conflicting-pr-label.yml"
126
127
  - ".github/workflows/projectsbot.yml"
@@ -163,14 +164,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
163
164
  requirements:
164
165
  - - ">="
165
166
  - !ruby/object:Gem::Version
166
- version: 2.7.0
167
+ version: 3.0.0
167
168
  required_rubygems_version: !ruby/object:Gem::Requirement
168
169
  requirements:
169
170
  - - ">="
170
171
  - !ruby/object:Gem::Version
171
172
  version: '0'
172
173
  requirements: []
173
- rubygems_version: 3.3.26
174
+ rubygems_version: 3.4.6
174
175
  signing_key:
175
176
  specification_version: 4
176
177
  summary: Ruby SDK for Microsoft Graph