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

[rc] Karrio 2024.12rc9 #740

Merged
merged 9 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
# Karrio 2024.12.rc9

## Changes

### Feat

- feat: fix wording in webhooks test modal
- feat: make seko event Omnicode take precedence over default Code
- feat: add `REDIS_PREFIX` for redis prefix configuration
- feat: add more testing data sample for webhook testing

### Fix

- fix: docker entrypoints with proper DETACHED_WORKER flag check
- fix: easyship simple tracking support

### Chore

- chore: add new carrier logos

### Docs

- docs: `REDIS_PREFIX` env documentation

# Karrio 2024.12rc8

## Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/api/karrio/server/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.12rc8
2024.12rc9
3 changes: 2 additions & 1 deletion apps/api/karrio/server/settings/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
REDIS_PORT = config("REDIS_PORT", default=None)
REDIS_PASSWORD = config("REDIS_PASSWORD", default=None)
REDIS_USERNAME = config("REDIS_USERNAME", default="default")
REDIS_PREFIX = config("REDIS_PREFIX", default="karrio")

# karrio server caching setup
if REDIS_HOST is not None:
Expand All @@ -22,7 +23,7 @@
"BACKEND": "django_redis.cache.RedisCache",
"LOCATION": REDIS_CONNECTION_URL,
"OPTIONS": {"CLIENT_CLASS": "django_redis.client.DefaultClient"},
"KEY_PREFIX": "karrio",
"KEY_PREFIX": REDIS_PREFIX,
}
}
print(f"Redis connection initialized at: {REDIS_CONNECTION_URL}")
9 changes: 8 additions & 1 deletion apps/dashboard/public/carriers/dhl_express_icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
54 changes: 54 additions & 0 deletions apps/dashboard/public/carriers/gls_icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading