Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Drop dev dependency on meltano/commitizen-version-bump #2005

Merged
merged 2 commits into from
Oct 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v0.33.0 (2023-10-09)

### ✨ New

- [#1999](https://github.com/meltano/sdk/issues/1999) Log JSONPatch match count at the INFO level -- _**Thanks @edgarrmondragon!**_
- [#1779](https://github.com/meltano/sdk/issues/1779) Cache SQL columns and schemas -- _**Thanks @pnadolny13!**_

### 🐛 Fixes

- [#1996](https://github.com/meltano/sdk/issues/1996) Respect nullability of leaf properties when flattening schema -- _**Thanks @edgarrmondragon!**_
- [#1844](https://github.com/meltano/sdk/issues/1844) Safely skip parsing record field as date-time if it is missing in schema -- _**Thanks @edgarrmondragon!**_
- [#1885](https://github.com/meltano/sdk/issues/1885) Map `record` field to a JSON `object` type -- _**Thanks @edgarrmondragon!**_

## v0.32.0 (2023-09-22)

## v0.32.0b3 (2023-09-22)
Expand Down
22 changes: 22 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,3 +249,25 @@ def test_cookiecutter(session: Session, replay_file_path) -> None:
session.run("git", "init", external=True)
session.run("git", "add", ".", external=True)
session.run("pre-commit", "run", "--all-files", external=True)


@session(name="version-bump")
def version_bump(session: Session) -> None:
"""Run commitizen."""
session.install(
"commitizen",
"commitizen-version-bump @ git+https://github.com/meltano/commitizen-version-bump.git@main",
)
default_args = [
"--changelog",
"--files-only",
"--check-consistency",
"--changelog-to-stdout",
]
args = session.posargs or default_args

session.run(
"cz",
"bump",
*args,
)
Loading