Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
Overhang.IO committed Jun 25, 2024
2 parents 30fa1ea + dce1138 commit 0dc8bf7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 13 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ instructions, because git commits are used to generate release notes:

<!-- scriv-insert-here -->

<a id='changelog-18.1.0'></a>
## v18.1.0 (2024-06-25)

- 💥[Feature] Upgrade default charset and collation of mysql to "utf8mb4" and "utf8mb4_unicode_ci" respectively. This upgrade should be automatic for most users. However, if you are running a third-party MySQL (i.e. `RUN_MYSQL=false`), you are expected to upgrade manually. Please refer to the third-party provider's documentation for detailed upgrade instructions. Ensuring that your MySQL version is up-to-date is crucial for maintaining compatibility and security. (by @Danyal-Faheem)
- [Bugfix] Do not fail on start when there are not persistent volume claims to apply. (by @snglth)
- [Bugfix] Fix legacy warnings during Docker build. (by @regisb)

<a id='changelog-18.0.0'></a>
## v18.0.0 (2024-06-19)

Expand Down

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/20240621_172314_regis.md

This file was deleted.

2 changes: 1 addition & 1 deletion tutor/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Increment this version number to trigger a new release. See
# docs/tutor.html#versioning for information on the versioning scheme.
__version__ = "18.0.0"
__version__ = "18.1.0"

# The version suffix will be appended to the actual version, separated by a
# dash. Use this suffix to differentiate between the actual released version and
Expand Down
11 changes: 2 additions & 9 deletions tutor/commands/k8s.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,18 +296,11 @@ def start(context: K8sContext, names: List[str]) -> None:
names = names or ["all"]
for name in names:
if name == "all":
# Create volumes
# Create everything except jobs
kubectl_apply(
context.root,
"--wait",
"--selector",
"app.kubernetes.io/component=volume",
)
# Create everything else except jobs
kubectl_apply(
context.root,
"--selector",
"app.kubernetes.io/component notin (job,volume,namespace)",
"app.kubernetes.io/component notin (job,namespace)",
)
else:
kubectl_apply(
Expand Down

0 comments on commit 0dc8bf7

Please sign in to comment.