This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(poetry): Add a changelog and commit automation library
* build(poetry): Add commitizen for commit and changelog automation * docs: Update CONTRIBUTING and examples documenets * docs: Add a CHANGELOG document * Remove precommit * Move proposals to fdrs folder * Update related documentation * Update the changelist document * Add a runbooks folder. Add change and release documents * Update README * Release: 0.1.0a4 → 0.1.0 [skip-ci] * Update the changelog docu * Commit docs * Bump the version
- Loading branch information
Piotr Katolik
authored
Mar 6, 2022
1 parent
3c06743
commit f214310
Showing
22 changed files
with
273 additions
and
112 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 |
---|---|---|
@@ -1,44 +1,46 @@ | ||
repos: | ||
- repo: https://github.com/Lucas-C/pre-commit-hooks | ||
rev: v1.1.10 | ||
hooks: | ||
- id: forbid-crlf | ||
- id: remove-crlf | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.0.1 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-merge-conflict | ||
- id: check-added-large-files | ||
- id: check-case-conflict | ||
- id: check-yaml | ||
args: [--unsafe] | ||
- id: debug-statements | ||
- repo: https://github.com/pre-commit/mirrors-isort | ||
rev: v5.9.3 | ||
hooks: | ||
- id: isort | ||
args: ['--filter-files'] | ||
- repo: https://github.com/ambv/black | ||
rev: 21.9b0 | ||
hooks: | ||
- id: black | ||
- repo: https://github.com/pycqa/flake8 | ||
rev: 4.0.1 | ||
hooks: | ||
- id: flake8 | ||
# Uncomment if you don't want to fail on flake8 validation | ||
args: [--max-line-length, '120'] | ||
# verbose: true | ||
additional_dependencies: [flake8-typing-imports==1.11.0] | ||
- repo: https://github.com/pre-commit/mirrors-mypy | ||
rev: v0.910 | ||
hooks: | ||
- id: mypy | ||
exclude: tests/ | ||
additional_dependencies: | ||
- types-toml | ||
# - types-click | ||
default_language_version: | ||
python: python3.9 | ||
python: python3.9 | ||
repos: | ||
- hooks: | ||
- id: forbid-crlf | ||
- id: remove-crlf | ||
repo: https://github.com/Lucas-C/pre-commit-hooks | ||
rev: v1.1.10 | ||
- hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-merge-conflict | ||
- id: check-added-large-files | ||
- id: check-case-conflict | ||
- args: | ||
- --unsafe | ||
id: check-yaml | ||
- id: debug-statements | ||
repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.0.1 | ||
- hooks: | ||
- args: | ||
- --filter-files | ||
id: isort | ||
repo: https://github.com/pre-commit/mirrors-isort | ||
rev: v5.9.3 | ||
- hooks: | ||
- id: black | ||
repo: https://github.com/ambv/black | ||
rev: 21.9b0 | ||
- hooks: | ||
- additional_dependencies: | ||
- flake8-typing-imports==1.11.0 | ||
args: | ||
- --max-line-length | ||
- '120' | ||
id: flake8 | ||
repo: https://github.com/pycqa/flake8 | ||
rev: 4.0.1 | ||
- hooks: | ||
- additional_dependencies: | ||
- types-toml | ||
exclude: tests/ | ||
id: mypy | ||
repo: https://github.com/pre-commit/mirrors-mypy | ||
rev: v0.910 |
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,23 @@ | ||
# Changelog | ||
|
||
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). | ||
|
||
## [0.1.0] - 2022-03-06 | ||
|
||
### Added | ||
|
||
* [Local]: Generate new template function directories for starting new functions. Two types GCP `http`/`pubsub`. | ||
* [Local]: Add an existing **function** to the function registry to be run and deployed as functions native to the package. | ||
* [Local]: Build pre-generated, validated and **locally** existing functions using Docker. | ||
* [Local]: Operate (`deploy`/`remove`) Google Cloud Platform functions from a local machine. | ||
* [Local]: Store information about the built, run and deployed functions locally for reference and configuration. | ||
* [Local]: Print out information about functions and their statuses (Build/Deployed/Running) using the [list](**link to api document**) command. | ||
* [Local]: Log function history using a log file stored on your local device. | ||
* [GCP]: Deploy locally existing functions as cloud functions. Limited to two types - `http` and `pubsub`. | ||
* [GCP]: Delete functions deployed to GCP using this package. | ||
|
||
[Unreleased]: https://github.com/katolus/functions/compare/v1.0.0...HEAD | ||
[0.1.0]: https://github.com/katolus/functions/releases/tag/v0.1.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 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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.