fog-aliyun 0.4.0 → 0.4.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: 902530b35b7b3b8213965642cb9994b53399a02e65cf75270fc30f9f4a662ad2
4
- data.tar.gz: 9a413e6577adbed08130870c7e7aa751ceb80aec8bb53d42eb43f694cff56a0e
3
+ metadata.gz: 35d36237b704082b491a7bb222b9072d580e6b6f4fc4cdd651bc93a4e5c3940b
4
+ data.tar.gz: 93345a54b567a55450315e0f3646c036c4893a2af2ee933075410016e9fc7aeb
5
5
  SHA512:
6
- metadata.gz: 3d8a867a2cd5be94ec813a8ee11371eed34530aff2554227590c5fdcae9b0ebb197f421ecd7716c38fd9cc930f91f5b2390b28b247fd9dca2cc87f08c4d3311f
7
- data.tar.gz: dc7c248af9cb3388bf2453f8c4096935dafa3ca251c86d75da251c61feda0980d36fd01241a53b4bbff97f0460df609e9634062bc73df851e8510b6368d6e653
6
+ metadata.gz: 625f539b7f8582bc8af645d3e3880abd718c7ea440a5f13732ae5dd9462b04b3c9559b82436f94fe6d40b693ce3685a31052359103646495ac525012daa6717a
7
+ data.tar.gz: ed26ec340a873957993eb12af186a1591b4958542c709fe687fd6cc3a2df88941401f346838dc6f8aade7870cf3dba6f813c14d09293511f1ce1d340120e9a40
@@ -0,0 +1,10 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "bundler"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "weekly"
7
+ - package-ecosystem: "github-actions"
8
+ directory: "/"
9
+ schedule:
10
+ interval: "weekly"
@@ -0,0 +1,18 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: Ruby
9
+
10
+ on:
11
+ push:
12
+ branches: [ master ]
13
+ pull_request:
14
+ branches: [ master ]
15
+
16
+ jobs:
17
+ test:
18
+ uses: fog/.github/.github/workflows/ci.yml@v1.5.0
data/CHANGELOG.md CHANGED
@@ -1,4 +1,9 @@
1
- ## 0.4.1 (Unreleased)
1
+ ## 0.4.1 (April 10, 2026)
2
+
3
+ BUG FIXES:
4
+
5
+ - bump addressable dependency [GH-159](https://github.com/fog/fog-aliyun/pull/159)
6
+
2
7
  ## 0.4.0 (August 17, 2022)
3
8
 
4
9
  IMPROVEMENTS:
data/README.md CHANGED
@@ -309,8 +309,6 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
309
309
 
310
310
  ## Testing
311
311
 
312
-
313
-
314
312
  To run test suite use the following command:
315
313
 
316
314
  ```
@@ -365,6 +363,19 @@ export PERFORMANCE=true
365
363
  rake spec
366
364
  ```
367
365
 
366
+ ## Publish a new release
367
+
368
+ 1. Update the next version in the file `lib/fog/aliyun/version`
369
+ 2. Update the `CHANGELOG.md`
370
+ 3. Build the next release by running command
371
+ ```shell
372
+ gem build fog-aliyun.gemspec
373
+ ```
374
+ 4. Push the next release to the [https://rubygems.org/](https://rubygems.org/)
375
+ ```shell
376
+ gem push fog-aliyun-<version>.gem
377
+ ```
378
+
368
379
  ## License
369
380
 
370
381
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/SECURITY.md ADDED
@@ -0,0 +1,5 @@
1
+ ## Security contact information
2
+
3
+ To report a security vulnerability, please contact [Tidelift security](https://tidelift.com/security).
4
+
5
+ Tidelift will coordinate the fix and disclosure.
data/dependabot.yml ADDED
@@ -0,0 +1,10 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "bundler"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "weekly"
7
+ - package-ecosystem: "github-actions"
8
+ directory: "/"
9
+ schedule:
10
+ interval: "weekly"
data/fog-aliyun.gemspec CHANGED
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
30
30
  spec.add_development_dependency 'memory_profiler'
31
31
  spec.add_development_dependency 'aliyun-sdk', '~> 0.8.0'
32
32
 
33
- spec.add_dependency 'addressable', '~> 2.8.0'
33
+ spec.add_dependency 'addressable', '>= 2.8', '< 2.10'
34
34
  spec.add_dependency 'aliyun-sdk', '~> 0.8.0'
35
35
  spec.add_dependency 'fog-core'
36
36
  spec.add_dependency 'fog-json'
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Fog
4
4
  module Aliyun
5
- VERSION = '0.4.0'
5
+ VERSION = '0.4.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-aliyun
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Qinsi Deng, Jianxun Li, Jane Han, Guimin He
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2022-08-17 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: bundler
@@ -140,16 +139,22 @@ dependencies:
140
139
  name: addressable
141
140
  requirement: !ruby/object:Gem::Requirement
142
141
  requirements:
143
- - - "~>"
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: '2.8'
145
+ - - "<"
144
146
  - !ruby/object:Gem::Version
145
- version: 2.8.0
147
+ version: '2.10'
146
148
  type: :runtime
147
149
  prerelease: false
148
150
  version_requirements: !ruby/object:Gem::Requirement
149
151
  requirements:
150
- - - "~>"
152
+ - - ">="
153
+ - !ruby/object:Gem::Version
154
+ version: '2.8'
155
+ - - "<"
151
156
  - !ruby/object:Gem::Version
152
- version: 2.8.0
157
+ version: '2.10'
153
158
  - !ruby/object:Gem::Dependency
154
159
  name: aliyun-sdk
155
160
  requirement: !ruby/object:Gem::Requirement
@@ -229,6 +234,8 @@ executables: []
229
234
  extensions: []
230
235
  extra_rdoc_files: []
231
236
  files:
237
+ - ".github/dependabot.yml"
238
+ - ".github/workflows/ci.yml"
232
239
  - ".gitignore"
233
240
  - ".rspec"
234
241
  - ".rubocop.yml"
@@ -242,8 +249,10 @@ files:
242
249
  - LICENSE.txt
243
250
  - README.md
244
251
  - Rakefile
252
+ - SECURITY.md
245
253
  - bin/console
246
254
  - bin/setup
255
+ - dependabot.yml
247
256
  - fog-aliyun.gemspec
248
257
  - lib/fog/aliyun.rb
249
258
  - lib/fog/aliyun/compute.rb
@@ -360,7 +369,6 @@ homepage: https://github.com/fog/fog-aliyun
360
369
  licenses:
361
370
  - MIT
362
371
  metadata: {}
363
- post_install_message:
364
372
  rdoc_options: []
365
373
  require_paths:
366
374
  - lib
@@ -375,8 +383,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
375
383
  - !ruby/object:Gem::Version
376
384
  version: '0'
377
385
  requirements: []
378
- rubygems_version: 3.0.3
379
- signing_key:
386
+ rubygems_version: 4.0.3
380
387
  specification_version: 4
381
388
  summary: Fog provider for Alibaba Cloud Web Services.
382
389
  test_files: []