Mlrun

Latest version: v1.6.2

Safety actively analyzes 624134 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 20 of 90

1.4.0rc11

Not secure
Features / Enhancements
* **LogCollector**: Don't start logs periodically for runs in aborted state, 3698, TomerShor
* **UI**: [Features & enhancement](https://github.com/mlrun/ui/releases/tag/v1.4.0-rc11#features-and-enhancements)

Bug fixes
* **Functions**: Fix delete function schedules when does not exists, 3712, yaelgen
* **Runtimes**: Fix recursive funcdocs ast parsing, 3707, alonmr
* **Notifications**: Fix notifications not being sent if previous run was configured with wrong param, 3701, quaark
* **Notifications**: Fix local job with notification fails with `attributeerror: 'nonetype' object has no attribute 'get'`, 3700, quaark
* **UI**: [Bug fixes](https://github.com/mlrun/ui/releases/tag/v1.4.0-rc11#bug-fixes)


Pull requests:
e1249ba2 [Functions] Fix delete function schedules when does not exists (3712)
d368e48d [Runtimes] Fix recursive funcdocs AST parsing (3707)
bf086c21 [LogCollector] Don't start logs periodically for runs in aborted state (3698)
70202fa4 [Notifications] Fix notifications not being sent if previous run was configured with wrong param (3701)
9342f255 [Notifications] Fix local job with notification fails with `AttributeError: 'NoneType' object has no attribute 'get'` (3700)

1.4.0rc10

Not secure
Features / Enhancements
* **API**: Enrich function object before build, 3697, alonmr
* **Docs**: Embed videos (were previously linked), 3692, jillnogold
* **Runtimes**: Improve docstring for list_runs() method, 3686, yaelgen
* **Docs**: Extend description for infer_options, 3694, george0st
* **Unknown**: Revert "[api] enrich function object before build", 3693, liranbg
* **UI**: [Features & enhancement](https://github.com/mlrun/ui/releases/tag/v1.4.0-rc10#features-and-enhancements)

Bug fixes
* **Builder**: Fix requirements path when no requirements, 3699, alonmr
* **Docs**: Add fixes in v1.3.2 to change log, 3681, jillnogold
* **UI**: [Bug fixes](https://github.com/mlrun/ui/releases/tag/v1.4.0-rc10#bug-fixes)


Pull requests:
a99d0055 [Builder] Fix requirements path when no requirements (3699)
60bcf106 [API] Enrich function object before build (3697)
09d95eb5 [Docs] Add fixes in v1.3.2 to Change log (3681)
c576e47e [Docs] embed videos (were previously linked) (3692)
4f0f23e2 [Runtimes] Improve docstring for list_runs() method (3686)
df1abb56 [Docs] Extend description for infer_options (3694)
5f38c8b9 Revert "[API] Enrich function object before build" (3693)

1.4.0rc9

Not secure
Features / Enhancements
* **API**: Resolve function uri when submitting a schedule from hub function, 3691, tankilevitch
* **Notifications**: Making db notification objects more generic, 3678, theSaarco
* **API**: Enrich function object before build, 3688, alonmr
* **Docs**: Installing python packages on top of mlrun, 3666, alonmr
* **Builder**: Install mlrun with python requirements, 3673, alonmr
* **Build**: Revert "install requirements using `pip --upgrade`", 3679, alonmr
* **Log Collector**: Remove project mutex, 3675, tankilevitch
* **LogCollector**: Better handling errors, 3677, liranbg
* **Docs**: Add `v1.3.1` release notes, 3670, jillnogold
* **Model Monitoring**: Replace `endpoint_id` with `uid` to handle old model endpoint schemas, 3667, Eyal-Danieli
* **Docs**: Add simple descriptions of function types: job and serving, 3586, jillnogold
* **CI**: Add devutils, 3624, eliyahu77
* **Docs**: Document building custom transformations for multiple engines, 3653, theSaarco
* **Docs**: Add documentation for project `build_image` and `build_config`, 3622, theSaarco
* **UI**: [Features & enhancement](https://github.com/mlrun/ui/releases/tag/v1.4.0-rc9#features-and-enhancements)

Bug fixes
* **Project**: Fix project.clear_context() deletes all the context and not subpath, 3689, yaelgen
* **Datastore**: Fix dataitem as df from url with query params, 3684, alonmr
* **Workflow**: Fix passing arguments to `_wait_for_pipeline_completion`, 3683, tankilevitch
* **Datastore**: Fix sql injection vulnerabilities, 3680, gtopper
* **Notifications**: Fix sensitive data appearing in api logs, 3663, quaark
* **Function**: Fix deleting a function with schedule only, 3668, yaelgen
* **Projects**: Fix collecting `cleanup_ttl`/`ttl` when running workflow from path, 3669, yonishelach
* **API**: Fix access of deprecated schema, 3664, alonmr
* **Logs**: Fix `/build/status` returning 500 when failing `kubectl logs`, 3660, quaark
* **CI**: Fix system test step name missing matrix item, 3661, liranbg
* **Execution**: Fix missing run inputs on submit job from ui, 3596, alonmr
* **UI**: [Bug fixes](https://github.com/mlrun/ui/releases/tag/v1.4.0-rc9#bug-fixes)


Pull requests:
0765b928 [API] Resolve function URI when submitting a schedule from hub function (3691)
2b73d4d2 [Notifications] making DB notification objects more generic (3678)
aae8e709 [Project] Fix project.clear_context() deletes all the context and not subpath (3689)
3a0d3226 [API] Enrich function object before build (3688)
ece1d538 [Docs] Installing python packages on top of MLRun (3666)
0ee30902 [Builder] Install mlrun with python requirements (3673)
2a94447c [Datastore] Fix DataItem as DF from url with query params (3684)
4f93629a [Workflow] Fix passing arguments to `_wait_for_pipeline_completion` (3683)
35320251 [Datastore] Fix SQL injection vulnerabilities (3680)
17cdc1d9 [Build] Revert "Install requirements using `pip --upgrade`" (3679)
97ec2959 [Log Collector] Remove project mutex (3675)
c852c171 [LogCollector] Better handling errors (3677)
6f4856e1 [Notifications] Fix sensitive data appearing in api logs (3663)
2efe330c [Function] Fix deleting a function with schedule only (3668)
7bf26013 [Docs] Add `V1.3.1` release notes (3670)
65dd220c [Model Monitoring] Replace `endpoint_id` with `uid` to handle old model endpoint schemas (3667)
78f89fa1 [Projects] Fix collecting `cleanup_ttl`/`ttl` when running workflow from path (3669)
0123ed74 [Docs] Add simple descriptions of function types: job and serving (3586)
7859866a [CI] Add devutils (3624)
123d88cf [API] Fix access of deprecated schema (3664)
aad5b69c [Logs] Fix `/build/status` returning 500 when failing `kubectl logs` (3660)
8eed891c [CI] Fix system test step name missing matrix item (3661)
29e0d840 [Execution] Fix missing run inputs on submit job from UI (3596)
affcd95f [Docs] Document building custom transformations for multiple engines (3653)
71812b78 [Docs] Add documentation for project `build_image` and `build_config` (3622)

1.4.0rc8

Not secure
Features / Enhancements
* **CI**: Show run names, 3658, liranbg
* **Run**: Write meaningful logs when waiting for pipeline to finish, 3631, liranbg
* **Build**: Install requirements using `pip --upgrade`, 3652, TomerShor
* **CI**: Add condition to run periodic re-build only on `mlrun/mlrun` repo, 3651, tankilevitch
* **Log Collector**: Change log file names to old format, 3647, TomerShor
* **Docs**: Add change log for v1.3.1 and v1.2.3, 3502, jillnogold
* **CI**: Remove obsoleted flag, 3644, liranbg
* **Runtime**: Deprecate `requirements` as string and add `requirements_file` argument, 3628, TomerShor
* **Requirements**: Remove protobuf requirement, 3617, alonmr
* **Logs**: Update some log lines to be better structured, 3633, liranbg
* **CI**: Skip test for oss, 3634, liranbg
* **LogCollector**: Update deps, 3632, liranbg
* **CI**: Remove deprecated field, 3635, liranbg
* **Logging**: Remove spammy storing artifact log line, 3630, liranbg
* **CI**: Use click option instead of positional arguement, 3629, liranbg
* **UI**: [Features & enhancement](https://github.com/mlrun/ui/releases/tag/v1.4.0-rc8#features-and-enhancements)

Bug fixes
* **API**: Fix get pipelines return code in case of nonexistent project, 3625, yanburman
* **API**: Use apirouter prefix where possible, 3615, yanburman
* **System test**: Fix access to relative path, 3655, alonmr
* **Model Monitoring**: Fix event error message in monitoring stream graph, 3639, Eyal-Danieli
* **Notifications**: Fix notifications pusher failing to initialize, 3654, quaark
* **Tests**: Fix spark merger tests, 3646, gtopper
* **Model Monitoring**: Fix deployment of monitoring v3io stream, 3641, Eyal-Danieli
* **Function**: Fix deleting a function with schedule, 3642, yaelgen
* **Notifications**: Fix missed notifications in notifications pusher, 3607, yaelgen
* **Projects**: Fix bc for get requests of non-normalized function names, 3568, yaelgen
* **Launcher**: Fix pipeline steps being saved as functions to the db, 3627, quaark
* **Nuclio**: Resolve full image names if enrichment prefix is given, 3623, TomerShor
* **Runtime**: Fix `run` type hints, 3620, alonmr
* **Notifications**: Fix notification param masking on run object, 3613, quaark
* **CI**: Fix calling prepare.py script, 3621, liranbg
* **UI**: [Bug fixes](https://github.com/mlrun/ui/releases/tag/v1.4.0-rc8#bug-fixes)


Pull requests:
729b3020 [CI] Show run names (3658)
83022b57 [API] Fix get pipelines return code in case of nonexistent project (3625)
a1151c29 [API] Use APIRouter prefix where possible (3615)
bdba9556 [System test] Fix access to relative path (3655)
1afcb83d [Model Monitoring] Fix event error message in monitoring stream graph (3639)
c4916254 [Run] Write meaningful logs when waiting for pipeline to finish (3631)
5e6d7093 [Notifications] Fix notifications pusher failing to initialize (3654)
bfd8b970 [Tests] Fix spark merger tests (3646)
50d27339 [Build] Install requirements using `pip --upgrade` (3652)
9f86d76b [CI] Add condition to run periodic re-build only on `mlrun/mlrun` repo (3651)
a20bd5fe [Model Monitoring] Fix deployment of monitoring V3IO stream (3641)
1b0c54a0 [Function] Fix deleting a function with schedule (3642)
f6e96edb [Log Collector] Change log file names to old format (3647)
5fe0a2e9 [Docs] Add change log for v1.3.1 and v1.2.3 (3502)
d6b31e7e [CI] Remove obsoleted flag (3644)
f62d0ba7 [Runtime] Deprecate `requirements` as string and add `requirements_file` argument (3628)
6bd07176 [Requirements] Remove protobuf requirement (3617)
008a22ac [Logs] Update some log lines to be better structured (3633)
9771d065 [Notifications] Fix missed notifications in notifications pusher (3607)
2efa6984 [CI] Skip test for OSS (3634)
8a4a85d7 [LogCollector] Update deps (3632)
81c963b0 [CI] Remove deprecated field (3635)
1e5a9a64 [Logging] Remove spammy storing artifact log line (3630)
e5ea97f2 [CI] Use click option instead of positional arguement (3629)
5796e80f [Projects] Fix BC for GET requests of non-normalized function names (3568)
78141b50 [Launcher] Fix pipeline steps being saved as functions to the DB (3627)
08704a0c [Nuclio] Resolve full image names if enrichment prefix is given (3623)
7d8fe068 [Runtime] Fix `run` type hints (3620)
f3c3b566 [Notifications] Fix notification param masking on run object (3613)
04c1b074 [CI] Fix calling prepare.py script (3621)

1.4.0rc7

Not secure
Features / Enhancements
* **System Tests**: Change `test_run` project name, 3606, TomerShor
* **UI**: [Features & enhancement](https://github.com/mlrun/ui/releases/tag/v1.4.0-rc7#features-and-enhancements)

Bug fixes
* **Notifications**: Fix sending duplicate notifications, 3612, quaark
* **Notifications**: Fix notifications being resent when api restarts, 3614, quaark
* **CI**: Fix generating env for oss tests, 3616, liranbg
* **Launcher**: Fix `mlrun.config` read, 3618, alonmr
* **CI**: Fix allowing tmate for oss tests, 3610, liranbg
* **Notifications**: Fix raising exception when git notification gets a bad request, 3611, quaark
* **Builder**: Loading source with local path fixes, 3276, alonmr
* **UI**: [Bug fixes](https://github.com/mlrun/ui/releases/tag/v1.4.0-rc7#bug-fixes)


Pull requests:
1b5fc723 [Notifications] Fix sending duplicate notifications (3612)
2c360eb7 [Notifications] Fix notifications being resent when api restarts (3614)
3025dbe9 [CI] Fix generating env for OSS tests (3616)
3bf2d375 [Launcher] Fix `mlrun.config` read (3618)
b4558d0f [CI] Fix allowing tmate for OSS tests (3610)
7472234f [Notifications] Fix raising exception when git notification gets a Bad Request (3611)
e15e35cc [System Tests] Change `test_run` project name (3606)
06284af1 [Builder] Loading source with local path fixes (3276)

1.4.0rc6

Not secure
Features / Enhancements
* **API**: Remove session param from get /frontend-spec, 3570, alonmr
* **Projects**: Add `project.build_image()` enabling build of images directly from the project, 3594, theSaarco
* **Requirements**: Bump storey to 1.4.0, 3592, tomerm-iguazio
* **CI**: Refined tag description for security scan, 3590, liranbg
* **DB**: Runtime configurable sql mode, 3577, liranbg
* **Requirements**: Bump nuclio-jupyter to 0.9.10, 3588, TomerShor
* **Docs**: Add example of nuclio function, 3567, jillnogold
* **Utils**: Add named logger, 3579, liranbg
* **Launcher**: Prepare image for deploy, 3563, alonmr
* **API**: Deprecate artifacts endpoints, 3574, alonmr
* **Docs**: Add git best practices topic, 3573, jillnogold
* **API**: Align functions endpoints, 3576, tankilevitch
* **CI**: Periodic rebuild of unstable images, 3562, tankilevitch
* **Dask**: Remove commented out "is client" test, 3571, alonmr
* **SQLDB**: Remove get function latest uid method, 3569, alonmr
* **CI**: Add setup install fs required services script, 3492, eliyahu77
* **UI**: [Features & enhancement](https://github.com/mlrun/ui/releases/tag/v1.4.0-rc6#features-and-enhancements)

Bug fixes
* **Config**: Fix overriding api sql db with nopdb, 3608, tankilevitch
* **CI**: Fix dev utilities working directory, 3605, liranbg
* **CI**: Fix removing stale mlrun docker images, 3604, liranbg
* **Servnig**: Fix plot when before param exists., 3585, davesh0812
* **Feature Set**: Fix set_targets to overwrite the existing targets and allow no-target ingest if running locally, 3583, davesh0812
* **System tests**: Fix for test run notifications, 3591, yaelgen
* **Launcher**: Fix duplicate push notification call for local runs, 3593, alonmr
* **Test**: Fix transient scheduler unit test failure, 3587, alonmr
* **CI**: Move `ip_addr_prefix` to prepare run, 3584, tankilevitch
* **API**: Prepare some configuration for local debugging follow up, 3580, liranbg
* **API**: Update comment on /api router prefix, 3575, alonmr
* **API**: Prepare some configuration for local debugging, 3578, liranbg
* **UI**: [Bug fixes](https://github.com/mlrun/ui/releases/tag/v1.4.0-rc6#bug-fixes)


Pull requests:
182623c0 [Config] Fix overriding API SQL DB with nopDB (3608)
4aeebcc3 [API] Remove session param from GET /frontend-spec (3570)
a1d04bbb [Projects] Add `project.build_image()` enabling build of images directly from the project (3594)
95a0caff [CI] Fix dev utilities working directory (3605)
007f604a [CI] Fix removing stale mlrun docker images (3604)
5b2bc3d4 [Requirements] bump storey to 1.4.0 (3592)
f7d79b82 [Servnig] Fix plot when before param exists. (3585)
94496af5 [Feature Set] Fix set_targets to overwrite the existing targets and allow no-target ingest if running locally (3583)
308702aa [CI] Refined tag description for security scan (3590)
1eab2db9 [System tests] Fix for test run notifications (3591)
8b226ed4 [Launcher] Fix duplicate push notification call for local runs (3593)
85073c97 [DB] Runtime configurable sql mode (3577)
a1b80879 [Test] Fix transient scheduler unit test failure (3587)
501ab669 [Requirements] Bump nuclio-jupyter to 0.9.10 (3588)
927bebdc [Docs] Add example of Nuclio function (3567)
2a920e6c [Utils] Add named logger (3579)
338b93d1 [CI] Move `IP_ADDR_PREFIX` to prepare run (3584)
d6df3a7f [Launcher] Prepare image for deploy (3563)
746ae26a [API] Prepare some configuration for local debugging follow up (3580)
c6886808 [API] Update comment on /api router prefix (3575)
84a1d7f3 [API] Deprecate artifacts endpoints (3574)
46b730ed [Docs] Add Git best practices topic (3573)
2666afe0 [API] Align functions endpoints (3576)
4229670c [API] Prepare some configuration for local debugging (3578)
6417fa51 [CI] Periodic rebuild of unstable images (3562)
29160b9e [Dask] Remove commented out "is client" test (3571)
19e2e8fd [SQLDB] Remove get function latest uid method (3569)
50950156 [CI] Add setup install fs required services script (3492)

Page 20 of 90

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.