Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v2.6.3
->v2.7.0
v4.42.0
->v4.43.0
v0.2.49
->v0.2.50
v2.1.1
->v2.2.0
v0.154.0
->v0.155.0
v0.37.2
->v0.38.1
Release Notes
GoogleContainerTools/skaffold (GoogleContainerTools/skaffold)
v2.7.0
Compare Source
Linux amd64
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/v2.7.0/skaffold-linux-amd64 && chmod +x skaffold && sudo mv skaffold /usr/local/bin
Linux arm64
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/v2.7.0/skaffold-linux-arm64 && chmod +x skaffold && sudo mv skaffold /usr/local/bin
macOS amd64
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/v2.7.0/skaffold-darwin-amd64 && chmod +x skaffold && sudo mv skaffold /usr/local/bin
macOS arm64
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/v2.7.0/skaffold-darwin-arm64 && chmod +x skaffold && sudo mv skaffold /usr/local/bin
Windows
https://storage.googleapis.com/skaffold/releases/v2.7.0/skaffold-windows-amd64.exe
Docker image
gcr.io/k8s-skaffold/skaffold:v2.7.0
Highlights:
New Features and Additions:
Fixes:
Updates and Refactors:
Docs, Test, and Release Updates:
Huge thanks goes out to all of our contributors for this release:
aquaproj/aqua-registry (aquaproj/aqua-registry)
v4.43.0
Compare Source
Issues | Pull Requests | aquaproj/aqua-registry@v4.42.0...v4.43.0
🎉 Reached 1,200 packages 🎉
Thank you, all contributors!
🎉 New Packages
#14992 osteele/gojekyll: A fast Go implementation of the Jekyll blogging engine @ponkio-o
#14971 sass/dart-sass: The reference implementation of Sass, written in Dart @ponkio-o
nektos/act (nektos/act)
v0.2.50
Compare Source
Changelog
New Features
a42f3cf
feat: Add new Action Cache (#1913)8314095
feat: cmd support for windows (#1941)6468dd7
feat: Add CopyTarStream to Container Interface (#1912)Bug fixes
7286b43
fix: fail if no stages were found (#1970)Other
80b0955
chore: bump VERSION to 0.2.500c12273
build(deps): bump github.com/moby/buildkit from 0.12.1 to 0.12.2 (#1986)323bee9
build(deps): bump github.com/moby/patternmatcher from 0.5.0 to 0.6.0 (#1985)f64c267
build(deps): bump golangci/golangci-lint-action from 3.6.0 to 3.7.0 (#1978)7ba9f30
Mention act user guide in act (#1973)2a0a0a1
build(deps): bump megalinter/megalinter from 7.2.1 to 7.3.0 (#1965)f55ae1a
ci: change winget job runner toubuntu-latest
(#1959)9f06ca7
change podman socket path (#1961)a00fd96
Fix "Unknown server OS" for Docker container--device
option (#1957)8a9e4f9
refactor: remove unnecessary nil check in RunContext (#1955)f0ca0ab
refactor: docker build BuildContext field (#1914)73d5f78
Shorten or/and in expressions (#1939)0b4c67a
prefer pwsh on windows if found (#1942)3939f48
build(deps): bump megalinter/megalinter from 7.1.0 to 7.2.1 (#1931)74b74e8
build(deps): bump golang.org/x/term from 0.10.0 to 0.11.0 (#1948)c812715
build(deps): bump github.com/moby/buildkit from 0.12.0 to 0.12.1 (#1947)sigstore/cosign (sigstore/cosign)
v2.2.0
Compare Source
Enhancements
Bug Fixes
Documentation
Others
Contributors
weaveworks/eksctl (weaveworks/eksctl)
v0.155.0
: eksctl 0.155.0 (permalink)Compare Source
Release v0.155.0
🚀 Features
🎯 Improvements
🐛 Bug Fixes
🧰 Maintenance
zellij-org/zellij (zellij-org/zellij)
v0.38.1
Compare Source
This is a patch release, fixing some minor issues encountered after the latest major release
What's Changed
Full Changelog: zellij-org/zellij@v0.38.0...v0.38.1
v0.38.0
Compare Source
This release includes lots of improvements for the Zellij UI/UX as well as some exciting new plugin features and infrastructure.
It also provides some performance and resourcee utilization improvements.
This release is a breaking change for plugins. Please see the upgrade guide for plugins
UI/UX
> Session Manager
Read more...
Zellij now includes a built-in session-manager. It is implemented as a plugin and so all of its API is available to plugin authors as well.
The session-manager can switch between sessions, focus a specific tab or pane in the current or in another session, create new sessions and fuzzy-find sessions/tabs/panes by their names.
By default, the session-manager can be started from the
SESSION
mode, the default key-binding sequence beingCtrl o
+w
.If you have a custom keybindings configuration, please see the "Updating a custom keybindings configuration" section below.
> Move panes between tabs
Panes can now be moved between tabs. One can
Break
a pane to a new tab, meaning that a new tab would be created "around" this pane.Read more...
These new keybindings can be found in `Tab` mode. By default, they are: * `Ctrl t` + `b` - Break pane into new tab * `Ctrl t` + `[` or `]` - Move pane between tabsIf you have a custom keybindings configuration, please see the "Updating a custom keybindings configuration" section below.
> Support shortcuts for opening commands in floating panes
Read more...
The `Run` keybinding now supports `floating true` and `name `. This would allow you to bind a key shortcut (eg. `Ctrl f`), to open a specific command (eg. `cargo test`) in a floating pane.> All session names should now be non-offensive
Thanks @tlinford for your work on this!
> Updating a custom keybindings configuration
Read more...
Do you have a custom keybindings configuration in your `config.kdl` file? Does the `keybinds` section have a `clear-defaults=true` attribute? If so, you have to take a small extra step to get the new keybindings for the `session-manager` and the `Break pane` keybindings:You'll need to either:
clear-defaults=true
part in order to get these keybindings "merged" with your custom keybindings.Plugins
> Plugins are now configurable
Read more...
One can now start plugins with a custom key/value configuration, either from layouts:
Or from the cli:
> Plugin permission system (thanks and great work @jaeheonji!)
Read more...
Zellij now includes a permission system for plugins. Plugins can request permissions with the `request_permission` API call. This will display a help screen asking the user to approve permissions to this plugin. Permissions are cached in a `permissions.kdl` file in the user's cache folder and can be cleared by deleting or editing the file.>
move_to_focused_tab
attribute added to theLaunchOrFocusPlugin
keybindingRead more...
The
LaunchOrFocusPlugin
keybind (andlaunch-or-focus-plugin
cli command) now include amove_to_focused_tab
attribute. If true, when focusing the plugin it will always start in the user's focused tab. This is useful for UI pop-up windows (such as thesession-manager
) to not move the user's focus from the tab they're in.> Plugins are now forwards compatible thanks to protocol buffers
Read more...
Zellij plugins have always communicated with the host system (Zellij itself) by serializing/deserializing complex structures over STDIN/STDOUT. This caused problems both for other SDK writers who had to reverse engineer the serialization and for plugin upgrading. Starting this version, Zellij uses Ptorocol Buffers in order to communicate across the wasm boundary.
This means that plugins now should not break in future versions unless there's an API behavior change, which we as maintainers make an effort to do only very rarely.
Bug Fixes
Special thanks to @har7an for his tremendous efforts bringing the CI into shape before the release!
New Contributors
Do you like Zellij?
Me too! So much so that I spend 100% of my time developing and maintaining it and have no other income. Zellij will always be free and open-source. If the tool gives you value and you are able, please consider a recurring monthly donation of 5-10$ to help me pay my bills. There are Zellij stickers in it for you! https://github.com/sponsors/imsnif
Full Changelog: zellij-org/zellij@v0.37.2...v0.38.0
Configuration
📅 Schedule: Branch creation - "after 4pm on thursday" in timezone America/Los_Angeles, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.