Skip to content
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

release: v0.8.1 #57

Merged
merged 38 commits into from
Oct 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
4bd13c4
[ci skip] chore(release): 0.0.4
shoriwe Aug 24, 2023
fca70d6
docs: OpenApi Specification (#9)
MiguelMRojas Sep 2, 2023
409ad31
chore: Update docker-compose (#12)
PedroChaparro Oct 1, 2023
22a84d2
ci: Linter and formatter (#14)
PedroChaparro Oct 3, 2023
4921ca1
feat: endpoint login (#15)
MiguelMRojas Oct 4, 2023
e0e1ea1
[ci skip] chore(release): 0.0.5
shoriwe Oct 4, 2023
ee78fb6
feat: endpoint challenge (#33)
MiguelMRojas Oct 8, 2023
8053b99
[ci skip] chore(release): 0.0.6
shoriwe Oct 8, 2023
556edf9
refactor: Update endpoints (#37)
PedroChaparro Oct 9, 2023
77e1bf2
[ci skip] chore(release): 0.0.7
shoriwe Oct 9, 2023
3e85e7e
Merge branch 'main' into dev
PedroChaparro Oct 9, 2023
d9b0805
[ci skip] chore(release): 0.0.8
shoriwe Oct 9, 2023
3ba394f
fix: Enable CORS (#40)
MiguelMRojas Oct 9, 2023
38392d4
feat: Register endpoint (#39)
AndreaVelasquezA Oct 9, 2023
d8d3871
[ci skip] chore(release): 0.0.9
shoriwe Oct 9, 2023
c4bbd73
Merge branch 'main' into dev
MiguelMRojas Oct 10, 2023
9f8ad6a
fix: Enable all CORS origins (#44)
PedroChaparro Oct 11, 2023
5292585
[ci skip] chore(release): 0.0.10
shoriwe Oct 11, 2023
221c004
Merge branch 'main' into dev
PedroChaparro Oct 11, 2023
b268821
[ci skip] chore(release): 0.0.11
shoriwe Oct 11, 2023
7da7a7c
ci: Fix tagging pipeline (#48)
PedroChaparro Oct 12, 2023
a32f442
ci: Fix typo
PedroChaparro Oct 12, 2023
9dc6959
feat: update docs openapi (#41)
MiguelMRojas Oct 12, 2023
ba8ff15
[ci skip] chore(release): v0.1.0 [skip ci]
shoriwe Oct 12, 2023
af95070
feat: Endpoint to get the file status (#49)
PedroChaparro Oct 12, 2023
7345e45
[ci skip] chore(release): v0.4.0 [skip ci]
shoriwe Oct 12, 2023
b1e93fc
feat: Endpoint to rename a file (#50)
MiguelMRojas Oct 13, 2023
724cc9e
[ci skip] chore(release): v0.5.0 [skip ci]
shoriwe Oct 13, 2023
395b44b
feat: Update password (#51)
AndreaVelasquezA Oct 13, 2023
38a395e
[ci skip] chore(release): v0.6.0 [skip ci]
shoriwe Oct 13, 2023
7aca7f2
feat: create a folder (#52)
MiguelMRojas Oct 14, 2023
3c408a9
[ci skip] chore(release): v0.7.0 [skip ci]
shoriwe Oct 14, 2023
097d026
feat: file upload (#53)
AndreaVelasquezA Oct 14, 2023
f335708
[ci skip] chore(release): v0.8.0 [skip ci]
shoriwe Oct 14, 2023
624cc06
fix(files): Keep files extension (#56)
PedroChaparro Oct 14, 2023
0c7acae
[ci skip] chore(release): v0.8.1 [skip ci]
shoriwe Oct 14, 2023
4de7711
test: Increment save file endpoint coverage (#54)
PedroChaparro Oct 14, 2023
d397a24
Merge branch 'main' into dev
PedroChaparro Oct 14, 2023
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
22 changes: 8 additions & 14 deletions .github/workflows/tagging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node 18.x
uses: actions/setup-node@v3

- uses: TriPSs/conventional-changelog-action@v3
name: Changelog
id: changelog
with:
node-version: 18.x
cache: "npm"
- name: Git Identity
run: |
git checkout dev
git fetch --all --tags
git config --global user.email "[email protected]"
git config --global user.name "Antonio Donis"
- name: Changelog
run: 'npx standard-version --message "[ci skip] chore(release): %s"'
- name: Push changes
run: git push --follow-tags --force origin dev
git-user-name: "Antonio Donis"
git-user-email: "[email protected]"
git-message: "[ci skip] chore(release): {version}"
version-file: "version.json"
39 changes: 12 additions & 27 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,60 +1,45 @@
# Changelog
## [0.8.1](https://github.com/hawks-atlanta/proxy-python/compare/v0.8.0...v0.8.1) (2023-10-14)

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### 0.0.11 (2023-10-11)

### 0.0.10 (2023-10-11)
### Bug Fixes

* **files:** Keep files extension ([#56](https://github.com/hawks-atlanta/proxy-python/issues/56)) ([624cc06](https://github.com/hawks-atlanta/proxy-python/commit/624cc06af6443602bc9b946c8fc7ee5376dbea2c))

### Bug Fixes

* Enable all CORS origins ([#44](https://github.com/hawks-atlanta/proxy-python/issues/44)) ([9f8ad6a](https://github.com/hawks-atlanta/proxy-python/commit/9f8ad6ae4dee09b18bd7e1f44d36f0c0ee7f4ced))

### 0.0.9 (2023-10-09)
# [0.8.0](https://github.com/hawks-atlanta/proxy-python/compare/v0.7.0...v0.8.0) (2023-10-14)


### Features

* Register endpoint ([#39](https://github.com/hawks-atlanta/proxy-python/issues/39)) ([38392d4](https://github.com/hawks-atlanta/proxy-python/commit/38392d476c718eacc7e70e0bed98de08f2f1d186))
* file upload ([#53](https://github.com/hawks-atlanta/proxy-python/issues/53)) ([097d026](https://github.com/hawks-atlanta/proxy-python/commit/097d0267b4596ee8cea5f24e4b4ceaf019ff801d))

### 0.0.8 (2023-10-09)

### 0.0.7 (2023-10-09)

### 0.0.6 (2023-10-08)
# [0.7.0](https://github.com/hawks-atlanta/proxy-python/compare/v0.6.0...v0.7.0) (2023-10-14)


### Features

* endpoint challenge ([#33](https://github.com/hawks-atlanta/proxy-python/issues/33)) ([ee78fb6](https://github.com/hawks-atlanta/proxy-python/commit/ee78fb6864d0f6616464439c5c177884e514cf29))
* create a folder ([#52](https://github.com/hawks-atlanta/proxy-python/issues/52)) ([7aca7f2](https://github.com/hawks-atlanta/proxy-python/commit/7aca7f204ce10c37154bcf1ed716cd13ca02c142))

### 0.0.5 (2023-10-04)


### Features

* endpoint login ([#15](https://github.com/hawks-atlanta/proxy-python/issues/15)) ([4921ca1](https://github.com/hawks-atlanta/proxy-python/commit/4921ca11b886d950d7811f67ac573b7a9adc6831))
# [0.6.0](https://github.com/hawks-atlanta/proxy-python/compare/v0.5.0...v0.6.0) (2023-10-13)

### 0.0.4 (2023-08-24)

### 0.0.3 (2023-08-24)

### Features

### Bug Fixes
* Update password ([#51](https://github.com/hawks-atlanta/proxy-python/issues/51)) ([395b44b](https://github.com/hawks-atlanta/proxy-python/commit/395b44bf9223cf1126521f80ac0ae1796d2207de))

* coverage pipeline correct xml format ([#7](https://github.com/hawks-atlanta/proxy-python/issues/7)) ([1002efa](https://github.com/hawks-atlanta/proxy-python/commit/1002efa3c86bcdc2e7954f8f9394780ac5f41198))

### 0.0.2 (2023-08-23)

### 0.0.1 (2023-08-23)
# [0.5.0](https://github.com/hawks-atlanta/proxy-python/compare/v0.4.0...v0.5.0) (2023-10-13)


### Features

* docker-compose ([6e44d01](https://github.com/hawks-atlanta/frontend-python/commit/6e44d01abede6ace6b488c6131bc96bd3b884c6d))
* Endpoint to rename a file ([#50](https://github.com/hawks-atlanta/proxy-python/issues/50)) ([b1e93fc](https://github.com/hawks-atlanta/proxy-python/commit/b1e93fc468187e15341161c3db1084559b64e93c))


### Bug Fixes

* base flask repository ([3f8ea73](https://github.com/hawks-atlanta/frontend-python/commit/3f8ea739fc267bc3bf6dc15c4cf540c511fe9419))
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
ports:
- "127.0.0.1:8080:8080"
environment:
METADATA_BASEURL: http://metadata:8080
METADATA_BASEURL: http://metadata:8080/api/v1
AUTHENTICATION_BASEURL: http://authentication:8080
WORKER_HOST: worker
WORKER_PORT: 1099
Expand Down
Loading