plain.dev 0.33.0__tar.gz → 0.33.1__tar.gz

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.
Files changed (31) hide show
  1. {plain_dev-0.33.0 → plain_dev-0.33.1}/PKG-INFO +1 -1
  2. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/CHANGELOG.md +11 -0
  3. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/cli.py +7 -2
  4. {plain_dev-0.33.0 → plain_dev-0.33.1}/pyproject.toml +1 -1
  5. {plain_dev-0.33.0 → plain_dev-0.33.1}/.gitignore +0 -0
  6. {plain_dev-0.33.0 → plain_dev-0.33.1}/LICENSE +0 -0
  7. {plain_dev-0.33.0 → plain_dev-0.33.1}/README.md +0 -0
  8. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/README.md +0 -0
  9. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/__init__.py +0 -0
  10. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/contribute/README.md +0 -0
  11. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/contribute/__init__.py +0 -0
  12. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/contribute/cli.py +0 -0
  13. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/core.py +0 -0
  14. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/debug.py +0 -0
  15. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/default_settings.py +0 -0
  16. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/entrypoints.py +0 -0
  17. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/gunicorn_logging.json +0 -0
  18. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/mkcert.py +0 -0
  19. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/pdb.py +0 -0
  20. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/poncho/__init__.py +0 -0
  21. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/poncho/color.py +0 -0
  22. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/poncho/compat.py +0 -0
  23. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/poncho/manager.py +0 -0
  24. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/poncho/printer.py +0 -0
  25. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/poncho/process.py +0 -0
  26. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/precommit/__init__.py +0 -0
  27. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/precommit/cli.py +0 -0
  28. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/process.py +0 -0
  29. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/services.py +0 -0
  30. {plain_dev-0.33.0 → plain_dev-0.33.1}/plain/dev/utils.py +0 -0
  31. {plain_dev-0.33.0 → plain_dev-0.33.1}/tests/settings.py +0 -0
@@ -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,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
@@ -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
  [project]
2
2
  name = "plain.dev"
3
- version = "0.33.0"
3
+ version = "0.33.1"
4
4
  description = "Local development tools for Plain."
5
5
  authors = [{name = "Dave Gaeddert", email = "dave.gaeddert@dropseed.dev"}]
6
6
  license = "BSD-3-Clause"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes