-
-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #547 from karrioapi/patch-2024.2.7
[patch] 2024.2.7
- Loading branch information
Showing
24 changed files
with
350 additions
and
318 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 +1 @@ | ||
2024.2.6 | ||
2024.2.7 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
set -e | ||
|
||
export KARRIO_TAG="${KARRIO_TAG:-2024.2.6}" | ||
export KARRIO_TAG="${KARRIO_TAG:-2024.2.7}" | ||
export SENTRY_DSN="${SENTRY_DSN:-'https://[email protected]/1'}" | ||
|
||
SECRET_KEY=$(head -c 28 /dev/urandom | sha224sum -b | head -c 56) | ||
|
@@ -23,7 +23,7 @@ if ! [ -z "$1" ] | |
then | ||
export KARRIO_TAG=$1 | ||
else | ||
echo "What version of Karrio would you like to install? (We default to '2024.2.6')" | ||
echo "What version of Karrio would you like to install? (We default to '2024.2.7')" | ||
echo "You can check out available versions here: https://hub.docker.com/r/karrio/server/tags" | ||
read -r KARRIO_TAG_READ | ||
if [ -z "$KARRIO_TAG_READ" ] | ||
|
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,15 +1,18 @@ | ||
#!/usr/bin/env bash | ||
|
||
docker run --rm -v ${PWD}:/local openapitools/openapi-generator-cli generate \ | ||
-i "/local/schemas/openapi.yml" \ | ||
-g typescript-axios \ | ||
-o /local/packages/types/rest \ | ||
--additional-properties=typescriptThreePlus=true \ | ||
--additional-properties=modelPropertyNaming=snake_case \ | ||
--additional-properties=useSingleRequestParameter=true | ||
|
||
rm -rf packages/types/rest/.openapi-generator/ \ | ||
packages/types/rest/.openapi-generator-ignore \ | ||
packages/types/rest/.gitignore \ | ||
packages/types/rest/.npmignore \ | ||
packages/types/rest/git_push.sh | ||
docker run --rm -v ${PWD}:/local openapitools/openapi-generator-cli bash -c ' | ||
./usr/local/bin/docker-entrypoint.sh generate \ | ||
-i "/local/schemas/openapi.yml" \ | ||
-g typescript-axios \ | ||
-o /local/packages/types/rest \ | ||
--additional-properties=typescriptThreePlus=true \ | ||
--additional-properties=modelPropertyNaming=snake_case \ | ||
--additional-properties=useSingleRequestParameter=true && \ | ||
rm -rf /local/packages/types/rest/.openapi-generator/ \ | ||
/local/packages/types/rest/.openapi-generator-ignore \ | ||
/local/packages/types/rest/.gitignore \ | ||
/local/packages/types/rest/.npmignore \ | ||
/local/packages/types/rest/git_push.sh && \ | ||
sed -i -e 's/RawAxiosRequestConfig/AxiosRequestConfig/g' \ | ||
/local/packages/types/rest/api.ts | ||
' |
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 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
"eslint": "^8.48.0", | ||
"prettier": "^3.0.3", | ||
"tsconfig": "*", | ||
"turbo": "^1.12.5" | ||
"turbo": "^1.13.0" | ||
}, | ||
"name": "karrio", | ||
"packageManager": "[email protected]", | ||
|
Oops, something went wrong.