microsoft_kiota_abstractions 0.12.0 → 0.13.0

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: b52a44f65735fe060086cf7e71a1294ae4344e0f99f8f6c648588c1239960c9f
4
- data.tar.gz: 20e1bd2c661446d9e445d7f2ec57defce3723780523a1a5a3b5600eb19cbf403
3
+ metadata.gz: 278d9b47f5ee5386af0e047ea6d1b54ecfe7cd370591604ed6ac2ea8980b1acf
4
+ data.tar.gz: 319859f7f00b664ae9e2b6134d7430015f109fee9c8d0adb410924c2cdb23012
5
5
  SHA512:
6
- metadata.gz: 671e9274c033862c67b865e86226e5c6d9731bafd64dc9b31ff715d01e17ee318362056699ef53247adc21898e95c8fcba115cb95875d9f629ad20917dbcb3f5
7
- data.tar.gz: 0ad38aaa8fc6e3d8c870f7ecd9e59c4ffe0a38637122fb84f72d0b92f66fd4d6f0376ab70341a56c72e05b348003295eee6f51aa2ae43c545c69600519c761b3
6
+ metadata.gz: '08d217eceb07235bb8a396d265e94b8fb927e09f40b583a1ffe458e381fe0c814926311ef3c1b85c31748efac851dba308c3404eccb1ba83216c18c3fca1876b'
7
+ data.tar.gz: 4297b2d100735a4fd2a9dfd5fdc44b8e1265fbfa4e3eb2e0d1c7d599a602b8fe9b93522adafa8605e8e717a171ac9e1dd2525a5a3912e6a9898f6cc5129d863e
@@ -13,10 +13,10 @@ name: "CodeQL"
13
13
 
14
14
  on:
15
15
  push:
16
- branches: [ "master", main ]
16
+ branches: [ main ]
17
17
  pull_request:
18
18
  # The branches below must be a subset of the branches above
19
- branches: [ "master" ]
19
+ branches: [ main ]
20
20
  schedule:
21
21
  - cron: '41 2 * * 0'
22
22
 
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.13.0] - 2023-01-10
15
+
16
+ ### Added
17
+
18
+ - Added a method to convert abstract requests to native requests in the request adapter interface.
19
+
14
20
  ## [0.12.0] - 2022-12-30
15
21
 
16
22
  ### Added
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Kiota Abstractions Library for Ruby
2
2
 
3
- ![Ruby](https://github.com/microsoft/kiota/actions/workflows/ruby.yml/badge.svg)
3
+ ![Ruby](https://github.com/microsoft/kiota-abstractions-ruby/actions/workflows/ruby.yml/badge.svg)
4
4
 
5
5
  The Kiota abstractions Library for go is the go library defining the basic constructs Kiota projects need once an SDK has been generated from an OpenAPI definition.
6
6
 
@@ -21,5 +21,10 @@ module MicrosoftKiotaAbstractions
21
21
  raise NotImplementedError.new
22
22
  end
23
23
 
24
+ # Converts the given RequestInformation into a native HTTP request.
25
+ def convert_to_native_request_async(request_info)
26
+ raise NotImplementedError.new
27
+ end
28
+
24
29
  end
25
30
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MicrosoftKiotaAbstractions
4
- VERSION = "0.12.0"
4
+ VERSION = "0.13.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: microsoft_kiota_abstractions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.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: 2022-12-30 00:00:00.000000000 Z
11
+ date: 2023-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable