Skip to content

chore: setup release it #38

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

Merged
merged 8 commits into from
Apr 19, 2025
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
35 changes: 35 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"$schema": "https://unpkg.com/release-it@19/schema/release-it.json",
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false,
"ignoreVersion": false
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits"
},
"infile": "CHANGELOG.md"
},
"@release-it/bumper": {
"in": {
"file": "pyproject.toml",
"path": "project.version"
},
"out": {
"file": "pyproject.toml",
"path": "project.version"
}
}
},
"hooks": {
"before:init": ["make test", "rm -rf dist"],
"after:bump": "uv build && uv publish"
}
}
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Changelog

## 0.13.0 (2025-04-19)

* chore: add release-it ([a7ee3cf](https://github.com/opensource-observer/oso/commit/a7ee3cf))
* chore: bump package version (#11) ([8c3703b](https://github.com/opensource-observer/oso/commit/8c3703b)), closes [#11](https://github.com/opensource-observer/oso/issues/11)
* chore: bump to 0.8.0 (#21) ([987dc46](https://github.com/opensource-observer/oso/commit/987dc46)), closes [#21](https://github.com/opensource-observer/oso/issues/21)
* chore: bump version ([8891f0d](https://github.com/opensource-observer/oso/commit/8891f0d))
* chore: failed comimt ([68c83d8](https://github.com/opensource-observer/oso/commit/68c83d8))
* chore: force remove dist ([26c8a77](https://github.com/opensource-observer/oso/commit/26c8a77))
* chore: more testing ([c9befcd](https://github.com/opensource-observer/oso/commit/c9befcd))
* chore: more updates ([28a4116](https://github.com/opensource-observer/oso/commit/28a4116))
* chore: setup commitlint (#37) ([66d5436](https://github.com/opensource-observer/oso/commit/66d5436)), closes [#37](https://github.com/opensource-observer/oso/issues/37)
* chore: setup release-it plugins ([69a4c29](https://github.com/opensource-observer/oso/commit/69a4c29))
* chore: test ([18a2b3a](https://github.com/opensource-observer/oso/commit/18a2b3a))
* chore: upgrade sqlmesh to v0.163.0 (#17) ([35c5afe](https://github.com/opensource-observer/oso/commit/35c5afe)), closes [#17](https://github.com/opensource-observer/oso/issues/17)
* chore: uv sync ([55d3053](https://github.com/opensource-observer/oso/commit/55d3053))
* chore: uv sync ([d39464f](https://github.com/opensource-observer/oso/commit/d39464f))
* Allow users to skip "sqlmesh run" and make completion status depend on Table Promotion (#33) ([1d15b14](https://github.com/opensource-observer/oso/commit/1d15b14)), closes [#33](https://github.com/opensource-observer/oso/issues/33)
* Fixes Dagster Resource (#6) ([cb8278c](https://github.com/opensource-observer/oso/commit/cb8278c)), closes [#6](https://github.com/opensource-observer/oso/issues/6)
* Increase Type Checking (#26) ([2be6d82](https://github.com/opensource-observer/oso/commit/2be6d82)), closes [#26](https://github.com/opensource-observer/oso/issues/26)
* Poetry --> UV (+ Makefile Added) (#22) ([4978a6f](https://github.com/opensource-observer/oso/commit/4978a6f)), closes [#22](https://github.com/opensource-observer/oso/issues/22)
* Upgrades to sqlmesh 0.174.2 (#36) ([fe14877](https://github.com/opensource-observer/oso/commit/fe14877)), closes [#36](https://github.com/opensource-observer/oso/issues/36)
* fix: fix selecting all (#28) ([a0cc64b](https://github.com/opensource-observer/oso/commit/a0cc64b)), closes [#28](https://github.com/opensource-observer/oso/issues/28)
* fix: fixes all-models-selected matching condition (#29) ([452b508](https://github.com/opensource-observer/oso/commit/452b508)), closes [#29](https://github.com/opensource-observer/oso/issues/29)
* fix: implement missing functions from abstract class (#13) ([1461b22](https://github.com/opensource-observer/oso/commit/1461b22)), closes [#13](https://github.com/opensource-observer/oso/issues/13)
* fix: raise Exception if any model failed to materialize (#34) ([3ddfbf0](https://github.com/opensource-observer/oso/commit/3ddfbf0)), closes [#34](https://github.com/opensource-observer/oso/issues/34)
* fix: Updated pyarrow version in pyproject.toml from ^17.0.0 to ^18.0.0 (#9) ([d74cf01](https://github.com/opensource-observer/oso/commit/d74cf01)), closes [#9](https://github.com/opensource-observer/oso/issues/9)
* fix(logs): stop spamming logs with the name of all selected models (#35) ([9d0be7f](https://github.com/opensource-observer/oso/commit/9d0be7f)), closes [#35](https://github.com/opensource-observer/oso/issues/35)
* feat: add error logs for LogFailedModels event (#14) ([c105fbb](https://github.com/opensource-observer/oso/commit/c105fbb)), closes [#14](https://github.com/opensource-observer/oso/issues/14)
* feat: allow restating models (#25) ([b328d77](https://github.com/opensource-observer/oso/commit/b328d77)), closes [#25](https://github.com/opensource-observer/oso/issues/25)
* feat: enable subsetting behind flag (#19) ([8d36892](https://github.com/opensource-observer/oso/commit/8d36892)), closes [#19](https://github.com/opensource-observer/oso/issues/19)
* feat: log sqlmesh errors to dagster (#10) ([6241445](https://github.com/opensource-observer/oso/commit/6241445)), closes [#10](https://github.com/opensource-observer/oso/issues/10)
* feat: support tags in sqlmesh models (#20) ([84a930f](https://github.com/opensource-observer/oso/commit/84a930f)), closes [#20](https://github.com/opensource-observer/oso/issues/20)
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dagster-sqlmesh",
"description": "SQLMesh adapter for dagster - node deps are only for development",
"version": "0.0.0",
"version": "0.13.0",
"author": "Kariba Labs",
"license": "Apache-2.0",
"private": true,
Expand All @@ -13,17 +13,21 @@
"build": "turbo run build --concurrency=100%",
"format:staged": "lint-staged",
"pyright": "pyright --pythonpath $(echo 'import sys; print(sys.prefix)' | uv run -)/bin/python",
"prepare": "husky install"
"prepare": "husky install",
"release": "release-it"
},
"devDependencies": {
"@commitlint/types": "^19.8.0",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@commitlint/types": "^19.8.0",
"@release-it/bumper": "^7.0.4",
"@release-it/conventional-changelog": "^10.0.1",
"eslint": "^8.57.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"pyright": "^1.1.377",
"release-it": "^19.0.1",
"turbo": "^1.13.4"
},
"engines": {
Expand Down
Loading