Skip to content

Releases: lucafaggianelli/plombery

v0.5.2

29 Nov 23:06

Choose a tag to compare

What's Changed

Full Changelog: v0.5.1...v0.5.2

v0.6.0-beta3

06 Nov 00:52

Choose a tag to compare

v0.6.0-beta3 Pre-release
Pre-release
fix parent task run id in create task run

v0.6.0-beta2

04 Nov 13:53

Choose a tag to compare

v0.6.0-beta2 Pre-release
Pre-release

Fix trigger params passed to pipeline

v0.6.0-beta1

03 Nov 16:54

Choose a tag to compare

v0.6.0-beta1 Pre-release
Pre-release
fix context resolution for mapped tasks

v0.5.2-beta2

02 Nov 23:09

Choose a tag to compare

v0.5.2-beta2 Pre-release
Pre-release
fix build

v0.5.2-beta1

02 Nov 18:24

Choose a tag to compare

v0.5.2-beta1 Pre-release
Pre-release

What's Changed

Full Changelog: v0.5.1...v0.5.2-beta1

v0.5.1

28 Oct 14:30

Choose a tag to compare

Fixed

  • alembic.ini file was not correctly packaged

v0.5.0

28 Oct 11:17

Choose a tag to compare

🥳 Finally a new release! 🥳

💣 Possible breaking changes

This release might include some breaking changes due to the introduction of database migrations managed by Alembic and
due to the minimum supported Python version which now is 3.9 (Python 3.8 support dropped).

Plombery v0.5.0 introduces Alembic for managing database migrations, this is a great addition as it adds flexibility to the project
and allows to introduce new features in the future.

👉 The upgrade to Plombery v0.5.0 should run smooth, though there's a risk that it won't, in that case you need
to drop your database or migrate the database manually.

Changelog

