Skip to content

Tags: kseckinc/dashboard

Tags

v0.23.0

Toggle v0.23.0's commit message
Update tests to latest Pipelines and Triggers releases

Update readme compatibility table to reflect latest versions

v0.22.0

Toggle v0.22.0's commit message
Run npm audit fix and update webpack

Run `npm audit fix` to update a number of transitive dependencies
and reduce the amount of noise produced during `npm install`.

Update `webpack` to resolve issue with missing config due to
change in transitive dependencies that would prevent the dev server
from starting successfully.

v0.21.0

Toggle v0.21.0's commit message
Update tests and readme to latest Pipelines release

v0.20.0

Toggle v0.20.0's commit message
Update to latest react patch release

v0.19.0

Toggle v0.19.0's commit message
Split websocket connections by kind

Instead of connecting to a single websocket endpoint to receive
events for all potentially interesting resources on the cluster,
switch to a model where the page connects to a separate websocket
endpoint per kind it wants to watch for updates.

This means that any given page only has to process events for resources
it's actually displaying. It also has the added benefit of allowing us
to provide real-time updates for resources displayed by extensions
which was not supported under the previous model.

The Kubernetes API server supports a `watch` query parameter on 'list'
requests to make a websocket connection instead of the default HTTP
GET request. This is not supported on 'get' requests for a single resource.
To support watching updates for a single resource we use the
`fieldSelector` query param to limit the list request to the single
resource we're interested in via its `metadata.name` field.

v0.18.1

Toggle v0.18.1's commit message
Fix UI bug for TaskRuns in read-only mode

Batch actions should not be enabled in read-only mode. A bug introduced
during recent refactoring meant that the read-only flag wasn't being read
correctly in this case causing the checkboxes to appear on the TaskRuns
table. This gave the impression that TaskRuns could be deleted, however
the action is still blocked in environments where RBAC is enforced as
the Dashboard ServiceAccount does not have permissions to delete these
resources when deployed in read-only mode.

Update the test to prevent a similar regression in future, as well as
updating the equivalent test for PipelineRuns in the same manner.

v0.18.0

Toggle v0.18.0's commit message
Use string flag as X-Frame-Options indicator

The xframe-options flag indicates how users would like to restrict the X-Frame-Options header on response. Its default value is DENY if not set. Users can set its value in [DENY, SAMEORIGIN]. For other values X-Frame-Options header will be set to DENY by default. If xframe-options flag is set '' explicitly, X-Frame-Options header won't be set.

v0.17.0

Toggle v0.17.0's commit message
Update to latest Pipelines and Triggers releases

v0.16.1

Toggle v0.16.1's commit message
Fix for SideNav not collapsing when toggling the menu button

The `expanded` prop of the `SideNav` component was incorrectly set
as an object instead of a boolean, preventing the nav from being
collapsed. Fix the state update so it's providing a boolean as
expected.

v0.16.0

Toggle v0.16.0's commit message
Publish @tektoncd/dashboard-components 0.0.1-alpha.70