agentless-catalog-executor 0.9.0 → 0.9.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
- SHA256:
3
- metadata.gz: 79d2b9be5ed2f82739dd799731397f1c624f5a9ea1a6a912d1ccff1b4691c57a
4
- data.tar.gz: dd0a699827235e7dd1de435c6dc2588393ee65a7cafdb9667a2defb0baea2020
2
+ SHA1:
3
+ metadata.gz: d791e5e1528ffc2b85e6040851de75ef8618d918
4
+ data.tar.gz: 552781fb8ab839d69ac6c51a0d1e6d602cb317e4
5
5
  SHA512:
6
- metadata.gz: 1b8cbea6b29cd4f9cf2ff20a6f87f725cc6c7e809cc9d4f1833f7545426fcdc30bee44edccb071d52f8c453c4ddd17ed85dcab722b18656163318b3ca95b2de9
7
- data.tar.gz: 3cfe9a776ffcf12051498a30f63474b5e752e6e20e0ab722f796b466de268d385e9d4a583c1137a22260de7b5c731f022b58480630db13a06a1390e8494d7fe2
6
+ metadata.gz: 4fef3a93cdb37b5ab0d6604f2e90af25413957f5323913b11fa9d19629e1e4b9f43c7fd4a55b453100cf127d295c4b611dac99b04781cb8be8aafef1a3b88e75
7
+ data.tar.gz: abd5923765bf1bc755312655fc181b00ac7e61c7029d74ac1d48bf96b7bd3a45cb89b0a6cac9a75b62866e190e00ec090e433a600cb74eafffd72211ef1177e1
data/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All significant changes to this repo will be summarized in this file.
4
4
 
5
5
 
6
+ ## [v0.9.1](https://github.com/puppetlabs/ace/tree/v0.9.1) (2019-04-16)
7
+ [Full Changelog](https://github.com/puppetlabs/ace/compare/v0.9.0...v0.9.1)
8
+
9
+ **Fixed bugs:**
10
+
11
+ - \(maint\) remove load\_config parameter [\#34](https://github.com/puppetlabs/ace/pull/34) ([da-ar](https://github.com/da-ar))
12
+
13
+ **Merged pull requests:**
14
+
15
+ - \(FM-7927\) Docs review [\#35](https://github.com/puppetlabs/ace/pull/35) ([clairecadman](https://github.com/clairecadman))
16
+
6
17
  ## [v0.9.0](https://github.com/puppetlabs/ace/tree/v0.9.0) (2019-04-16)
7
18
  **Implemented enhancements:**
8
19
 
data/README.md CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  ## Installation
4
4
 
5
- ACE is installed as pe-ace-server as part of Puppet Enterprise.
5
+ The Agentless Catalog Executor (ACE) is built-in to Puppet Enterprise (PE) as pe-ace-server.
6
6
 
7
7
  ## Usage
8
8
 
9
- For development or experimenting, run the puma server to get an instance started:
9
+ To spin up an instance for development, run the puma server:
10
10
 
11
11
  ```
12
12
  ACE_CONF=config/local.conf bundle exec puma -C config/transport_tasks_config.rb
@@ -14,10 +14,10 @@ ACE_CONF=config/local.conf bundle exec puma -C config/transport_tasks_config.rb
14
14
 
15
15
  ## Development
16
16
 
17
- As ACE is dependent on a PuppetServer, there is a docker-compose file within the `spec/` directory which is advisable to run first to ensure that the certs and keys are valid before running the ACE service, more information can be found in the [docker documentation](developer-docs/docker).
17
+ As ACE is dependent on Puppet Server, there is a docker-compose file in the `spec/` directory which we advise you run before the ACE service to ensure that the certs and keys are valid. For more information, see the [docker documentation](developer-docs/docker).
18
18
 
19
- To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). Released gems will eventually be consumed by [ace-vanagon](https://github.com/puppetlabs/ace-vanagon) and promoted into PE.
19
+ To release a new version, update the version number in `version.rb` and run `bundle exec rake release`, which creates a git tag for the version, pushes git commits and tags, and pushes the `.gem` file to [rubygems.org](https://rubygems.org). Released gems are eventually consumed by [ace-vanagon](https://github.com/puppetlabs/ace-vanagon) and promoted into PE.
20
20
 
21
21
  ## Contributing
22
22
 
23
- Bug reports and pull requests are welcome on GitHub at https://github.com/puppetlabs/ace. See the `.travis.yml` file for checks to run on your code before submitting. Please always include tests with your changes.
23
+ Bug reports and pull requests are welcome on GitHub at https://github.com/puppetlabs/ace. See the `.travis.yml` file for which checks to run on your code before submitting. Always include tests with your changes.
@@ -19,7 +19,7 @@ module ACE
19
19
  class TransportApp < Sinatra::Base
20
20
  def initialize(config = nil)
21
21
  @config = config
22
- @executor = Bolt::Executor.new(0, load_config: false)
22
+ @executor = Bolt::Executor.new(0)
23
23
  tasks_cache_dir = File.join(@config['cache-dir'], 'tasks')
24
24
  @file_cache = BoltServer::FileCache.new(@config.data.merge('cache-dir' => tasks_cache_dir)).setup
25
25
  environments_cache_dir = File.join(@config['cache-dir'], 'environments')
data/lib/ace/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ACE
4
- VERSION = "0.9.0"
4
+ VERSION = "0.9.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: agentless-catalog-executor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Schmitt
@@ -247,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
247
247
  version: '0'
248
248
  requirements: []
249
249
  rubyforge_project:
250
- rubygems_version: 2.7.6.2
250
+ rubygems_version: 2.6.12
251
251
  signing_key:
252
252
  specification_version: 4
253
253
  summary: ACE lets you run remote tasks and catalogs using puppet and bolt.