fastly 3.0.0 → 3.0.1
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 +8 -0
- data/RELEASE.md +15 -0
- data/lib/fastly/client.rb +0 -4
- data/lib/fastly/gem_version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1e44661612cc70c25283004a7817bad49b3a74cf021cda947d58a508c0032707
|
|
4
|
+
data.tar.gz: 61a36603f52e2d930450bd1f25963ac65517a5073f090ed4998b6606327938de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a70fa226cb6b9169b89bef2c22febf1d6afad9868cc9b2f6f681c341205b526d8f527f135dffae8e25251b29d8c1e0d81c3a87af4b67507b70cb91e34df020ed
|
|
7
|
+
data.tar.gz: f527b3149e5c63ed2f2343641761e357f5662bc923c2f3cce44a7d4b5db673db8e2c5abfe1fe150c1ea2b2604db1e40ff8a769b998fa8c692140e9bbf9ffc56f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [v3.0.1](https://github.com/fastly/fastly-ruby/tree/v3.0.1) (2021-02-03)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/fastly/fastly-ruby/compare/v3.0.0...v3.0.1)
|
|
6
|
+
|
|
7
|
+
**Merged pull requests:**
|
|
8
|
+
|
|
9
|
+
- Remove deprecation warning [\#174](https://github.com/fastly/fastly-ruby/pull/174) ([conniechu929](https://github.com/conniechu929))
|
|
10
|
+
|
|
3
11
|
## [v3.0.0](https://github.com/fastly/fastly-ruby/tree/v3.0.0) (2021-02-03)
|
|
4
12
|
|
|
5
13
|
[Full Changelog](https://github.com/fastly/fastly-ruby/compare/v2.5.3...v3.0.0)
|
data/RELEASE.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
**Release Process**
|
|
2
|
+
|
|
3
|
+
1. Sign up for an account on Ruby Gems (https://rubygems.org/sign_up)
|
|
4
|
+
2. Go to the `#app-eng-backends` channel and get added to the ruby gem (https://rubygems.org/gems/fastly)
|
|
5
|
+
3. Merge PR after CI passes
|
|
6
|
+
4. Open new PR to update `CHANGELOG.md`
|
|
7
|
+
5. Merge `CHANGELOG.md` PR
|
|
8
|
+
6. Rebase latest remote master branch locally (`git pull --rebase origin master`).
|
|
9
|
+
7. Tag a new release (`git tag vX.Y.Z && git push origin vX.Y.Z`)
|
|
10
|
+
8. Copy and paste `CHANGELOG.md` into the draft release
|
|
11
|
+
9. Publish draft release
|
|
12
|
+
10. Publish the gem to RubyGems.org (you will need your username and password on Ruby Gems)
|
|
13
|
+
|
|
14
|
+
- generate a new gem spec file with the new version `gem build fastly.gemspec`
|
|
15
|
+
- update RubyGems.org `gem push fastly-{VERSION}.gem`
|
data/lib/fastly/client.rb
CHANGED
|
@@ -24,10 +24,6 @@ class Fastly
|
|
|
24
24
|
@thread_http_client = if defined?(Concurrent::ThreadLocalVar)
|
|
25
25
|
Concurrent::ThreadLocalVar.new { build_http_client }
|
|
26
26
|
end
|
|
27
|
-
|
|
28
|
-
warn("DEPRECATION WARNING: Username/password authentication is deprecated
|
|
29
|
-
and will not be available starting September 2020;
|
|
30
|
-
please migrate to API tokens as soon as possible.")
|
|
31
27
|
|
|
32
28
|
if api_key.nil?
|
|
33
29
|
fail Unauthorized, "Invalid auth credentials. Check api_key."
|
data/lib/fastly/gem_version.rb
CHANGED
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: 3.0.
|
|
4
|
+
version: 3.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fastly
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-03-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Client library for the Fastly acceleration system
|
|
14
14
|
email:
|
|
@@ -31,6 +31,7 @@ files:
|
|
|
31
31
|
- HISTORY.md
|
|
32
32
|
- LICENSE
|
|
33
33
|
- README.md
|
|
34
|
+
- RELEASE.md
|
|
34
35
|
- Rakefile
|
|
35
36
|
- bin/fastly_create_domain
|
|
36
37
|
- bin/fastly_upload_vcl
|