Added

  • (possible breaking) Database migrations managed by Alembic (#142)
  • Pre-defined auth providers for Google and Microsoft
  • Config for data directory (close #299)
  • Link to REST API docs in settings menu
  • Add download task data button in data view dialog (close #46)
  • Add support to Pydantic's SecretStr input types (by @flashdagger)
  • New website home page

Fixed

  • Release logger resources after run (fix #491)
  • Improve task data visualization (#257)
  • Check data file paths before accessing them
  • Improve in app help
  • Fixed boolean parameter input when default is True (by @flashdagger)
  • Fix connection with non sqlite db (#392) (by @PierrickBrun)

Changed

  • (possible breaking) Minimum Python supported version is 3.9
  • Migrated plain websocket to SocketIO for improved communication stability
  • (internal): pipeline HTTP run url is now /pipelines/{pipeline_id}/run
  • (internal): updated frontend dependencies

Removed

  • Removed python websockets dependency

New Contributors

Full Changelog: 0.4.1...v0.5.0

v0.4.1

11 Oct 15:37
b4dabb2

Choose a tag to compare

Fixed

  • No pipelines message appearing when pipelines where there
  • Fix the traceback info dialog (fix #229)

v0.4.0

06 Oct 19:25
888afe8

Choose a tag to compare

It took a while but here's a new release of Plombery!

Automatically navigate to a run page when you run a pipeline or a trigger manually via the run button:
auto-navigate-to-run

A dev tool can't lack the dark mode! Thanks Tremor
dark-mode

All times are shown on the web UI as local times and if you hover them you'll get the UTC time
show-utc-on-hover

During a run, live logs are autoscrolled to the bottom so you always see the latest ones, then if you scroll with your mouse/touchpad the auto scroll is disabled:
log-autoscroll

Ah and take a look at Codespaces, you can play with a Plombery server on the cloud just clicking a button:
codespaces

✨ New Features 💃🕺

  • Navigate to run page after manually running a pipeline or trigger (#71)
  • Improve the UI during a pipeline run (spinning icons, live logs indicator, etc.)
  • Add duration timer to the run page while the pipeline is running
  • Automatic scroll lock for the log stream
  • Show UTC datetime when hovering a datetime
  • Implement Dark mode and theme switcher
  • Create a settings menu for the user, the theme switch and future settings (#157)
  • New doc section: recipes
  • Improve documentation
  • Improve manual run form
  • Add codespaces config to run demo
  • Add allowed_origins configuration to explicitly set CORS headers
  • Add HTML template for email notifications (#52)
  • Add in-app messages for new users to get started (#38)
  • Use skeleton loaders during data fetch

💥 Breaking Changes 💣

There few breaking changes in this release but most of them are very easy to handle.
One of the biggest changes is the migration to Pydantic v2.

Here the breaking changes and how to migrate your code:

  • Update of FastAPI to v0.100+ and pydantic to v2, the biggest change is on Pydantic, check here the
    v2 migration guide
  • All authentication endpoints are now prefixed with /auth, so if you're using the authentication,
    the auth redirect URL is now /auth/redirect, please update it in your OAuth2 provider settings
  • The following API endpoints now have trailing slashes: pipelines/, runs/ and ws/, if you were not
    using Plombery REST API then you don't have anything to do!
  • By default CORS headers Access-Control-Allow-Origin is set to *, but can be set via the config option
    allowed_origins
  • The configuration option server_url has been removed, use allowed_origins instead
  • Trigger.params accepts a BaseModel instance and not a dict, here the changes to do:
class InputParams(BaseModel):
  value: int

Trigger(
-  params={"value": 2},
+  params=InputParams(value=2),
)

🚑 Fixes

  • Sometimes logs are appended to an existing logs files of previous runs (#131)
  • During a pipeline run, logs are streamed to any pipeline run page bug (#130)
  • Check task function signature before calling it (#154)
  • Fix link arrow decoration in scrolling containers
  • Fix table sticky headers
  • Show absolute URL in trigger run hook (#82)
  • Re-implement dialog to fix several bugs (#81)
  • Validate parameters in pipeline run endpoint
  • Derive correct WebSocket scheme from the HTTP URL scheme
  • Fix context in sync tasks functions (#153)
Full Changelog

Added

  • Navigate to run page after running manually a pipeline or trigger (#71)
  • Add ky frontend dependency as HTTP fetch library
  • Spin the running icon in the status badge
  • Add a live logs indicator to the logs viewer
  • Add duration timer to run page
  • Automatic scroll lock for the log stream
  • Show UTC datetime when hovering a datetime
  • Implement Dark mode and theme switcher
  • Create a settings menu (#157)
  • (docs): added recipe SSL certificate check
  • (docs): document pipelines and tasks (#110)
  • Improve manual run form
  • (docs): add codespaces config to run demo
  • Add allowed_origins configuration to explicitly set CORS headers
  • Add HTML template for email notifications (#52)
  • Add in-app messages for new users to get started (#38)
  • Use skeleton loaders during data fetch

Fixed

  • Sometimes logs are appended to an existing logs files of previous runs (#131)
  • During a pipeline run, logs are streamed to any pipeline run page bug (#130)
  • Check task function signature before calling it (#154)
  • Fix link arrow decoration in scrolling containers
  • Fix table sticky headers
  • Show absolute URL in trigger run hook (#82)
  • Re-implement dialog to fix several bugs (#81)
  • Validate parameters in pipeline run endpoint
  • Derive correct WebSocket scheme from the HTTP URL scheme
  • Fix context in sync tasks functions (#153)

Changed

  • Migrate tremor to v3
  • Update frontend deps
  • (breaking) updated FastAPI to v0.103 (#144)
  • updated authlib for compatibility with fastapi
  • (internal): refactored FastAPI backend (#159)
  • (breaking): auth redirect url is now /auth/redirect
  • (breaking): all auth endpoints are prefixed with /auth
  • (breaking): pipelines/, runs/ and ws/ endpoints now have trailing slashes
  • (breaking): updated pydantic to v2
  • (breaking): Trigger.params accepts a BaseModel instance, not a dict
  • (breaking): By default CORS headers allow_origins is set to *

Removed

  • Remove server_url configuration as unused