Skip to content

Commit

Permalink
Release 24.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
YevheniiSemendiak committed Feb 16, 2024
1 parent 91bed91 commit 26fbc02
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 21 deletions.
4 changes: 0 additions & 4 deletions CHANGELOG.D/1081.feature

This file was deleted.

15 changes: 0 additions & 15 deletions CHANGELOG.D/1110.feature

This file was deleted.

25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,31 @@

[comment]: # (towncrier release notes start)

# Neuro Flow 24.2.0 (2024-02-16)

### Features

- `${{ project.project_name }}` now also configures `volume`'s remote path and `image` reference if the project name was not set.

If you do not have `project_name` set in `project.yaml`, the volume paths are assumed within your current project configured in CLI.
However, if you set `project_name`, this project will be assumed while managing jobs, bakes, volumes, building images etc. within this flow. ([#1081](https://github.com/neuro-inc/neuro-flow/issues/1081))
- Added support of extra Kaniko arguments while building an image:

```
images:
image_a:
ref: image:imagea
context: dir
dockerfile: dir/Dockerfile
extra_kaniko_args: >-
--reproducible
--cache-ttl=1h
--single-snapshot
```

More details on available arguments could be found in [official Kaniko documentation](https://github.com/GoogleContainerTools/kaniko?tab=readme-ov-file#additional-flags). ([#1110](https://github.com/neuro-inc/neuro-flow/issues/1110))


# Neuro Flow 23.11.0 (2023-11-15)

### Features
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ zip_safe=False
python_requires = >=3.8.0
include_package_data = True
install_requires =
neuro-cli>=23.11.0
neuro-cli>=24.2.0
pyyaml>=5.4
funcparserlib>=1.0.0
humanize>=0.5.1
Expand Down
2 changes: 1 addition & 1 deletion src/neuro_flow/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "23.11.0"
__version__ = "24.2.0"

0 comments on commit 26fbc02

Please sign in to comment.