plain 0.54.1__tar.gz → 0.56.0__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.
- {plain-0.54.1 → plain-0.56.0}/PKG-INFO +1 -1
- {plain-0.54.1 → plain-0.56.0}/plain/CHANGELOG.md +26 -0
- plain-0.56.0/plain/cli/agent.py +44 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/core.py +4 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/docs.py +3 -0
- plain-0.56.0/plain/cli/install.py +81 -0
- plain-0.56.0/plain/cli/upgrade.py +168 -0
- {plain-0.54.1 → plain-0.56.0}/plain/urls/patterns.py +2 -2
- {plain-0.54.1 → plain-0.56.0}/plain/views/README.md +3 -3
- {plain-0.54.1 → plain-0.56.0}/pyproject.toml +1 -1
- {plain-0.54.1 → plain-0.56.0}/.gitignore +0 -0
- {plain-0.54.1 → plain-0.56.0}/LICENSE +0 -0
- {plain-0.54.1 → plain-0.56.0}/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/__main__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/assets/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/assets/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/assets/compile.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/assets/finders.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/assets/fingerprints.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/assets/urls.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/assets/views.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/chores/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/chores/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/chores/registry.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/build.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/changelog.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/chores.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/formatting.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/help.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/output.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/preflight.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/print.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/registry.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/scaffold.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/settings.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/shell.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/startup.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/urls.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/cli/utils.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/csrf/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/csrf/middleware.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/csrf/views.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/debug.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/exceptions.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/forms/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/forms/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/forms/boundfield.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/forms/exceptions.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/forms/fields.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/forms/forms.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/http/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/http/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/http/cookie.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/http/multipartparser.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/http/request.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/http/response.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/files/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/files/base.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/files/locks.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/files/move.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/files/temp.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/files/uploadedfile.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/files/uploadhandler.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/files/utils.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/handlers/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/handlers/base.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/handlers/exception.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/handlers/wsgi.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/middleware/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/middleware/headers.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/middleware/https.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/internal/middleware/slash.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/json.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/logs/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/logs/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/logs/configure.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/logs/loggers.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/logs/utils.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/packages/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/packages/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/packages/config.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/packages/registry.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/paginator.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/preflight/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/preflight/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/preflight/files.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/preflight/messages.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/preflight/registry.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/preflight/security.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/preflight/urls.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/runtime/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/runtime/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/runtime/global_settings.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/runtime/user_settings.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/signals/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/signals/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/signals/dispatch/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/signals/dispatch/dispatcher.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/signals/dispatch/license.txt +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/signing.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/templates/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/templates/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/templates/core.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/templates/jinja/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/templates/jinja/environments.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/templates/jinja/extensions.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/templates/jinja/filters.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/templates/jinja/globals.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/test/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/test/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/test/client.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/test/encoding.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/test/exceptions.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/urls/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/urls/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/urls/converters.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/urls/exceptions.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/urls/resolvers.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/urls/routers.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/urls/utils.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/README.md +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/cache.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/crypto.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/datastructures.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/dateparse.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/deconstruct.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/decorators.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/duration.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/encoding.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/functional.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/hashable.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/html.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/http.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/inspect.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/ipv6.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/itercompat.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/module_loading.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/regex_helper.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/safestring.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/text.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/timesince.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/timezone.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/utils/tree.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/validators.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/views/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/views/base.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/views/csrf.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/views/errors.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/views/exceptions.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/views/forms.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/views/objects.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/views/redirect.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/views/templates.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/plain/wsgi.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/tests/.gitignore +0 -0
- {plain-0.54.1 → plain-0.56.0}/tests/app/.gitignore +0 -0
- {plain-0.54.1 → plain-0.56.0}/tests/app/settings.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/tests/app/test/__init__.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/tests/app/test/default_settings.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/tests/app/urls.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/tests/conftest.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/tests/test_cli.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/tests/test_runtime.py +0 -0
- {plain-0.54.1 → plain-0.56.0}/tests/test_wsgi.py +0 -0
@@ -1,5 +1,31 @@
|
|
1
1
|
# plain changelog
|
2
2
|
|
3
|
+
## [0.56.0](https://github.com/dropseed/plain/releases/plain@0.56.0) (2025-07-25)
|
4
|
+
|
5
|
+
### What's changed
|
6
|
+
|
7
|
+
- Added `plain install` command to install Plain packages with agent-assisted setup ([bf1873e](https://github.com/dropseed/plain/commit/bf1873eb81))
|
8
|
+
- Added `--print` option to agent commands (`plain install` and `plain upgrade`) to print prompts without running the agent ([9721331](https://github.com/dropseed/plain/commit/9721331e40))
|
9
|
+
- The `plain docs` command now automatically converts hyphens to dots in package names (e.g., `plain-models` → `plain.models`) ([1e3edc1](https://github.com/dropseed/plain/commit/1e3edc10f7))
|
10
|
+
- Moved `plain-upgrade` functionality into plain core, eliminating the need for a separate package ([473f9bb](https://github.com/dropseed/plain/commit/473f9bb718))
|
11
|
+
|
12
|
+
### Upgrade instructions
|
13
|
+
|
14
|
+
- No changes required
|
15
|
+
|
16
|
+
## [0.55.0](https://github.com/dropseed/plain/releases/plain@0.55.0) (2025-07-22)
|
17
|
+
|
18
|
+
### What's changed
|
19
|
+
|
20
|
+
- Updated URL pattern documentation examples to use `id` instead of `pk` in URL kwargs ([b656ee6](https://github.com/dropseed/plain/commit/b656ee6e4e))
|
21
|
+
- Updated views documentation examples to use `id` instead of `pk` for DetailView, UpdateView, and DeleteView ([b656ee6](https://github.com/dropseed/plain/commit/b656ee6e4e))
|
22
|
+
|
23
|
+
### Upgrade instructions
|
24
|
+
|
25
|
+
- Update your URL patterns from `<int:pk>` to `<int:id>` in your URLconf
|
26
|
+
- Update view code that accesses `self.url_kwargs["pk"]` to use `self.url_kwargs["id"]` instead
|
27
|
+
- Replace any QuerySet filters using `pk` with `id` (e.g., `Model.objects.get(pk=1)` becomes `Model.objects.get(id=1)`)
|
28
|
+
|
3
29
|
## [0.54.1](https://github.com/dropseed/plain/releases/plain@0.54.1) (2025-07-20)
|
4
30
|
|
5
31
|
### What's changed
|
@@ -0,0 +1,44 @@
|
|
1
|
+
import shlex
|
2
|
+
import subprocess
|
3
|
+
|
4
|
+
import click
|
5
|
+
|
6
|
+
|
7
|
+
def prompt_agent(
|
8
|
+
prompt: str, agent_command: str | None = None, print_only: bool = False
|
9
|
+
) -> bool:
|
10
|
+
"""
|
11
|
+
Run an agent command with the given prompt, or display the prompt for manual copying.
|
12
|
+
|
13
|
+
Args:
|
14
|
+
prompt: The prompt to send to the agent
|
15
|
+
agent_command: Optional command to run (e.g., "claude code"). If not provided,
|
16
|
+
will check the PLAIN_AGENT_COMMAND environment variable.
|
17
|
+
print_only: If True, always print the prompt instead of running the agent
|
18
|
+
|
19
|
+
Returns:
|
20
|
+
True if the agent command succeeded (or no agent command was provided),
|
21
|
+
False if the agent command failed.
|
22
|
+
"""
|
23
|
+
if print_only or not agent_command:
|
24
|
+
click.echo(prompt)
|
25
|
+
if not print_only:
|
26
|
+
click.secho(
|
27
|
+
"\nCopy the prompt above to a coding agent. To run an agent automatically, use --agent-command or set the PLAIN_AGENT_COMMAND environment variable.",
|
28
|
+
dim=True,
|
29
|
+
italic=True,
|
30
|
+
err=True,
|
31
|
+
)
|
32
|
+
return True
|
33
|
+
else:
|
34
|
+
cmd = shlex.split(agent_command)
|
35
|
+
cmd.append(prompt)
|
36
|
+
result = subprocess.run(cmd, check=False)
|
37
|
+
if result.returncode != 0:
|
38
|
+
click.secho(
|
39
|
+
f"Agent command failed with exit code {result.returncode}",
|
40
|
+
fg="red",
|
41
|
+
err=True,
|
42
|
+
)
|
43
|
+
return False
|
44
|
+
return True
|
@@ -12,11 +12,13 @@ from .chores import chores
|
|
12
12
|
from .docs import docs
|
13
13
|
from .formatting import PlainContext
|
14
14
|
from .help import help_cmd
|
15
|
+
from .install import install
|
15
16
|
from .preflight import preflight_checks
|
16
17
|
from .registry import cli_registry
|
17
18
|
from .scaffold import create
|
18
19
|
from .settings import setting
|
19
20
|
from .shell import run, shell
|
21
|
+
from .upgrade import upgrade
|
20
22
|
from .urls import urls
|
21
23
|
from .utils import utils
|
22
24
|
|
@@ -37,6 +39,8 @@ plain_cli.add_command(changelog)
|
|
37
39
|
plain_cli.add_command(setting)
|
38
40
|
plain_cli.add_command(shell)
|
39
41
|
plain_cli.add_command(run)
|
42
|
+
plain_cli.add_command(install)
|
43
|
+
plain_cli.add_command(upgrade)
|
40
44
|
plain_cli.add_command(help_cmd)
|
41
45
|
|
42
46
|
|
@@ -40,6 +40,9 @@ def docs(module, llm, open):
|
|
40
40
|
return
|
41
41
|
|
42
42
|
if module:
|
43
|
+
# Convert hyphens to dots (e.g., plain-models -> plain.models)
|
44
|
+
module = module.replace("-", ".")
|
45
|
+
|
43
46
|
# Automatically prefix if we need to
|
44
47
|
if not module.startswith("plain"):
|
45
48
|
module = f"plain.{module}"
|
@@ -0,0 +1,81 @@
|
|
1
|
+
import subprocess
|
2
|
+
import sys
|
3
|
+
|
4
|
+
import click
|
5
|
+
|
6
|
+
from .agent import prompt_agent
|
7
|
+
|
8
|
+
|
9
|
+
@click.command()
|
10
|
+
@click.argument("packages", nargs=-1, required=True)
|
11
|
+
@click.option(
|
12
|
+
"--agent-command",
|
13
|
+
envvar="PLAIN_AGENT_COMMAND",
|
14
|
+
help="Run command with generated prompt",
|
15
|
+
)
|
16
|
+
@click.option(
|
17
|
+
"--print",
|
18
|
+
"print_only",
|
19
|
+
is_flag=True,
|
20
|
+
help="Print the prompt without running the agent",
|
21
|
+
)
|
22
|
+
def install(
|
23
|
+
packages: tuple[str, ...],
|
24
|
+
agent_command: str | None = None,
|
25
|
+
print_only: bool = False,
|
26
|
+
) -> None:
|
27
|
+
"""Install Plain packages with the help of an agent."""
|
28
|
+
# Validate all package names
|
29
|
+
invalid_packages = [pkg for pkg in packages if not pkg.startswith("plain")]
|
30
|
+
if invalid_packages:
|
31
|
+
raise click.UsageError(
|
32
|
+
f"The following packages do not start with 'plain': {', '.join(invalid_packages)}\n"
|
33
|
+
"This command is only for Plain framework packages."
|
34
|
+
)
|
35
|
+
|
36
|
+
# Install all packages first
|
37
|
+
if len(packages) == 1:
|
38
|
+
click.secho(f"Installing {packages[0]}...", bold=True, err=True)
|
39
|
+
else:
|
40
|
+
click.secho(f"Installing {len(packages)} packages...", bold=True, err=True)
|
41
|
+
for pkg in packages:
|
42
|
+
click.secho(f" - {pkg}", err=True)
|
43
|
+
click.echo(err=True)
|
44
|
+
|
45
|
+
install_cmd = ["uv", "add"] + list(packages)
|
46
|
+
result = subprocess.run(install_cmd, check=False, stderr=sys.stderr)
|
47
|
+
|
48
|
+
if result.returncode != 0:
|
49
|
+
raise click.ClickException("Failed to install packages")
|
50
|
+
|
51
|
+
click.echo(err=True)
|
52
|
+
if len(packages) == 1:
|
53
|
+
click.secho(f"✓ {packages[0]} installed successfully", fg="green", err=True)
|
54
|
+
else:
|
55
|
+
click.secho(
|
56
|
+
f"✓ {len(packages)} packages installed successfully", fg="green", err=True
|
57
|
+
)
|
58
|
+
click.echo(err=True)
|
59
|
+
|
60
|
+
# Build the prompt for the agent to complete setup
|
61
|
+
lines = [
|
62
|
+
f"Complete the setup for the following Plain packages that were just installed: {', '.join(packages)}",
|
63
|
+
"",
|
64
|
+
"## Instructions",
|
65
|
+
"",
|
66
|
+
"For each package:",
|
67
|
+
"1. Run `uv run plain docs <package>` and follow any setup instructions",
|
68
|
+
"2. If the docs point out that it is a --dev tool, move it to dev dependencies: `uv remove <package> && uv add <package> --dev`",
|
69
|
+
"",
|
70
|
+
"DO NOT commit any changes",
|
71
|
+
"",
|
72
|
+
"Report back with:",
|
73
|
+
"- Whether the setup completed successfully",
|
74
|
+
"- Any manual steps that still need to be completed",
|
75
|
+
"- Any issues or errors encountered",
|
76
|
+
]
|
77
|
+
|
78
|
+
prompt = "\n".join(lines)
|
79
|
+
success = prompt_agent(prompt, agent_command, print_only)
|
80
|
+
if not success:
|
81
|
+
raise click.Abort()
|
@@ -0,0 +1,168 @@
|
|
1
|
+
import subprocess
|
2
|
+
import sys
|
3
|
+
import tomllib
|
4
|
+
from pathlib import Path
|
5
|
+
|
6
|
+
import click
|
7
|
+
|
8
|
+
from .agent import prompt_agent
|
9
|
+
|
10
|
+
LOCK_FILE = Path("uv.lock")
|
11
|
+
|
12
|
+
|
13
|
+
@click.command()
|
14
|
+
@click.argument("packages", nargs=-1)
|
15
|
+
@click.option(
|
16
|
+
"--diff", is_flag=True, help="Read versions from unstaged uv.lock changes"
|
17
|
+
)
|
18
|
+
@click.option(
|
19
|
+
"--agent-command",
|
20
|
+
envvar="PLAIN_AGENT_COMMAND",
|
21
|
+
help="Run command with generated prompt",
|
22
|
+
)
|
23
|
+
@click.option(
|
24
|
+
"--print",
|
25
|
+
"print_only",
|
26
|
+
is_flag=True,
|
27
|
+
help="Print the prompt without running the agent",
|
28
|
+
)
|
29
|
+
def upgrade(
|
30
|
+
packages: tuple[str, ...],
|
31
|
+
diff: bool,
|
32
|
+
agent_command: str | None = None,
|
33
|
+
print_only: bool = False,
|
34
|
+
) -> None:
|
35
|
+
"""Upgrade Plain packages with the help of an agent."""
|
36
|
+
if not packages:
|
37
|
+
click.secho("Getting installed packages...", bold=True, err=True)
|
38
|
+
packages = tuple(sorted(get_installed_plain_packages()))
|
39
|
+
for pkg in packages:
|
40
|
+
click.secho(f"- {click.style(pkg, fg='yellow')}", err=True)
|
41
|
+
click.echo(err=True)
|
42
|
+
|
43
|
+
if not packages:
|
44
|
+
raise click.UsageError("No plain packages found or specified.")
|
45
|
+
|
46
|
+
if diff:
|
47
|
+
before_after = versions_from_diff(packages)
|
48
|
+
else:
|
49
|
+
before_after = upgrade_packages(packages)
|
50
|
+
|
51
|
+
# Remove all packages that were not upgraded
|
52
|
+
before_after = {
|
53
|
+
pkg: versions
|
54
|
+
for pkg, versions in before_after.items()
|
55
|
+
if versions[0] != versions[1]
|
56
|
+
}
|
57
|
+
|
58
|
+
if not before_after:
|
59
|
+
click.secho(
|
60
|
+
"No packages were upgraded. If uv.lock has already been updated, use --diff instead.",
|
61
|
+
fg="green",
|
62
|
+
err=True,
|
63
|
+
)
|
64
|
+
return
|
65
|
+
|
66
|
+
prompt = build_prompt(before_after)
|
67
|
+
success = prompt_agent(prompt, agent_command, print_only)
|
68
|
+
if not success:
|
69
|
+
raise click.Abort()
|
70
|
+
|
71
|
+
|
72
|
+
def get_installed_plain_packages() -> list[str]:
|
73
|
+
lock_text = LOCK_FILE.read_text()
|
74
|
+
data = tomllib.loads(lock_text)
|
75
|
+
names: list[str] = []
|
76
|
+
for pkg in data.get("package", []):
|
77
|
+
name = pkg.get("name", "")
|
78
|
+
if name.startswith("plain") and name != "plain-upgrade":
|
79
|
+
names.append(name)
|
80
|
+
return names
|
81
|
+
|
82
|
+
|
83
|
+
def parse_lock_versions(lock_text: str, packages: set[str]) -> dict[str, str]:
|
84
|
+
data = tomllib.loads(lock_text)
|
85
|
+
versions: dict[str, str] = {}
|
86
|
+
for pkg in data.get("package", []):
|
87
|
+
name = pkg.get("name")
|
88
|
+
if name in packages:
|
89
|
+
versions[name] = pkg.get("version")
|
90
|
+
return versions
|
91
|
+
|
92
|
+
|
93
|
+
def versions_from_diff(
|
94
|
+
packages: tuple[str, ...],
|
95
|
+
) -> dict[str, tuple[str | None, str | None]]:
|
96
|
+
result = subprocess.run(
|
97
|
+
["git", "status", "--porcelain", str(LOCK_FILE)], capture_output=True, text=True
|
98
|
+
)
|
99
|
+
if not result.stdout.strip():
|
100
|
+
raise click.UsageError(
|
101
|
+
"--diff specified but uv.lock has no uncommitted changes"
|
102
|
+
)
|
103
|
+
|
104
|
+
prev_text = subprocess.run(
|
105
|
+
["git", "show", f"HEAD:{LOCK_FILE}"], capture_output=True, text=True, check=True
|
106
|
+
).stdout
|
107
|
+
current_text = LOCK_FILE.read_text()
|
108
|
+
|
109
|
+
packages_set = set(packages)
|
110
|
+
before = parse_lock_versions(prev_text, packages_set)
|
111
|
+
after = parse_lock_versions(current_text, packages_set)
|
112
|
+
|
113
|
+
return {pkg: (before.get(pkg), after.get(pkg)) for pkg in packages}
|
114
|
+
|
115
|
+
|
116
|
+
def upgrade_packages(
|
117
|
+
packages: tuple[str, ...],
|
118
|
+
) -> dict[str, tuple[str | None, str | None]]:
|
119
|
+
before = parse_lock_versions(LOCK_FILE.read_text(), set(packages))
|
120
|
+
|
121
|
+
upgrade_args = ["uv", "sync"]
|
122
|
+
for pkg in packages:
|
123
|
+
upgrade_args.extend(["--upgrade-package", pkg])
|
124
|
+
|
125
|
+
click.secho("Upgrading with uv sync...", bold=True, err=True)
|
126
|
+
subprocess.run(upgrade_args, check=True, stdout=sys.stderr)
|
127
|
+
click.echo(err=True)
|
128
|
+
|
129
|
+
after = parse_lock_versions(LOCK_FILE.read_text(), set(packages))
|
130
|
+
return {pkg: (before.get(pkg), after.get(pkg)) for pkg in packages}
|
131
|
+
|
132
|
+
|
133
|
+
def build_prompt(before_after: dict[str, tuple[str | None, str | None]]) -> str:
|
134
|
+
lines = [
|
135
|
+
"These packages have been updated and may require additional changes to the code:",
|
136
|
+
"",
|
137
|
+
]
|
138
|
+
for pkg, (before, after) in before_after.items():
|
139
|
+
lines.append(f"- {pkg}: {before} -> {after}")
|
140
|
+
|
141
|
+
lines.extend(
|
142
|
+
[
|
143
|
+
"",
|
144
|
+
"## Instructions",
|
145
|
+
"",
|
146
|
+
"1. **Process each package systematically:**",
|
147
|
+
" - For each package, run: `uv run plain-changelog {package} --from {before} --to {after}`",
|
148
|
+
" - Read the 'Upgrade instructions' section carefully",
|
149
|
+
" - If it says 'No changes required', skip to the next package",
|
150
|
+
" - Apply any required code changes as specified",
|
151
|
+
"",
|
152
|
+
"2. **Important guidelines:**",
|
153
|
+
" - Process ALL packages before testing or validation",
|
154
|
+
" - After all packages are updated, run `uv run plain fix --unsafe-fixes` and `uv run plain pre-commit` to check results",
|
155
|
+
" - DO NOT commit any changes",
|
156
|
+
" - DO NOT run `plain migrate` with the `--no-backup` option",
|
157
|
+
" - Keep code changes minimal and focused - avoid unnecessary comments",
|
158
|
+
"",
|
159
|
+
"3. **Available tools:**",
|
160
|
+
" - Python shell: `uv run python`",
|
161
|
+
"",
|
162
|
+
"4. **Workflow:**",
|
163
|
+
" - Review changelog for each package → Apply changes → Move to next package",
|
164
|
+
" - Only after all packages: run pre-commit checks",
|
165
|
+
" - Report any issues or conflicts encountered",
|
166
|
+
]
|
167
|
+
)
|
168
|
+
return "\n".join(lines)
|
@@ -111,8 +111,8 @@ def _route_to_regex(route, is_endpoint=False):
|
|
111
111
|
"""
|
112
112
|
Convert a path pattern into a regular expression. Return the regular
|
113
113
|
expression and a dictionary mapping the capture names to the converters.
|
114
|
-
For example, 'foo/<int:
|
115
|
-
and {'
|
114
|
+
For example, 'foo/<int:id>' returns '^foo\\/(?P<id>[0-9]+)'
|
115
|
+
and {'id': <plain.urls.converters.IntConverter>}.
|
116
116
|
"""
|
117
117
|
original_route = route
|
118
118
|
parts = ["^"]
|
@@ -169,7 +169,7 @@ class ExampleDetailView(DetailView):
|
|
169
169
|
|
170
170
|
def get_object(self):
|
171
171
|
return MyObjectClass.objects.get(
|
172
|
-
|
172
|
+
id=self.url_kwargs["id"],
|
173
173
|
user=self.request.user, # Limit access
|
174
174
|
)
|
175
175
|
|
@@ -187,7 +187,7 @@ class ExampleUpdateView(UpdateView):
|
|
187
187
|
|
188
188
|
def get_object(self):
|
189
189
|
return MyObjectClass.objects.get(
|
190
|
-
|
190
|
+
id=self.url_kwargs["id"],
|
191
191
|
user=self.request.user, # Limit access
|
192
192
|
)
|
193
193
|
|
@@ -201,7 +201,7 @@ class ExampleDeleteView(DeleteView):
|
|
201
201
|
|
202
202
|
def get_object(self):
|
203
203
|
return MyObjectClass.objects.get(
|
204
|
-
|
204
|
+
id=self.url_kwargs["id"],
|
205
205
|
user=self.request.user, # Limit access
|
206
206
|
)
|
207
207
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|