subspace 2.1.1 → 2.1.2

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: ac2b041fcf52d40e8e8114655671a69b23dec3c4a6958da47734a09c4050ecb0
4
- data.tar.gz: 1f9029e5710933a086bde329b7adad412493887f165e42be42f7dc8d9b7cce6b
3
+ metadata.gz: dd87407fb11ec6c94c168ebd5b9352df4f5d548d58680d8d55f48d10b358ebf2
4
+ data.tar.gz: b2ee02cff26d17e5a7ec2f09e3dbbee0c9faf9884bf28d2800419729363cb319
5
5
  SHA512:
6
- metadata.gz: b4718fb9f94b49bba4b5f722fd17cbf25ab34341bdf3c61dad80483f84ebb80f8cde47bebba75d08a6f6ff227cf367203bc825117bb78458ea4f0e3407d57dec
7
- data.tar.gz: 3c26bff373ff6abf5c3f22d63215451ef849ee52dfaadaaa0d86f5b8a3f1c33a041891d4476621aa8a0b583d3e3514d4e706776e30b558551a544ebac07aa2d8
6
+ metadata.gz: fbb758b5dbefb0df98314cb8001baa09eab07f7586e5377441c9f453a70cce025abf0ee3aa0a09d36fb99ec437abe3565372f3a578dc6e361278e12a315397af
7
+ data.tar.gz: 57bdb1094df5925b3594e198e91fe47b0f1971c7cacb0e05f2b474a2b72d81a0d5e5be216e9a998fcdf03ba62cc605d61005ce468780d227d4a805aef8decd83
@@ -10,6 +10,11 @@ This project attempts to follow [semantic versioning](https://semver.org/)
10
10
  * Not working on OSX - macs don't read from /etc/profile.d/
11
11
  * Stops showing color if you `sudo su`
12
12
 
13
+ ## 2.1.2
14
+ * bug fixes
15
+ * PostgreSQL database server works for version > 10
16
+ * New LetsEncrypt/NGINX servers get the correct file from the certbot repo
17
+
13
18
  ## 2.1.1
14
19
  * bug fixes
15
20
  * Fix error when not setting send_stats
@@ -60,7 +60,7 @@
60
60
  - name: Update nginx default options
61
61
  when: "'nginx' in role_names"
62
62
  get_url:
63
- url: https://raw.githubusercontent.com/certbot/certbot/master/certbot-nginx/certbot_nginx/options-ssl-nginx.conf
63
+ url: https://raw.githubusercontent.com/certbot/certbot/master/certbot-nginx/certbot_nginx/tls_configs/options-ssl-nginx.conf
64
64
  dest: /etc/letsencrypt/options-ssl-nginx.conf
65
65
 
66
66
  - name: Update apache default options
@@ -497,7 +497,9 @@ default_with_oids = {{'on' if postgresql_default_with_oids else 'off'}
497
497
  escape_string_warning = {{'on' if postgresql_escape_string_warning else 'off'}}
498
498
  lo_compat_privileges = {{'on' if postgresql_lo_compat_privileges else 'off'}}
499
499
  quote_all_identifiers = {{'on' if postgresql_quote_all_identifiers else 'off'}}
500
+ {% if postgresql_version < 10 %}
500
501
  sql_inheritance = {{'on' if postgresql_sql_inheritance else 'off'}}
502
+ {% endif %}
501
503
  standard_conforming_strings = {{'on' if postgresql_standard_conforming_strings else 'off'}}
502
504
  synchronize_seqscans = {{'on' if postgresql_synchronize_seqscans else 'off'}}
503
505
  transform_null_equals = {{'on' if postgresql_transform_null_equals else 'off'}}
@@ -1,3 +1,3 @@
1
1
  module Subspace
2
- VERSION = "2.1.1"
2
+ VERSION = "2.1.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: subspace
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Samson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-09-12 00:00:00.000000000 Z
11
+ date: 2019-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -300,7 +300,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
300
300
  - !ruby/object:Gem::Version
301
301
  version: '0'
302
302
  requirements: []
303
- rubygems_version: 3.0.3
303
+ rubyforge_project:
304
+ rubygems_version: 2.7.8
304
305
  signing_key:
305
306
  specification_version: 4
306
307
  summary: Ansible-based server provisioning for rails projects