azure-blob 0.5.7 → 0.5.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dd9cb1fb7e43ff7b01c0c1b751c4650be08107aaf134a6f9a5916b8671e9c067
4
- data.tar.gz: 57b4c72aa7fd6f4f7d4e43b5b167de3ac6744d486d5e099728785fe7451b282e
3
+ metadata.gz: b05479c9f6ba44b76af4d096021a2a887e8774caf4dcd1c2e02a98c8a2998426
4
+ data.tar.gz: 75c680b7c740b541e078cb9a1fc4f7c213719abfa68d3057a21982a1a0977320
5
5
  SHA512:
6
- metadata.gz: 0dee84bb26174192109acfb4ac186d627c20ef54e2a3f2bb1b5ad36bcb04792c5805986ec63a805bdd4332975b3b18c45d9db75ab43f9ab3dfd42124ebdcca7b
7
- data.tar.gz: 37080e6e53228b5bad0e70927abe736f8d769dcc90b7a93f9ac6d4480c269132f1f341fc47907a0b2e60c1741c235d57de09bf8d3b7a627ae4f9b0652c219c4e
6
+ metadata.gz: 1116f9eec87e05685dd8177f400cc322b1a393e0d96eaf91bfe52cfb465ebc7ded753ff1c040f9dbed031038c6cca2cab80bd7eec591d4e020ac151c7a1b59af
7
+ data.tar.gz: 76a9a8840903de54253fce878ccee22ba55be7097f018c171a3b6863862fa19e2656475dbf415b609426a428212acb14d35117c55c6d8905060f3909be28d61a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.5.7.1] 2025-04-22
4
+
5
+ - Fixed a bug when reusing the account name in the container name. #22
6
+
3
7
  ## [0.5.7] 2025-02-21
4
8
 
5
9
  - Add `copy_blob`
@@ -11,7 +11,7 @@ module AzureBlob
11
11
  @account_name = account_name
12
12
  @access_key = Base64.decode64(access_key)
13
13
  @host = host
14
- @remove_prefix = @host.include?("/#{@account_name}")
14
+ @remove_prefix = @host.end_with?("/#{@account_name}")
15
15
  end
16
16
 
17
17
  def authorization_header(uri:, verb:, headers: {})
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AzureBlob
4
- VERSION = "0.5.7"
4
+ VERSION = "0.5.7.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure-blob
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.7
4
+ version: 0.5.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joé Dupuis