fastly 8.7.0 → 8.8.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: 4904654b7cf5c6adc507b5ba620ed04e76e9672249aefb62e05ecec142dc80f1
4
- data.tar.gz: bb40afec36a8917d70eb9175fbaa25fc12961503ddda96b9b731364732d14cbd
3
+ metadata.gz: 9c6b6ae5be982f3fe38ec8064355a70fe79a4681350f57e13fce11d200cab7f9
4
+ data.tar.gz: d80294d65a07f75dd3c49063f3230c5ec646418e3b1425ac14295d7d894bcc2d
5
5
  SHA512:
6
- metadata.gz: 659c8c3f1e002e1be7f2742f7246cccdd0271c367a5b5a70fb8acc9c047060d7c1d8987c95ffb2833ce3bc29bb6a1bd3f57a4c34bbcc051da823a7709b569607
7
- data.tar.gz: 69703109588baa937fc2908c0c1ecd1ee9f9eb30dd9acf51d3885ab052f4fe085d8bb842dd028cfe30a10d11e4fc90a94e2fd08498e1b1cb8d9169cb03ee8f63
6
+ metadata.gz: c83670802e3df19b90a4bbb2dea04c8010db5f35bc0814ac24ab3c1c2e6a1c7253b570836b5f8b6e2553eaa07abdb86c630d32a8105ec6fb8ff21030c0bb711f
7
+ data.tar.gz: 339cda290f758bc6b37fdff705262740f0163e135082d5fe39f8df53dabe6790a26bec763a087cef662492f8c88d0e274330438838424b48a3ff1cdce3e76a9c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [v8.8.0](https://github.com/fastly/fastly-ruby/releases/tag/release/v8.8.0) (2024-08-21)
4
+
5
+ **Bug fixes:**
6
+
7
+ - bugfix(py): Add dependencies to pyproject.toml.
8
+ - fix(billing): make rate-per-unit nullable
9
+
3
10
  ## [v8.7.0](https://github.com/fastly/fastly-ruby/releases/tag/release/v8.7.0) (2024-08-08)
4
11
 
5
12
  **Bug fixes:**
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fastly (8.7.0)
4
+ fastly (8.8.0)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -8,7 +8,7 @@ A Ruby client library for interacting with most facets of the [Fastly API](https
8
8
  To install via RubyGems, add the following to your project's `Gemfile`:
9
9
 
10
10
  ```ruby
11
- gem 'fastly', '~> 8.7.0'
11
+ gem 'fastly', '~> 8.8.0'
12
12
  ```
13
13
 
14
14
  Then run `bundle install`.
@@ -121,6 +121,7 @@ module Fastly
121
121
  :'deleted_at',
122
122
  :'updated_at',
123
123
  :'credit_coupon_code',
124
+ :'rate_per_unit',
124
125
  :'rate_schedule_no',
125
126
  :'rate_schedule_tier_no',
126
127
  :'usage_type_cd',
@@ -103,6 +103,7 @@ module Fastly
103
103
  def self.fastly_nullable
104
104
  Set.new([
105
105
  :'credit_coupon_code',
106
+ :'rate_per_unit',
106
107
  :'rate_schedule_no',
107
108
  :'rate_schedule_tier_no',
108
109
  :'usage_type_cd',
@@ -9,5 +9,5 @@ Contact: oss@fastly.com
9
9
  =end
10
10
 
11
11
  module Fastly
12
- VERSION = '8.7.0'
12
+ VERSION = '8.8.0'
13
13
  end
data/sig.json CHANGED
@@ -1 +1 @@
1
- {"G": "01161630", "D": "80b361d0"}
1
+ {"G": "6c487eff", "D": "8fce7d1c"}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastly
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.7.0
4
+ version: 8.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fastly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-08 00:00:00.000000000 Z
11
+ date: 2024-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus