fastly 16.1.0.rc.5 → 16.1.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 +4 -4
- data/CHANGELOG.md +17 -2
- data/Gemfile.lock +1 -1
- data/README.md +1 -7
- data/lib/fastly/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5e41d51a7c84a2f566866497ff8877ea18a3999d75b5f5d679f0eab7dc150577
|
|
4
|
+
data.tar.gz: af794e0cc73da0992c7abc44cad5426ddb13225568326101cb90429735b2fd9b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cae116da24313a7b6cae4aaf9e2ef62bfffba3bc2d67e5119dafe42356861243f060c56c5240233c1945a607c52ea9bfec8d3e3040f5a2b70f5b01c4983f5b80
|
|
7
|
+
data.tar.gz: ef93ae2044d471e3624488a489fbe4a2f130df0102355d884a96e28ddd52cc0bc7d6110d540ed02fd6d5a9af2e204e21c136b695382582c336c62f534b31bfb5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [v16.1.0
|
|
3
|
+
## [v16.1.0](https://github.com/fastly/fastly-ruby/releases/tag/release/v16.1.0) (2026-03-30)
|
|
4
|
+
|
|
5
|
+
**Enhancements:**
|
|
6
|
+
|
|
7
|
+
- feat(historical, realtime): Deprecated metrics `compute_bereq_errors`, `compute_resource_limit_exceeded`,
|
|
8
|
+
`compute_heap_limit_exceeded`, `compute_stack_limit_exceeded`, `compute_globals_limit_exceeded`,
|
|
9
|
+
`compute_guest_errors`, and `compute_runtime_errors`.
|
|
10
|
+
- feat(historical, realtime): Added metrics `compute_service_bereq_error`, `compute_service_memory_exceeded_error`.
|
|
11
|
+
`imgopto_avif_count`, `imgopto_jpeg_count`, `imgopto_png_count`, `imgopto_gif_count`,
|
|
12
|
+
`imgopto_webp_count`, `imgopto_jpegxl_count`, `imgopto_svg_count`, `imgopto_mp4_count`,
|
|
13
|
+
`compute_service_resource_limits_error`, `compute_service_runtime_error`, `compute_service_chain_error`
|
|
14
|
+
`compute_platform_internal_error`, `compute_service_timeout_error`, `compute_service_vcpu_exceeded_error`
|
|
15
|
+
`compute_service_limits_error`, and `compute_platform_invalid_request_error`.
|
|
16
|
+
- feat(domains): Add new Domain Management Domains API.
|
|
17
|
+
- feat(apisecurity-operations): Results include support for `rps` and `id`.
|
|
18
|
+
- feat(apisecurity-operations): List endpoints add support for new parameters `method`, `domain`, and `path`.
|
|
19
|
+
- feat(apisecurity-operations): Add new bulk operations endpoints.
|
|
4
20
|
|
|
5
|
-
- No notable changes in this release.
|
|
6
21
|
|
|
7
22
|
## [v16.0.0](https://github.com/fastly/fastly-ruby/releases/tag/release/v16.0.0) (2026-02-16)
|
|
8
23
|
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -2,19 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
A Ruby client library for interacting with most facets of the [Fastly API](https://www.fastly.com/documentation/reference/api/).
|
|
4
4
|
|
|
5
|
-
> ⚠️ This client library (`16.1.0.rc.5`) is an early-access release. Features may change without notice. Use at your own risk.
|
|
6
|
-
|
|
7
|
-
**We strongly recommend that you do not install alpha and beta releases on live production services.** No official support is provided for such releases. Please try out the library in a test environment, see what breaks without worrying about consequences, and give us [feedback](#issues).
|
|
8
|
-
|
|
9
|
-
Read about the [Fastly Product Lifecycle](https://docs.fastly.com/products/fastly-product-lifecycle).
|
|
10
|
-
|
|
11
5
|
|
|
12
6
|
## Installation
|
|
13
7
|
|
|
14
8
|
To install via RubyGems, add the following to your project's `Gemfile`:
|
|
15
9
|
|
|
16
10
|
```ruby
|
|
17
|
-
gem 'fastly', '~> 16.1.0
|
|
11
|
+
gem 'fastly', '~> 16.1.0'
|
|
18
12
|
```
|
|
19
13
|
|
|
20
14
|
Then run `bundle install`.
|
data/lib/fastly/version.rb
CHANGED