Skip to content

Commit

Permalink
Release 1.9.1 (#37)
Browse files Browse the repository at this point in the history
* Allow for whitespaces in secret variables regex (#22)

* k8s operator - deployment

* refactor

* change api to rest

* fix tests

* update changelog

* fix pre-commit hooks

* add tests

* update pyyaml

* STREAM-381 fixed version of python-dateutil (#27)

* STREAM-381 fixed version of python-dateutil (required by flink 1.16.0)

* STREAM-384 (#29)

* jupyter convert cmd

* STREAM-386 deployment mode (#31)

* flink_execute (#33)

* flink_execute

* pre commit hooks - black

* fix imports in template

---------

Co-authored-by: Anna Urbala <[email protected]>

* don't add shell commands to the converted notebook (#34)

* don't add shell commands to the converted notebook

* changelog

---------

Co-authored-by: Anna Urbala <[email protected]>

* Create and publish public scli docker image with git and docker 

* Create and publish public scli docker image with git and docker

* FIX #37  - Bump version and CHANGELOG for release 1.9.1

---------

Co-authored-by: Andrzej Swatowski <[email protected]>
Co-authored-by: Anna Urbala <[email protected]>
Co-authored-by: niladrem <[email protected]>
Co-authored-by: Maciej Maciejko <[email protected]>
Co-authored-by: Anna Naroska <[email protected]>
Co-authored-by: Maciej Maciejko <[email protected]>
Co-authored-by: Maciej Maciejko <[email protected]>
Co-authored-by: MarekMaj <[email protected]>
Co-authored-by: github-actions <[email protected]>
  • Loading branch information
10 people authored Mar 2, 2023
1 parent c15ef00 commit 9d486bf
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 4 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,27 @@ jobs:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
verbose: true # trace if the upload fails

# Setting up Docker Buildx with docker-container driver is required
# at the moment to be able to use a subdirectory with Git context
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to GCR
uses: docker/login-action@v1
with:
registry: gcr.io
username: _json_key
password: ${{ secrets.PUBLIC_GCR_DEPLOY_SA_KEY }}

- name: Build docker image using public pypi package
uses: docker/build-push-action@v4
with:
context: release
build-args: |
PYTHON_VERSION=${{ matrix.python-version }}
STREAMING_CLI_VERSION=${{ steps.set_package_version.outputs.PACKAGE_VERSION }}
build-contexts: |
context=docker-image://docker:stable-git
push: true
tags: gcr.io/getindata-images-public/streaming-cli:${{ steps.set_package_version.outputs.PACKAGE_VERSION }}
1 change: 0 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,3 @@ jobs:
- name: Wheel
run: |
python setup.py sdist
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [1.9.1] - 2023-03-02

### Added

- Create and publish docker image

## [1.9.0] - 2023-02-28

### Added
Expand Down Expand Up @@ -95,10 +101,18 @@

- First release

[Unreleased]: https://github.com/getindata/streaming-cli/compare/1.9.0...HEAD
&lt;&lt;&lt;&lt;&lt;&lt;&lt; HEAD

# [Unreleased]&#x3A; <https://github.com/getindata/streaming-cli/compare/1.8.0...HEAD>

[Unreleased]: https://github.com/getindata/streaming-cli/compare/1.9.1...HEAD

[1.9.1]: https://github.com/getindata/streaming-cli/compare/1.9.0...1.9.1

[1.9.0]: https://github.com/getindata/streaming-cli/compare/1.8.0...1.9.0

> > > > > > > master
[1.8.0]: https://github.com/getindata/streaming-cli/compare/1.7.1...1.8.0

[1.7.0]: https://github.com/getindata/streaming-cli/compare/1.6.0...1.7.0
Expand Down
10 changes: 10 additions & 0 deletions release/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# syntax=docker/dockerfile:1
FROM context

ARG PYTHON_VERSION
ARG STREAMING_CLI_VERSION

RUN apk add --no-cache build-base python3>=${PYTHON_VERSION} python3-dev>=${PYTHON_VERSION} py3-pip
RUN python3 -m pip install --no-cache wheel
RUN python3 -m pip install --no-cache streamingcli==${STREAMING_CLI_VERSION} --ignore-installed six

2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.9.0
current_version = 1.9.1

[flake8]
exclude = .git,__pycache__,build,dist,*.yml
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import find_packages, setup
from setuptools.command.install import install

__version__ = "1.9.0"
__version__ = "1.9.1"

with open("README.md", "r") as fh:
long_description = fh.read()
Expand Down

0 comments on commit 9d486bf

Please sign in to comment.