microsoft_graph 0.22.1 → 0.22.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9588f37cb56ef116edbf8ea0c5e2ee92fcbd061e0ff1cacd7b11e9f6c84767b0
4
- data.tar.gz: 8171ba7c00f65bfafa55a092d5444801d5d484a1f85f975b846f0f9ef9b96521
3
+ metadata.gz: bc2753479b38b16b860b27c1618c692ecfbde8f5d2474c5d585ce1debab79431
4
+ data.tar.gz: 46b2875b0e4e578972ac8d9ff3cda95a012a4acf236bf1a1a4dab616719620af
5
5
  SHA512:
6
- metadata.gz: a251f23b516878230b5007684f4bfb5cf9af6703fbf5c765e7ebfce4cc47727a3084040b0e235ddfa133fbc6016c8b0e3b01756556fe946cea57bb4f98cf19a3
7
- data.tar.gz: f5696274310a68dcb20909ac3caa4a6f73efd7da3d3a760d55b4ce23de05c1c5201cc0462033564cf58206dd7416a025f2688cd84b82804dfd0346f0538f0aa7
6
+ metadata.gz: ce7f8e1a0c59bbc0d0daad70df8d27e6914abea97cab7d7557a301afef299881ddaab22e1a0b64c466102b338aa89d7a7d06b30e062763023bfad094d7a7a833
7
+ data.tar.gz: 6cfdd5273e606231fdd9225aa2b4478f8fdcac89b22357bf6f917d0300b8cec86ae746768b80904cae816fff318d3a23f0b673c6496198c7471e630aa56799eb
@@ -33,6 +33,9 @@ configuration:
33
33
  requiresConversationResolution: true
34
34
  # Are merge commits prohibited from being pushed to this branch. boolean
35
35
  requiresLinearHistory: false
36
+ # 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
37
+ requiredStatusChecks:
38
+ - CodeQL
36
39
  # Require branches to be up to date before merging. Requires requiredStatusChecks. boolean
37
40
  requiresStrictStatusChecks: true
38
41
  # Indicates whether there are restrictions on who can push. boolean. Should be set with whoCanPush.
@@ -49,17 +52,24 @@ configuration:
49
52
  # Specifies whether forced pushes are allowed on this branch. boolean
50
53
  allowsForcePushes: false
51
54
  # Specifies whether new commits pushed to the matching branches dismiss pull request review approvals. boolean
52
- dismissStaleReviews: false
55
+ dismissStaleReviews: true
53
56
  # Specifies whether admins can overwrite branch protection. boolean
54
57
  isAdminEnforced: false
58
+ # Indicates whether "Require a pull request before merging" is enabled. boolean
59
+ requiresPullRequestBeforeMerging: true
60
+ # Specifies the number of pull request reviews before merging. int (0-6). Should be null/empty if PRs are not required
61
+ requiredApprovingReviewsCount: 1
55
62
  # Require review from Code Owners. Requires requiredApprovingReviewsCount. boolean
56
- requireCodeOwnersReview: false
63
+ requireCodeOwnersReview: true
57
64
  # Are commits required to be signed. boolean. TODO: all contributors must have commit signing on local machines.
58
65
  requiresCommitSignatures: false
59
66
  # Are conversations required to be resolved before merging? boolean
60
- requiresConversationResolution: false
67
+ requiresConversationResolution: true
61
68
  # Are merge commits prohibited from being pushed to this branch. boolean
62
69
  requiresLinearHistory: false
70
+ # 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
71
+ requiredStatusChecks:
72
+ - CodeQL
63
73
  # Require branches to be up to date before merging. Requires requiredStatusChecks. boolean
64
74
  requiresStrictStatusChecks: true
65
75
  # Indicates whether there are restrictions on who can push. boolean. Should be set with whoCanPush.
@@ -13,10 +13,10 @@ name: "CodeQL"
13
13
 
14
14
  on:
15
15
  push:
16
- branches: [ "master", main ]
16
+ branches: [ master, main ]
17
17
  pull_request:
18
18
  # The branches below must be a subset of the branches above
19
- branches: [ "master" ]
19
+ branches: [ master, main ]
20
20
  schedule:
21
21
  - cron: '41 2 * * 0'
22
22
 
@@ -40,11 +40,11 @@ jobs:
40
40
 
41
41
  steps:
42
42
  - name: Checkout repository
43
- uses: actions/checkout@v3
43
+ uses: actions/checkout@v4
44
44
 
