Skip to content

Commit

Permalink
Updated memcached dependency and added testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
reynoldsalec committed Feb 21, 2024
1 parent e5b6e17 commit b94b1e3
Show file tree
Hide file tree
Showing 5 changed files with 580 additions and 667 deletions.
17 changes: 13 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
## v1.1.0 - [February 21, 2024](https://github.com/lando/acquia/releases/tag/v1.1.0)

* Updated memcached plugin to [v1.1.0](https://github.com/lando/memcached/releases/tag/v1.1.0).
* Added testing of memcached.
* Updated deps.

## v1.0.0 - [December 7, 2023](https://github.com/lando/acquia/releases/tag/v1.0.0)
* Dialed fully for `lando update`

* Dialed fully for `lando update`

## v0.10.0 - [October 5, 2023](https://github.com/lando/acquia/releases/tag/v0.10.0)

* Added a "wait for user" script to ensure user is loaded before cloning repo. [lando/core#71](https://github.com/lando/core/pull/71)

## v0.9.0 - [July 3, 2023](https://github.com/lando/acquia/releases/tag/v0.9.0)
* Removed bundle-dependencies and version-bump-prompt from plugin.
* Updated package to use prepare-release-action.
* Updated documentation to reflect new release process.

* Removed bundle-dependencies and version-bump-prompt from plugin.
* Updated package to use prepare-release-action.
* Updated documentation to reflect new release process.

## v0.8.0 - [May 17, 2023](https://github.com/lando/acquia/releases/tag/v0.8.0)

Expand Down
2 changes: 1 addition & 1 deletion builders/acquia-memcached.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

const _ = require('lodash');
const LandoMemcached = require('@lando/memcached/services/memcached/builder.js');
const LandoMemcached = require('@lando/memcached/builders/memcached.js');

// Builder
module.exports = {
Expand Down
3 changes: 3 additions & 0 deletions examples/drupal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ lando php -m | grep xdebug || echo $? | grep 1
# Should be running apache 2.4
cd drupal9
lando ssh -s appserver -c "apachectl -V | grep 2.4."

# Should be running memcached 1.x
lando ssh -s cache -c "memcached --version | grep 1"
```

Destroy tests
Expand Down
Loading

0 comments on commit b94b1e3

Please sign in to comment.