snapctl 1.0.2__py3-none-any.whl → 1.0.3__py3-none-any.whl

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.

Potentially problematic release.


This version of snapctl might be problematic. Click here for more details.

snapctl/commands/byogs.py CHANGED
@@ -229,14 +229,14 @@ class ByoGs:
229
229
  if platform == "win32":
230
230
  response = subprocess.run([
231
231
  # f"docker build --no-cache -t {tag} {path}"
232
- 'docker', 'build', '--platform', build_platform, '-t', self.tag,
232
+ 'docker', 'build', '--load', '--platform', build_platform, '-t', self.tag,
233
233
  '-f', self.docker_path_filename, self.path
234
234
  ], shell=True, check=False, env=env)
235
235
  # stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT)
236
236
  else:
237
237
  response = subprocess.run([
238
238
  # f"docker build --no-cache -t {tag} {path}"
239
- "docker build --platform " +
239
+ "docker build --load --platform " +
240
240
  f"{build_platform} -t {self.tag} " +
241
241
  f"-f {self.docker_path_filename} {self.path}"
242
242
  ], shell=True, check=False, env=env)
@@ -748,14 +748,14 @@ class ByoSnap:
748
748
  if platform == "win32":
749
749
  response = subprocess.run([
750
750
  # f"docker build --no-cache -t {remote_tag} {path}"
751
- 'docker', 'build', '--platform', build_platform, '-t', self.remote_tag,
751
+ 'docker', 'build', '--load', '--platform', build_platform, '-t', self.remote_tag,
752
752
  '-f', self.docker_path_filename, self.path
753
753
  ], shell=True, check=False, env=env)
754
754
  # stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT)
755
755
  else:
756
756
  response = subprocess.run([
757
757
  # f"docker build --no-cache -t {remote_tag} {path}"
758
- "docker build --platform " +
758
+ "docker build --load --platform " +
759
759
  f"{build_platform} -t {self.remote_tag} " +
760
760
  f"-f {self.docker_path_filename} {self.path}"
761
761
  ], shell=True, check=False, env=env)
