-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Use dynamic versioning based on git tags (#173)
- Loading branch information
1 parent
8a8ac88
commit 5fc2a02
Showing
7 changed files
with
152 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
meltano==3.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,45 @@ | ||
For the latest updates, please see the repo [Release Notes](https://github.com/MeltanoLabs/meltano-map-transform/releases). | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## v0.0.5 (2022-10-04) | ||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), | ||
and is generated by [git-cliff](https://github.com/orhun/git-cliff). | ||
|
||
- [#50](https://github.com/MeltanoLabs/meltano-map-transform/pull/50) Fix singer dependencies and limit Singer SDK to `<=0.11.0`. | ||
## [unreleased] | ||
|
||
## v0.0.4 (2022-05-24) | ||
### Added | ||
|
||
- [#18](https://github.com/MeltanoLabs/meltano-map-transform/pull/18) Add missing `__alias__` property | ||
- [#20](https://github.com/MeltanoLabs/meltano-map-transform/pull/20) Adjust reference to poetry-core | ||
- Add explicit support for flattening features ([#103](https://github.com/edgarrmondragon/sqlean-driver/issues/103)) | ||
|
||
## v0.0.3 (2022-04-14) | ||
## v0.4.0 (2023-08-14) | ||
|
||
- [#6](https://github.com/MeltanoLabs/meltano-map-transform/pull/6) Bump singer-sdk from `0.4.0` to `0.4.2` | ||
- [#15](https://github.com/MeltanoLabs/meltano-map-transform/pull/15) Remove extraneous logging | ||
### Documentation | ||
|
||
## v0.0.2 (2022-01-24) | ||
- #6412 add examples for usage ([#117](https://github.com/edgarrmondragon/sqlean-driver/issues/117)) | ||
|
||
- This update bumps the SDK dependency version to `0.4.0`. | ||
## v0.3.1 (2023-02-08) | ||
|
||
## v0.0.1 (2022-01-13) | ||
### Fixed | ||
|
||
The initial release of `meltano-map-transform`. | ||
- Support `__NULL__` in `__else__` values ([#104](https://github.com/edgarrmondragon/sqlean-driver/issues/104)) | ||
|
||
## v0.3.0 (2023-02-07) | ||
|
||
### Added | ||
|
||
- Support Python 3.11 ([#98](https://github.com/edgarrmondragon/sqlean-driver/issues/98)) | ||
|
||
## v0.1.1 (2022-12-10) | ||
|
||
### Testing | ||
|
||
- Test fields whitelisting and schema passthrough ([#85](https://github.com/edgarrmondragon/sqlean-driver/issues/85)) | ||
|
||
## v0.1.0 (2022-11-22) | ||
|
||
### Documentation | ||
|
||
- Add Meltano installation instructions ([#63](https://github.com/edgarrmondragon/sqlean-driver/issues/63)) | ||
|
||
<!-- generated by git-cliff --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
[changelog] | ||
# changelog header | ||
header = """ | ||
# Changelog\n | ||
All notable changes to this project will be documented in this file.\n | ||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), | ||
and is generated by [git-cliff](https://github.com/orhun/git-cliff).\n | ||
""" | ||
# template for the changelog body | ||
# https://tera.netlify.app/docs | ||
body = """ | ||
{% if version %}\ | ||
## {{ version }} ({{ timestamp | date(format="%Y-%m-%d") }}) | ||
{% else %}\ | ||
## [unreleased] | ||
{% endif %}\ | ||
{% for group, commits in commits | group_by(attribute="group") %} | ||
### {{ group | upper_first }} | ||
{% for commit in commits %} | ||
- {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | upper_first }}\ | ||
{% endfor %} | ||
{% endfor %}\n | ||
""" | ||
# remove the leading and trailing whitespace from the template | ||
trim = true | ||
# changelog footer | ||
footer = """ | ||
<!-- generated by git-cliff --> | ||
""" | ||
|
||
[git] | ||
# parse the commits based on https://www.conventionalcommits.org | ||
conventional_commits = true | ||
# filter out the commits that are not conventional | ||
filter_unconventional = true | ||
# process each line of a commit as an individual commit | ||
split_commits = false | ||
# regex for preprocessing the commit messages | ||
commit_preprocessors = [ | ||
{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/edgarrmondragon/sqlean-driver/issues/${2}))"}, # replace issue numbers | ||
] | ||
# regex for parsing and grouping commits | ||
commit_parsers = [ | ||
{ message = "^feat", group = "Added" }, | ||
{ message = "^fix", group = "Fixed" }, | ||
{ message = "^doc", group = "Documentation" }, | ||
{ message = "^perf", group = "Performance" }, | ||
{ message = "^refactor", group = "Refactor" }, | ||
{ message = "^style", group = "Styling" }, | ||
{ message = "^test", group = "Testing" }, | ||
{ message = "^chore: Release", skip = true }, | ||
{ message = "^chore", group = "Miscellaneous Tasks", skip = true }, | ||
{ message = "^ci", group = "CI", skip = true }, | ||
{ body = ".*security", group = "Security" }, | ||
] | ||
# protect breaking changes from being skipped due to matching a skipping commit_parser | ||
protect_breaking_commits = false | ||
# filter out the commits that are not matched by commit parsers | ||
filter_commits = false | ||
# glob pattern for matching git tags | ||
tag_pattern = "v[0-9]*" | ||
# regex for skipping tags | ||
skip_tags = "v0.1.0-beta.1" | ||
# regex for ignoring tags | ||
ignore_tags = "" | ||
# sort the tags topologically | ||
topo_order = false | ||
# sort the commits inside sections by oldest/newest order | ||
sort_commits = "oldest" | ||
# limit the number of commits included in the changelog. | ||
# limit_commits = 42 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters