Skip to content

Commit 2ae06d7

Browse files
author
github-actions
committed
Generated v6.09
1 parent 7df2a9d commit 2ae06d7

File tree

7 files changed

+14
-6
lines changed

7 files changed

+14
-6
lines changed

Changes

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Revision history for https://metacpan.org/dist/WebService-Fastly
22

3+
6.09 2024-08-21
4+
5+
[Bug fixes]
6+
- bugfix(py): Add dependencies to pyproject.toml.
7+
- fix(billing): make rate-per-unit nullable
8+
39
6.08 2024-08-08
410

511
[Bug fixes]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ WebService::Fastly - an interface to most facets of the Fastly API (https://www.
44

55
# VERSION
66

7-
6.08
7+
6.09
88

99

1010
# SYNOPSIS

lib/WebService/Fastly.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package WebService::Fastly;
22

33
use strict;
44
use 5.008_005;
5-
our $VERSION = '6.08';
5+
our $VERSION = '6.09';
66

77
1;
88
__END__

lib/WebService/Fastly/Configuration.pm

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use utf8;
2424
use Log::Any qw($log);
2525
use Carp;
2626

27-
use constant VERSION => '6.08';
27+
use constant VERSION => '6.09';
2828

2929
=head1 Name
3030
@@ -44,7 +44,7 @@ default: 180
4444
4545
String. custom UserAgent header
4646
47-
default: fastly-perl/6.08
47+
default: fastly-perl/6.09
4848
4949
=item api_key: (optional)
5050
@@ -93,7 +93,7 @@ sub new {
9393

9494
# class/static variables
9595
$p{http_timeout} //= 180;
96-
$p{http_user_agent} //= 'fastly-perl/6.08';
96+
$p{http_user_agent} //= 'fastly-perl/6.09';
9797

9898
# authentication setting
9999
$p{api_key} //= {};

lib/WebService/Fastly/Object/BillingResponseLineItem.pm

+1
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,7 @@ __PACKAGE__->openapi_nullable( {
355355
'deleted_at' => 'true',
356356
'updated_at' => 'true',
357357
'credit_coupon_code' => 'true',
358+
'rate_per_unit' => 'true',
358359
'rate_schedule_no' => 'true',
359360
'rate_schedule_tier_no' => 'true',
360361
'usage_type_cd' => 'true',

lib/WebService/Fastly/Object/LineItemData.pm

+1
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,7 @@ __PACKAGE__->mk_accessors(keys %{__PACKAGE__->attribute_map});
323323

324324
__PACKAGE__->openapi_nullable( {
325325
'credit_coupon_code' => 'true',
326+
'rate_per_unit' => 'true',
326327
'rate_schedule_no' => 'true',
327328
'rate_schedule_tier_no' => 'true',
328329
'usage_type_cd' => 'true',

sig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"G": "01161630", "D": "80b361d0"}
1+
{"G": "6c487eff", "D": "8fce7d1c"}

0 commit comments

Comments
 (0)