45
45
  # Initializes the CodeQL tools for scanning.
46
46
  - name: Initialize CodeQL
47
- uses: github/codeql-action/init@v2
47
+ uses: github/codeql-action/init@v3
48
48
  with:
49
49
  languages: ${{ matrix.language }}
50
50
  # If you wish to specify custom queries, you can do so here or in a config file.
@@ -58,7 +58,7 @@ jobs:
58
58
  # Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
59
59
  # If this step fails, then you should remove it and run the build manually (see below)
60
60
  - name: Autobuild
61
- uses: github/codeql-action/autobuild@v2
61
+ uses: github/codeql-action/autobuild@v3
62
62
 
63
63
  # ℹ️ Command-line programs to run using the OS shell.
64
64
  # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -71,6 +71,6 @@ jobs:
71
71
  # ./location_of_script_within_repo/buildscript.sh
72
72
 
73
73
  - name: Perform CodeQL Analysis
74
- uses: github/codeql-action/analyze@v2
74
+ uses: github/codeql-action/analyze@v3
75
75
  with:
76
76
  category: "/language:${{matrix.language}}"
@@ -10,7 +10,7 @@ jobs:
10
10
  steps:
11
11
  - name: Generate token
12
12
  id: generate_token
13
- uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92
13
+ uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
14
14
  with:
15
15
  app_id: ${{ secrets.GRAPHBOT_APP_ID }}
16
16
  private_key: ${{ secrets.GRAPHBOT_APP_PEM }}
@@ -10,9 +10,9 @@ jobs:
10
10
  Git_Release:
11
11
  runs-on: ubuntu-latest
12
12
  steps:
13
- - uses: actions/checkout@v3
13
+ - uses: actions/checkout@v4
14
14
  - name: Github Release
15
- uses: anton-yurchenko/git-release@v5.0
15
+ uses: anton-yurchenko/git-release@v6.0
16
16
  env:
17
17
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}
18
18
  DRAFT_RELEASE: "false"
@@ -25,7 +25,7 @@ jobs:
25
25
  name: production_feeds
26
26
  runs-on: ubuntu-latest
27
27
  steps:
28
- - uses: actions/checkout@v3
28
+ - uses: actions/checkout@v4
29
29
  - uses: ruby/setup-ruby@v1
30
30
  with:
31
31
  ruby-version: '3.2'
@@ -15,7 +15,7 @@ jobs:
15
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
- - uses: actions/checkout@v3
18
+ - uses: actions/checkout@v4
19
19
  - uses: ruby/setup-ruby@v1
20
20
  with:
21
21
  ruby-version: ${{ matrix.ruby-version }}
@@ -24,11 +24,14 @@ jobs:
24
24
  cache-version: 1
25
25
  - name: Run tests
26
26
  run: bundle exec rake
27
+ - name: Build the gem
28
+ run: gem build *.gemspec
27
29
  - name: Upload artifacts for ruby version 3 and ubuntu
28
30
  if: ${{ matrix.os == 'ubuntu-latest' && matrix.ruby-version == '3.2'}}
29
- uses: actions/upload-artifact@v3
31
+ uses: actions/upload-artifact@v4
30
32
  with:
31
33
  name: drop
32
34
  path: |
33
35
  ./Gemfile.lock
34
36
  ./README.md
37
+ *.gem
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.22.2] - 2024-02-16
15
+
16
+ ### Changed
17
+
18
+ - Aligns kiota dependencies versions.
19
+
14
20
  ## [0.22.1] - 2023-08-10
15
21
 
16
22
  ### Changed
@@ -1,6 +1,6 @@
1
1
  module MicrosoftGraph
2
2
  class VersionInformation
3
- VERSION = "0.22.1"
3
+ VERSION = "0.22.2"
4
4
  end
5
5
  end
6
6
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: microsoft_graph
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.22.1
4
+ version: 0.22.2
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-08-10 00:00:00.000000000 Z
11
+ date: 2024-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: microsoft_graph_core
@@ -20945,7 +20945,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
20945
20945
  - !ruby/object:Gem::Version
20946
20946
  version: '0'
20947
20947
  requirements: []
20948
- rubygems_version: 3.4.10
20948
+ rubygems_version: 3.4.19
20949
20949
  signing_key:
20950
20950
  specification_version: 4
20951
20951
  summary: Ruby SDK for Microsoft Graph