fastly 3.0.0 → 3.0.1

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: d0331b2215d245985194128508980192db08a0ae94c0da70c1f3b417a4309df7
4
- data.tar.gz: d3ab806682ed8e8141a301886fb2bf21b91102f478866dee281b3be2c7480a5c
3
+ metadata.gz: 1e44661612cc70c25283004a7817bad49b3a74cf021cda947d58a508c0032707
4
+ data.tar.gz: 61a36603f52e2d930450bd1f25963ac65517a5073f090ed4998b6606327938de
5
5
  SHA512:
6
- metadata.gz: 4e738dcf185c95ff25b675f2795fbdd62154894c1c00098dccd48f39d1dfb854491f8f007b5a1c1bef1c0689aad5392b0b5c3facb22ed0a956b501a7300017c3
7
- data.tar.gz: f76512046a815ab57aa559abc71f9ab9108246defb81f2c710579f0d11296eb2f422897bb97440aa8a18f9c57b363ae1570db95257e50e9f1ed12736a7a959ac
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."
@@ -1,4 +1,4 @@
1
1
  # The current version of the library
2
2
  class Fastly
3
- VERSION = "3.0.0"
3
+ VERSION = "3.0.1"
4
4
  end
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.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-02-04 00:00:00.000000000 Z
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