subspace 3.0.15 → 3.0.16

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: 5cc950fa7b09a6ef5cb18212e14c661376afeeceeb2e5c990bc8e2302d44788d
4
- data.tar.gz: ad1171b3e1c7651c0dc4e955f68c39a67a9345a49f8a4a878abdeb4e391f4787
3
+ metadata.gz: 0a260828450e308fd7317630c6c600d03978e98f335685c9d951e82e036a8ac9
4
+ data.tar.gz: abe9b351937889ffb9132f2ce470b2b81d3f4eced1fc7d0524e041be5709172a
5
5
  SHA512:
6
- metadata.gz: 1c0061ec55955345e945d50c13ed6ed00e76aff8265e179a0586fc0b23d7847ffae5401907a585249b26d285d389c04002628bf20b0507d303f52cc0671afaa8
7
- data.tar.gz: 0406e81f40523849cbaa6b883e11aa10226ea15b7710790c93ac6ffc456617cb45c19c6e89df5fc34baf6bcf082ff454fbe83d1185c568f1d8a80d4ce801413c
6
+ metadata.gz: 39a81cd786609648733f07ea2c566cf401f3c37da825f4fea7ab411ea10a01b154e41fccb458ee8ff5280db0f37fe99a8c715d9d5c0c543428f59d1689af2a23
7
+ data.tar.gz: fa9470ca357e1cf688720426287460b3abfa601b0c13e9f69a6f300f3d566519933953d3c7dc6ad200251a22914e3bd2dc686e1fca65fbab05979fce1cdea517
data/CHANGELOG.md CHANGED
@@ -12,6 +12,9 @@ This project attempts to follow [semantic versioning](https://semver.org/).
12
12
 
13
13
  ## Unreleased
14
14
 
15
+ ## 3.0.16
16
+ * Ignore errors on getting rails version
17
+
15
18
  ## 3.0.15
16
19
  * Add 'abbrev' gem as runtime dependency to fix issue when doing `subspace ssh {hostname}`
17
20
 
@@ -62,6 +62,7 @@
62
62
  tags:
63
63
  - maintenance
64
64
  - stats
65
+ ignore_errors: yes
65
66
 
66
67
  - name: Send Rails stats to URL
67
68
  uri:
@@ -80,4 +81,5 @@
80
81
  tags:
81
82
  - maintenance
82
83
  - stats
84
+ ignore_errors: yes
83
85
 
@@ -89,6 +89,7 @@
89
89
  tags:
90
90
  - maintenance
91
91
  - stats
92
+ ignore_errors: yes
92
93
 
93
94
  - name: Send Ruby stats to URL
94
95
  uri:
@@ -107,3 +108,4 @@
107
108
  tags:
108
109
  - maintenance
109
110
  - stats
111
+ ignore_errors: yes
@@ -29,7 +29,7 @@
29
29
  - name: "Install tailscale from apt"
30
30
  apt:
31
31
  name: tailscale
32
- state: present
32
+ state: latest
33
33
  allow_downgrade: true
34
34
  update_cache: yes
35
35
  tags:
@@ -138,7 +138,7 @@ class Subspace::Commands::Init < Subspace::Commands::Base
138
138
 
139
139
  def set_latest_ami
140
140
  @latest_ami = `aws --profile subspace-#{project_name} ec2 describe-images \
141
- --filters 'Name=name,Values=ubuntu/images/hvm-ssd/ubuntu-jammy-22.04-amd64*' \
141
+ --filters 'Name=name,Values=ubuntu/images/hvm-ssd-gp3/ubuntu-noble-24.04-amd64*' \
142
142
  --query 'Images[*].[ImageId,CreationDate]' --output text \
143
143
  | sort -k2 -r \
144
144
  | head -n1 | cut -f1`.chomp
@@ -1,3 +1,3 @@
1
1
  module Subspace
2
- VERSION = "3.0.15"
2
+ VERSION = "3.0.16"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: subspace
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.15
4
+ version: 3.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Samson