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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a260828450e308fd7317630c6c600d03978e98f335685c9d951e82e036a8ac9
|
4
|
+
data.tar.gz: abe9b351937889ffb9132f2ce470b2b81d3f4eced1fc7d0524e041be5709172a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
|
@@ -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-
|
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
|
data/lib/subspace/version.rb
CHANGED