Skip to content

Commit

Permalink
Merge pull request #740 from karrioapi/karrio-2024.12rc9
Browse files Browse the repository at this point in the history
[rc] Karrio 2024.12rc9
  • Loading branch information
danh91 authored Dec 18, 2024
2 parents 7f7a2b1 + 3957639 commit 00aef36
Show file tree
Hide file tree
Showing 31 changed files with 898 additions and 634 deletions.
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

0 comments on commit 00aef36

Please sign in to comment.