@@ -3,7 +3,7 @@ Constants used by snapctl
3
3
  """
4
4
  COMPANY_NAME = 'Snapser'
5
5
  VERSION_PREFIX = ''
6
- VERSION = '1.0.2'
6
+ VERSION = '1.0.3'
7
7
  CONFIG_FILE_MAC = '~/.snapser/config'
8
8
  CONFIG_FILE_WIN = '%homepath%\\.snapser\\config'
9
9
 
@@ -0,0 +1,5 @@
1
+ ## Release 1.0.2
2
+ ##### Sept 19, 2025
3
+
4
+ ### Fixes
5
+ 1. The Click library made a non-backward compatible change in version 8.x that broke the Typer library. This has been fixed by upgrading Typer.
@@ -0,0 +1,5 @@
1
+ ## Release 1.0.3
2
+ ##### Sept 22, 2025
3
+
4
+ ### Breaking Change
5
+ 1. BYOSnap and BYOGs publishes will be stopped once you hit the limit of 500 images. You can still publish more images by deleting older images from the Snapser Web app.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: snapctl
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: Snapser CLI Tool
5
5
  Author: Ajinkya Apte
6
6
  Author-email: aj@snapser.com
@@ -1,8 +1,8 @@
1
1
  snapctl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  snapctl/__main__.py,sha256=43jKoTk8b85hk_MT6499N3ruHdEfM8WBImd_-3VzjI8,116
3
3
  snapctl/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- snapctl/commands/byogs.py,sha256=ZeSb6q8zaBCRgUe1MKo_zFvqU70k-tcMFFDqR0F5fGg,20176
5
- snapctl/commands/byosnap.py,sha256=TAITdbB_FhGk7K94bPDDjykXbU9XwO9opW__qdeg0SQ,78187
4
+ snapctl/commands/byogs.py,sha256=bomIucEEftlIsCB369cYyfxXStSrW7OgjAcaEUPteGI,20193
5
+ snapctl/commands/byosnap.py,sha256=pWzh0myELb2qefnerA3tIFmp5R_uk3JQs74zetiXYw4,78204
6
6
  snapctl/commands/byows.py,sha256=wbfCGbjigZo37mryvvE_VJ9bJWjIjcRBLAS7IT6VNrI,18906
7
7
  snapctl/commands/game.py,sha256=lAABIWIibrwcqvpKvTy_7UzzLtbiP6gdk4_qPBHFKOI,5248
8
8
  snapctl/commands/generate.py,sha256=9-NlZVQllBT2LZT_t9S3ztwtHzTbM-C8_x0f6z70U3g,5606
@@ -10,7 +10,7 @@ snapctl/commands/release_notes.py,sha256=EMl-NK9-MSdRxiVyA0MLX4CBG0zijOctddEODQa
10
10
  snapctl/commands/snapend.py,sha256=Fxaf-oy_EX_MYzjR1OVibeClr0UUM53PZllyh28WAEU,40015
11
11
  snapctl/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
12
  snapctl/config/app.py,sha256=U9Mm0BbGJoqcmBBam2tN7F-oTf_u9dK6EJsiB-yVvKg,888
13
- snapctl/config/constants.py,sha256=trN5WMORszkeLffMhDHx_D5uMfgox-8JGUDU5szDY3M,3843
13
+ snapctl/config/constants.py,sha256=qAjeXAFlmkebFMMJo1kb3_nmfkYOinBFHM0ZYsRnB0A,3843
14
14
  snapctl/config/endpoints.py,sha256=jD0n5ocJBbIkrb97F2_r9hqAHzUuddAqzqqBAPUKDTI,477
15
15
  snapctl/config/hashes.py,sha256=3OKAyOxQPnn--_hvPIzFJnhC8NVfQK4WT-RH4PHEV1w,5242
16
16
  snapctl/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -19,6 +19,8 @@ snapctl/data/profiles/snapser-byosnap-profile.json,sha256=c7oIzMJewVQaoLaXCBPXlH
19
19
  snapctl/data/profiles/snapser-byosnap-profile.yaml,sha256=vK5JqHa1f1_jlcW0m7qg-sKN9njE8PURJHzaRdvfEOY,3600
20
20
  snapctl/data/profiles/snapser-byosnap-profile.yml,sha256=vK5JqHa1f1_jlcW0m7qg-sKN9njE8PURJHzaRdvfEOY,3600
21
21
  snapctl/data/releases/1.0.0.mdx,sha256=UY6qLOFv7lGgBU2A6ROf4Q0WGW-JbYN2ZyhLO3JUIKs,215
22
+ snapctl/data/releases/1.0.2.mdx,sha256=BptVj9boWRf_V22O0V4EzkGFPFWK6XzRQUQlmTFTZdY,192
23
+ snapctl/data/releases/1.0.3.mdx,sha256=IGEb6qqV06diXkejw9ZX1KGyb_cLe-aiwTTUN7Vw0aE,228
22
24
  snapctl/data/releases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
25
  snapctl/data/releases/beta-0.46.0.mdx,sha256=_MJA7TnnJjAnNm_EOvoBiz7FjHwl4c49sYtZ9r4KZQE,2386
24
26
  snapctl/data/releases/beta-0.46.4.mdx,sha256=3-ojdCyvax27sdd8nKmcP0zfCWEzi_edPbSlkFqla4o,173
@@ -40,8 +42,8 @@ snapctl/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
42
  snapctl/utils/echo.py,sha256=9fxrPW9kNJwiJvJBFy9RlAP4qGRcPTOHfQb3pQh3CMg,1446
41
43
  snapctl/utils/helper.py,sha256=5c5jfAYD4WsvPpuCLMCz3tPvji28786_pD9TZkRSFIs,7179
42
44
  snapctl/utils/telemetry.py,sha256=_VntKXUrKgJoLKCskH0Z5VhthiVo8CP572U0mcZIH4k,5028
43
- snapctl-1.0.2.dist-info/LICENSE,sha256=6AcXm54KFSpmUI1ji9NIBd4Xl-DtjTqiyjBzfVb_CEk,2804
44
- snapctl-1.0.2.dist-info/METADATA,sha256=vZqEeGK5vRBxjZFjnm9C380J1Jk1PBjFSZRuJPMhAQY,36289
45
- snapctl-1.0.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
46
- snapctl-1.0.2.dist-info/entry_points.txt,sha256=tkKW9MzmFdRs6Bgkv29G78i9WEBK4WIOWunPfe3t2Wg,44
47
- snapctl-1.0.2.dist-info/RECORD,,
45
+ snapctl-1.0.3.dist-info/LICENSE,sha256=6AcXm54KFSpmUI1ji9NIBd4Xl-DtjTqiyjBzfVb_CEk,2804
46
+ snapctl-1.0.3.dist-info/METADATA,sha256=KmhoeaOOOY4uIHa8b3Zcj7KjAZltde4em7H5IIJbLOI,36289
47
+ snapctl-1.0.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
48
+ snapctl-1.0.3.dist-info/entry_points.txt,sha256=tkKW9MzmFdRs6Bgkv29G78i9WEBK4WIOWunPfe3t2Wg,44
49
+ snapctl-1.0.3.dist-info/RECORD,,