plain.dev 0.33.2__py3-none-any.whl → 0.33.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.
plain/dev/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # plain-dev changelog
2
2
 
3
+ ## [0.33.3](https://github.com/dropseed/plain/releases/plain-dev@0.33.3) (2025-09-03)
4
+
5
+ ### What's changed
6
+
7
+ - Added retries to background service startup to improve reliability when services take longer to initialize ([e2b3a42](https://github.com/dropseed/plain/commit/e2b3a42313))
8
+
9
+ ### Upgrade instructions
10
+
11
+ - No changes required
12
+
3
13
  ## [0.33.2](https://github.com/dropseed/plain/releases/plain-dev@0.33.2) (2025-08-22)
4
14
 
5
15
  ### What's changed
plain/dev/cli.py CHANGED
@@ -58,9 +58,14 @@ class DevGroup(click.Group):
58
58
  stderr=subprocess.DEVNULL,
59
59
  )
60
60
 
61
- time.sleep(0.5) # Give it a moment to start
62
-
63
- # If it's already dead, show the output and quit
61
+ # Give services time to start and retry the check
62
+ wait_times = [0.5, 1, 1] # First check at 0.5s, then 1s intervals
63
+ for wait_time in wait_times:
64
+ time.sleep(wait_time)
65
+ if ServicesProcess.running_pid():
66
+ return # Services started successfully
67
+
68
+ # Only show error after multiple attempts
64
69
  if not ServicesProcess.running_pid():
65
70
  click.secho(
66
71
  "Failed to start dev services. Here are the logs:",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plain.dev
3
- Version: 0.33.2
3
+ Version: 0.33.3
4
4
  Summary: A single command that runs everything you need for local development.
5
5
  Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
6
6
  License-Expression: BSD-3-Clause
@@ -1,7 +1,7 @@
1
- plain/dev/CHANGELOG.md,sha256=lPyt0SmMP02Of6lFsz82mTOg2kq5BcqmMdNdtZOXXAE,4151
1
+ plain/dev/CHANGELOG.md,sha256=Iz5bg8LgOPjox1DCq5ti_g03kdO-sD2LEGZJgfxGGRI,4482
2
2
  plain/dev/README.md,sha256=NnrH4weWiqrgL1ZUYcMTWqLX29uRBjy3n8HxLcIp4do,4809
3
3
  plain/dev/__init__.py,sha256=9ByBOIdM8DebChjNz-RH2atdz4vWe8somlwNEsbhwh4,40
4
- plain/dev/cli.py,sha256=siRCSuSOoeYUWGUr3OPeat-OULozhGYhMmJ_gAe9DpA,8146
4
+ plain/dev/cli.py,sha256=l2h0C1TZuHUweCYhfsJBC3nx6BmwaREFQVaJLlcltro,8392
5
5
  plain/dev/core.py,sha256=9eNbsndg3Q-UfqeWd2PvxVyH1dZZtnklibebMDpIv-I,12094
6
6
  plain/dev/debug.py,sha256=Ka84K8zUdF0kMYNyqiLYDrdzU1jU8LSOkts3hcw_Gok,1005
7
7
  plain/dev/default_settings.py,sha256=uXWYORWP_aRDwXIFXdu5kHyiBFUZzARIJdhPeFaX35c,75
@@ -23,8 +23,8 @@ plain/dev/poncho/printer.py,sha256=1LhaQx55ujxmo-SSwQtzsh0bO6HL5q2_kiA0jLWEB-o,2
23
23
  plain/dev/poncho/process.py,sha256=JJOKy-C6vMCg7-6JMCtu6C649h7HmOBSJqDP_hnX49I,2637
24
24
  plain/dev/precommit/__init__.py,sha256=9ByBOIdM8DebChjNz-RH2atdz4vWe8somlwNEsbhwh4,40
25
25
  plain/dev/precommit/cli.py,sha256=ax_2cUpYfOhh6iZirhZS5cX0jy6rTfJAWzwm1qeRm58,3176
26
- plain_dev-0.33.2.dist-info/METADATA,sha256=2hhGgUcA4YyMUdhSUwKTAxkcrbK2auG98D26gKi77dI,5311
27
- plain_dev-0.33.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
28
- plain_dev-0.33.2.dist-info/entry_points.txt,sha256=zrcTOiFk_MLKsnYVlwVP7aMm1XLEqq7w4EBkJ-3ge-g,114
29
- plain_dev-0.33.2.dist-info/licenses/LICENSE,sha256=Cx4Dq9yR2fLHthf8Ke36B8QJvE1bZFXVzDIGE8wGzsY,4132
30
- plain_dev-0.33.2.dist-info/RECORD,,
26
+ plain_dev-0.33.3.dist-info/METADATA,sha256=-CfZ8BeIupq3qd2U3IBok-wSa7ER0T7PIKfFadCucng,5311
27
+ plain_dev-0.33.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
28
+ plain_dev-0.33.3.dist-info/entry_points.txt,sha256=zrcTOiFk_MLKsnYVlwVP7aMm1XLEqq7w4EBkJ-3ge-g,114
29
+ plain_dev-0.33.3.dist-info/licenses/LICENSE,sha256=Cx4Dq9yR2fLHthf8Ke36B8QJvE1bZFXVzDIGE8wGzsY,4132
30
+ plain_dev-0.33.3.dist-info/RECORD,,