fog-openstack 1.1.2 → 1.1.4

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: 6f1a987e1cdb15819df9574bd24325126715362ae879b23f06b7a5a705d73a09
4
- data.tar.gz: 2960cb5a953347ccd02f2b34f20855fa47ab7cc267e22a4bd3568c80a08f5e7c
3
+ metadata.gz: 60df404a7112f335ae1d54d646cd5b4eeac67bd5c739ffb7bd8fe3403eb23e9c
4
+ data.tar.gz: 9c5f40f90aa76083a071769eb62f6540dee3707a12b594c4d32af6311ede1df9
5
5
  SHA512:
6
- metadata.gz: 341a1f504b125f03f153762a246dd327b5efe933082592f969b688786eb179eb2f392bb57ba8dc69bc1e15ef36364499455a3cc917e7d8acaff3ad31f1ab7876
7
- data.tar.gz: d121394ee777d1df119df6fabe654166ce5b6fa23390b3f20b7831fb1ff297420481df3c68ba0ae85c68af7b57fcb2f1dcee0c2c3fdbac88c7d621d3b0662f35
6
+ metadata.gz: 717305f84a235ae68b7f0741374d141b6dc924956e5992775ba4bb7658bdc2c5a96a1972962b5528e37bebf744a628e8ede64eec34bfa6d26cdbc5b90bc9ef92
7
+ data.tar.gz: 264fc7d430fe1ecef407959e0463daa07ace4ad86477c1e7f0a3e1c2ef12d43bdc03440ccf46fa49d3a47e1cacf79fc09991206ad660d18ad78ea3a77036730c
@@ -13,4 +13,4 @@ permissions:
13
13
 
14
14
  jobs:
15
15
  Shared:
16
- uses: fog/.github/.github/workflows/ci.yml@v1.4.0
16
+ uses: fog/.github/.github/workflows/ci.yml@v1.5.0
data/CHANGELOG.md CHANGED
@@ -1,7 +1,17 @@
1
- # 1.1.2 2024/06/12
1
+ # 1.1.4 2025/02/05
2
+
3
+ * fix DSL REST API v2 docs
4
+ * update to latest fog/.github
5
+ - fix namespace for OpenStack Orchestration utils
6
+
7
+ # 1.1.3 2024/06/12
2
8
 
3
9
  * add support for application credentials to storage
4
10
 
11
+ # 1.1.2 2024/06/12
12
+
13
+ * erroroneous (thought things had been merged that weren't yet)
14
+
5
15
  # 1.1.1 2024/05/14
6
16
 
7
17
  * delete newlines in base64 encoding
data/docs/workflow.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  This document explains how to get started using OpenStack Workflow (Mistral) with Fog. It assumes you have read the [Getting Started with Fog and the OpenStack](getting_started.md) document.
4
4
 
5
- Fog uses the [OpenStack Mistral API](http://docs.openstack.org/developer/mistral/developer/webapi/v2.html).
5
+ Fog uses the [OpenStack Mistral API](http://docs.openstack.org/mistral/latest/user/rest_api_v2.html).
6
6
 
7
7
  ## Workflow Service
8
8
 
@@ -125,7 +125,7 @@ https://github.com/fog/fog-openstack/tree/master/examples/workflow/workflow-exam
125
125
  ## Additional Resources
126
126
 
127
127
  * [Mistral Wiki](https://wiki.openstack.org/wiki/Mistral)
128
- * [Mistral DSL v2](http://docs.openstack.org/developer/mistral/dsl/dsl_v2.html)
129
- * [Mistral API v2](http://docs.openstack.org/developer/mistral/developer/webapi/v2.html)
128
+ * [Mistral DSL v2](http://docs.openstack.org/mistral/ocata/dsl/dsl_v2.html)
129
+ * [Mistral API v2](http://docs.openstack.org/mistral/latest/user/rest_api_v2.html)
130
130
  * [Mistral python client](https://github.com/openstack/python-mistralclient) Can be useful to see how to interact with the API.
131
131
  * [more resources and feedback](common/resources.md)
@@ -37,7 +37,7 @@ module Fog
37
37
  # and replaces it with :template.
38
38
  # see https://github.com/openstack-infra/shade/blob/master/shade/openstackcloud.py#L1201
39
39
  # see https://developer.openstack.org/api-ref/orchestration/v1/index.html#create-stack
40
- file_resolver = Util::RecursiveHotFileLoader.new(options[:template] || options[:template_url], options[:files])
40
+ file_resolver = OrchestrationUtil::RecursiveHotFileLoader.new(options[:template] || options[:template_url], options[:files])
41
41
  options[:template] = file_resolver.template
42
42
  options[:files] = file_resolver.files unless file_resolver.files.empty?
43
43
 
@@ -13,7 +13,8 @@ module Fog
13
13
  :openstack_project_name, :openstack_project_id, :openstack_cache_ttl,
14
14
  :openstack_project_domain, :openstack_user_domain, :openstack_domain_name,
15
15
  :openstack_project_domain_id, :openstack_user_domain_id, :openstack_domain_id,
16
- :openstack_identity_api_version, :openstack_temp_url_key
16
+ :openstack_identity_api_version, :openstack_temp_url_key,
17
+ :openstack_application_credential_id, :openstack_application_credential_secret
17
18
 
18
19
  model_path 'fog/openstack/storage/models'
19
20
  model :directory
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module OpenStack
3
- VERSION = '1.1.2'.freeze
3
+ VERSION = '1.1.4'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-openstack
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Darby
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-06-12 00:00:00.000000000 Z
11
+ date: 2025-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog-core
@@ -1454,7 +1454,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1454
1454
  - !ruby/object:Gem::Version
1455
1455
  version: '0'
1456
1456
  requirements: []
1457
- rubygems_version: 3.4.10
1457
+ rubygems_version: 3.5.18
1458
1458
  signing_key:
1459
1459
  specification_version: 4
1460
1460
  summary: OpenStack fog provider gem