Skip to content

Commit

Permalink
chore: Release v2.5.0 (meltano#6669)
Browse files Browse the repository at this point in the history
chore: Bump package version

Co-authored-by: WillDaSilva <WillDaSilva@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and WillDaSilva committed Aug 24, 2022
1 parent 2789439 commit eb9471c
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 6 deletions.
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,45 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Changelog](http://keepachangelog.com/).

## v2.5.0 (2022-08-24)

### ✨ New

- [#6596](https://github.com/meltano/meltano/issues/6596) Support glob paths in file plugin `update` extra
- [#6578](https://github.com/meltano/meltano/issues/6578) Add `--no-install` option to `meltano add`

### 🐛 Fixes

- [#6656](https://github.com/meltano/meltano/issues/6656) Correct STRICT_ENV_VAR_MODE behavior
- [#6627](https://github.com/meltano/meltano/issues/6627) Raise exception when meltano.yml is empty
- [#6643](https://github.com/meltano/meltano/issues/6643) Address `alter_column` warning for MSSQL
- [#6636](https://github.com/meltano/meltano/issues/6636) Use `docs.meltano.com` instead of `meltano.com/docs`
- [#6601](https://github.com/meltano/meltano/issues/6601) raise error on migration fail
- [#6609](https://github.com/meltano/meltano/issues/6609) `meltano state list` change pattern from argument to option
- [#6592](https://github.com/meltano/meltano/issues/6592) Validate CRON expressions
- [#6543](https://github.com/meltano/meltano/issues/6543) Register legacy `DiscoveryFile` object in Ruamel YAML instance
- [#6593](https://github.com/meltano/meltano/issues/6593) Docker workflow
- [#6582](https://github.com/meltano/meltano/issues/6582) Make `default_environment` a top-level setting
- [#6584](https://github.com/meltano/meltano/issues/6584) Avoid `pyproject.toml` Poetry parsing issue

### ⚙️ Under the Hood

- [#6621](https://github.com/meltano/meltano/issues/6621) Make `ProjectInitService.init` generate/set a `project_id`
- [#6611](https://github.com/meltano/meltano/issues/6611) Use `closing` for DB sessions & add docstrings to `meltano.core.db`
- [#6610](https://github.com/meltano/meltano/issues/6610) Replace `StaleJobFailer` class with `fail_stale_jobs` function

### ⚡ Performance Improvements

- [#6644](https://github.com/meltano/meltano/issues/6644) Improve performance when handling large yaml files

### 📚 Documentation Improvements

- [#6663](https://github.com/meltano/meltano/issues/6663) update custom extractor tutorial to use pip_url
- [#6648](https://github.com/meltano/meltano/issues/6648) logging configuration guide
- [#6650](https://github.com/meltano/meltano/issues/6650) Update Custom Extractor tutorial to use an editable install
- [#6631](https://github.com/meltano/meltano/issues/6631) Add "Pytest Best Practices" section to contributing docs
- [#6602](https://github.com/meltano/meltano/issues/6602) Update `Docker` definition in `glossary.yml`

## v2.4.0 (2022-08-05)

### ✨ New
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "meltano.com",
"author": "Meltano Team & Contributors <hello@meltano.com>",
"license": "MIT",
"version": "2.4.0",
"version": "2.5.0",
"description": "https://meltano.com",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "meltano",
"version": "2.4.0",
"version": "2.5.0",
"private": true,
"scripts": {
"build": "yarn build:docs && yarn build:webapp",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "meltano"
version = "2.4.0"
version = "2.5.0"
description = "Meltano: Your DataOps Platform Infrastructure"
authors = ["Meltano <hello@meltano.com>"]
license = "MIT"
Expand Down Expand Up @@ -143,7 +143,7 @@ exclude_lines = [

[tool.commitizen]
name = "cz_version_bump"
version = "2.4.0"
version = "2.5.0"
tag_format = "v$major.$minor.$patch$prerelease"
version_files = [
"pyproject.toml:^version =",
Expand Down
2 changes: 1 addition & 1 deletion src/meltano/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from __future__ import annotations

# Managed by bumpversion
__version__ = "2.4.0"
__version__ = "2.5.0"
2 changes: 1 addition & 1 deletion src/webapp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "meltano-webapp",
"version": "2.4.0",
"version": "2.5.0",
"private": true,
"scripts": {
"dev": "npm run serve",
Expand Down

0 comments on commit eb9471c

Please sign in to comment.