-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into thiago/ET-791
- Loading branch information
Showing
96 changed files
with
2,461 additions
and
1,517 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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
--- | ||
name: "Start minor release" | ||
|
||
on: # yamllint disable-line rule:truthy | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: "The Determined minor version to release. E.g. 0.38.0. This will create a new release branch and make commits on main." | ||
required: true | ||
|
||
jobs: | ||
start-minor-release: | ||
name: "Start minor release" | ||
env: | ||
GH_TOKEN: ${{ secrets.DETERMINED_TOKEN }} | ||
permissions: | ||
contents: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: "Validate version" | ||
shell: bash {0} | ||
run: | | ||
grep -E -o '[0-9]+\.[0-9]+\.0' <<<'${{ github.event.inputs.version }}' | ||
ret=$? | ||
if [[ $ret != 0 ]]; then | ||
echo '::error::Version string must match <[0-9]+\.[0-9]+\.0>. Got: <${{ github.event.inputs.version }}>' | ||
exit $ret | ||
fi | ||
- name: Configure git username and e-mail" | ||
run: | | ||
git config user.name github-actions | ||
git config user.email \ | ||
41898282+github-actions[bot]@users.noreply.github.com | ||
- name: "Setup Go" | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.22.0" | ||
|
||
- name: "Install protobuf dependencies" | ||
run: "make get-deps-proto" | ||
|
||
- name: "Create release branch" | ||
run: | | ||
echo 'Creating branch: release-${{ github.event.inputs.version }}' | ||
git checkout -b release-${{ github.event.inputs.version }} | ||
echo 'Pushing release branch' | ||
git push -u origin release-${{ github.event.inputs.version }} | ||
- name: "Switch back to main" | ||
run: "git checkout main" | ||
|
||
- name: "Publish changes to main" | ||
run: | | ||
./tools/scripts/lock-api-state.sh | ||
./tools/scripts/lock-published-urls.sh | ||
git push origin main |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
:orphan: | ||
|
||
**New Features** | ||
|
||
- Experiments: Add a ``name`` field to ``log_policies``. When a log policy matches, its name shows | ||
as a label in the WebUI, making it easy to spot specific issues during a run. Labels appear in | ||
both the run table and run detail views. | ||
|
||
In addition, there is a new format: ``name`` is required, and ``action`` is now a plain string. | ||
For more details, refer to :ref:`log_policies <config-log-policies>`. |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
:orphan: | ||
|
||
**Deprecations** | ||
|
||
- Cluster: A reminder that Amazon Aurora V1 will reach End of Life at the end of 2024. It is no | ||
longer supported as the default persistent storage for AWS Determined deployments. We recommend | ||
that users migrate to Amazon RDS for PostgreSQL. For more information, visit the `migration | ||
instructions <https://gist.github.com/rb-determined-ai/bfa10182e53968e00a3c88df624e777e>`_. | ||
|
||
- Cluster: After Amazon Aurora V1 reaches End of Life, support for Amazon Aurora V1 in ``det deploy | ||
aws`` will be removed. Future deployments will default to the ``simple-rds`` type, which uses | ||
Amazon RDS for PostgreSQL. Changes to the deployment code will ensure this transition to the new | ||
default. | ||
|
||
- Database: As a follow-up to the earlier notice, PostgreSQL 12 will reach End of Life on November | ||
14, 2024. Instances still using PostgreSQL 12 or earlier should upgrade to PostgreSQL 13 or later | ||
to maintain compatibility. The application will log a warning if it detects a connection to any | ||
PostgreSQL version older than 12, and this warning will be updated to include PostgreSQL 12 once | ||
it is End of Life. |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.