plain.dev 0.33.0__py3-none-any.whl → 0.33.1__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,16 @@
1
1
  # plain-dev changelog
2
2
 
3
+ ## [0.33.1](https://github.com/dropseed/plain/releases/plain-dev@0.33.1) (2025-07-18)
4
+
5
+ ### What's changed
6
+
7
+ - Dev services are no longer automatically started when running in CI environments unless explicitly enabled with `PLAIN_DEV_SERVICES_AUTO=true` ([b8452bae74](https://github.com/dropseed/plain/commit/b8452bae74))
8
+ - The `plain dev logs` command now skips automatic service startup to avoid conflicts ([ff65428bca](https://github.com/dropseed/plain/commit/ff65428bca))
9
+
10
+ ### Upgrade instructions
11
+
12
+ - No changes required
13
+
3
14
  ## [0.33.0](https://github.com/dropseed/plain/releases/plain-dev@0.33.0) (2025-07-18)
4
15
 
5
16
  ### What's changed
plain/dev/cli.py CHANGED
@@ -24,6 +24,10 @@ class DevGroup(click.Group):
24
24
  def _auto_start_services():
25
25
  """Start dev *services* in the background if not already running."""
26
26
 
27
+ # Check if we're in CI and auto-start is not explicitly enabled
28
+ if os.environ.get("CI") and os.environ.get("PLAIN_DEV_SERVICES_AUTO") is None:
29
+ return
30
+
27
31
  if os.environ.get("PLAIN_DEV_SERVICES_AUTO", "true") not in [
28
32
  "1",
29
33
  "true",
@@ -32,8 +36,9 @@ class DevGroup(click.Group):
32
36
  return
33
37
 
34
38
  # Don't do anything if it looks like a "services" command is being run explicitly
35
- if "services" in sys.argv or "--stop" in sys.argv:
36
- return
39
+ if "dev" in sys.argv:
40
+ if "logs" in sys.argv or "services" in sys.argv or "--stop" in sys.argv:
41
+ return
37
42
 
38
43
  if not ServicesProcess.get_services(APP_PATH.parent):
39
44
  return
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plain.dev
3
- Version: 0.33.0
3
+ Version: 0.33.1
4
4
  Summary: Local development tools for Plain.
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=2jtWZmQ_VI5DuGWS3fzh4pyRVVQdyu9FCKy575Qbdqk,3129
1
+ plain/dev/CHANGELOG.md,sha256=jAFWdcHPeVbC9k1uvbii7gRV18rbszI0y_5inhN9I5s,3653
2
2
  plain/dev/README.md,sha256=Q-lyWmFH5DOq-xCGCLtEUNcanoldzQGANionqiE67Nw,4109
3
3
  plain/dev/__init__.py,sha256=9ByBOIdM8DebChjNz-RH2atdz4vWe8somlwNEsbhwh4,40
4
- plain/dev/cli.py,sha256=Ei6y9aYo0RqiiBBGJX8x0dP8gSWhcxOZygnKV4rrtOE,7907
4
+ plain/dev/cli.py,sha256=siRCSuSOoeYUWGUr3OPeat-OULozhGYhMmJ_gAe9DpA,8146
5
5
  plain/dev/core.py,sha256=SOR1xH0-TYY6zDo_G7dTqatKbg3hNuVO9uHBIVt7_Ac,12086
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.0.dist-info/METADATA,sha256=yK6_eeY2RQqMHUAZeWct7eJjmiid4drKaXddGTxZdMw,4576
27
- plain_dev-0.33.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
28
- plain_dev-0.33.0.dist-info/entry_points.txt,sha256=zrcTOiFk_MLKsnYVlwVP7aMm1XLEqq7w4EBkJ-3ge-g,114
29
- plain_dev-0.33.0.dist-info/licenses/LICENSE,sha256=Cx4Dq9yR2fLHthf8Ke36B8QJvE1bZFXVzDIGE8wGzsY,4132
30
- plain_dev-0.33.0.dist-info/RECORD,,
26
+ plain_dev-0.33.1.dist-info/METADATA,sha256=v0E-ImpPqMVUApj6s8tddCAd3bYHwI3IF7NSSbnt6E4,4576
27
+ plain_dev-0.33.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
28
+ plain_dev-0.33.1.dist-info/entry_points.txt,sha256=zrcTOiFk_MLKsnYVlwVP7aMm1XLEqq7w4EBkJ-3ge-g,114
29
+ plain_dev-0.33.1.dist-info/licenses/LICENSE,sha256=Cx4Dq9yR2fLHthf8Ke36B8QJvE1bZFXVzDIGE8wGzsY,4132
30
+ plain_dev-0.33.1.dist-info/RECORD,,