Compare commits
No commits in common. "master" and "v0.2.1" have entirely different histories.
3 changed files with 2 additions and 45 deletions
|
|
@ -5,12 +5,6 @@ All notable changes to Wutta-Continuum will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## v0.2.2 (2025-10-29)
|
|
||||||
|
|
||||||
### Fix
|
|
||||||
|
|
||||||
- exclude user password from continuum versioning
|
|
||||||
|
|
||||||
## v0.2.1 (2025-10-29)
|
## v0.2.1 (2025-10-29)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "Wutta-Continuum"
|
name = "Wutta-Continuum"
|
||||||
version = "0.2.2"
|
version = "0.2.1"
|
||||||
description = "SQLAlchemy-Continuum versioning for Wutta Framework"
|
description = "SQLAlchemy-Continuum versioning for Wutta Framework"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]
|
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]
|
||||||
|
|
@ -27,7 +27,7 @@ classifiers = [
|
||||||
requires-python = ">= 3.8"
|
requires-python = ">= 3.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"SQLAlchemy-Continuum",
|
"SQLAlchemy-Continuum",
|
||||||
"WuttJamaican[db]>=0.24.1",
|
"WuttJamaican[db]>=0.17.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
||||||
"""remove password
|
|
||||||
|
|
||||||
Revision ID: 989392cc191d
|
|
||||||
Revises: 0a5f8ac0cd06
|
|
||||||
Create Date: 2025-10-29 19:42:52.985167
|
|
||||||
|
|
||||||
"""
|
|
||||||
|
|
||||||
from typing import Sequence, Union
|
|
||||||
|
|
||||||
from alembic import op
|
|
||||||
import sqlalchemy as sa
|
|
||||||
import wuttjamaican.db.util
|
|
||||||
|
|
||||||
|
|
||||||
# revision identifiers, used by Alembic.
|
|
||||||
revision: str = "989392cc191d"
|
|
||||||
down_revision: Union[str, None] = "0a5f8ac0cd06"
|
|
||||||
branch_labels: Union[str, Sequence[str], None] = None
|
|
||||||
depends_on: Union[str, Sequence[str], None] = None
|
|
||||||
|
|
||||||
|
|
||||||
def upgrade() -> None:
|
|
||||||
|
|
||||||
# user
|
|
||||||
op.drop_column("user_version", "password")
|
|
||||||
|
|
||||||
|
|
||||||
def downgrade() -> None:
|
|
||||||
|
|
||||||
# user
|
|
||||||
op.add_column(
|
|
||||||
"user_version",
|
|
||||||
sa.Column(
|
|
||||||
"password", sa.VARCHAR(length=60), autoincrement=False, nullable=True
|
|
||||||
),
|
|
||||||
)
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue