-
Notifications
You must be signed in to change notification settings - Fork 29
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
chore: merge repositories into new branch (main) #163
Closed
Conversation
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
autopep8 was used for applying the formatting, a few manual changes were made to make some changes more pallatable
Now files and connections are more consistently closed. Most regular expressions produced bugs and have been replaced. Transput class now contains all the virtual functions that are to be inherited. Logging messages are lazy-loaded now. Uploading HTTP folders now tries to upload all the files, not just the last one found. Renamed some variables to make their purpose more obvious Stop raising exceptions for the time being as the rest of the code does not handle them, return the error code instead
Use transputs as context managers to be less verbose for closing connections
This way the code won't fail in subtle ways
Also added more debugging info
According to Ania, this is the old version that is not used anymore.
TODO It's still using the host path. This has to be translated to a path inside the container.
Co-authored-by: Martin Kuba <[email protected]>
….6.1 Upgrade to org.springframework.boot to v2.6.1
* Add securityContext settings * Fix tests
* Use configmap for JSON_INPUT Signed-off-by: Lukas Hejtmanek <[email protected]> * Fix basic tests Signed-off-by: Lukas Hejtmanek <[email protected]> * Fix integration tests Signed-off-by: Lukas Hejtmanek <[email protected]> Signed-off-by: Lukas Hejtmanek <[email protected]>
* Add junit deps * Fix api-docs JSON example The api-docs json definition of the API was not passing the JSON parsing. One of the examples (in colunm ~1580, with text us-west-1), needed quotes * Upgrade springfox-swagger to fix swagger API deffinition * Few other changes to make it more compatible * Fix missing dependencies
Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.5 to 1.26.18. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](urllib3/urllib3@1.26.5...1.26.18) --- updated-dependencies: - dependency-name: urllib3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
* Downgrade springfox-swagger.version for tests. Do not use this * Followed https://github.com/springfox/springfox\#migrating-from-earlier-snapshot * Added Guava back
Co-authored-by: Tristan <[email protected]>
Bumps [guava](https://github.com/google/guava) from 30.0-jre to 32.0.0-jre. - [Release notes](https://github.com/google/guava/releases) - [Commits](https://github.com/google/guava/commits) --- updated-dependencies: - dependency-name: com.google.guava:guava dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Improve S3 URL support and others
….26.18 Bump urllib3 from 1.26.5 to 1.26.18
Make a bit better the scripts
# Conflicts: # .gitignore # .travis.yml # LICENSE # MANIFEST.in # README.md # charts/tesk/templates/openshift/oc-route.yaml # cloudbuild.yaml # cloudbuild_testing.yaml # documentation/img/TESKlogo.png # documentation/img/TESKlogowfont.png # setup.py
* Chart and doc updates - Add securityContext. Remove of Ingress deployment in values.yaml - Update Ingress rules apiVersion - Update README and deployment documentation - Update condition for OpenShift Route * Enable ingress.rules * Add limits & requests
* WIP: Update GitHub Actions workflow * Fix links to deployment.md (previously deployment_new.md)
Closing this as we are not planning to merge into |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR aims to merge all the component of TESK, namely
core
andapi
. Look at this gist, for more details.fixes #149