Skip to content

Commit

Permalink
chore: Drop dev dependency on meltano/commitizen-version-bump (#2005)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Oct 9, 2023
1 parent bab2aa9 commit 7e83cc0
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 481 deletions.
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

0 comments on commit 7e83cc0

Please sign in to comment.