Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancements to download command to support update command #446

Open
wants to merge 17 commits into
base: 1.x-1.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,19 @@ and this project follows the
which is based on the major version of Backdrop CMS with a semantic version
system for each contributed module, theme and layout.

## [Unreleased] - 2024-09-25
## [Unreleased] - 2024-TBC

### Added
- An option for the `db-import` command to allow import from newer MariaDB
servers with the enable sandbox command in the dump file if the destination
database or client does not support it.
- Tooling for the lando recipe to support Xdebug with VS Code.
- The ability to download specified releases or branches of modules, themes,
layouts or Backdrop itself.

### Changed
- The functions within the download command have been made more flexible and
better able to support the coming 'update' command.

### Fixed
- Unhandled errors and warnings if commands run outside Backdrop root and/or
Expand Down
1 change: 1 addition & 0 deletions bee.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
require_once __DIR__ . '/includes/filesystem.inc';
require_once __DIR__ . '/includes/input.inc';
require_once __DIR__ . '/includes/globals.inc';
require_once __DIR__ . '/includes/info.inc';
require_once __DIR__ . '/includes/telemetry.inc';

// Main execution code.
Expand Down
Loading