Skip to content

Commit

Permalink
fix(cache): Add crowdsec/magento-symfony-cache possible dependency to…
Browse files Browse the repository at this point in the history
… avoid composer conflicts (#6)
  • Loading branch information
julienloizelet committed Jan 4, 2024
1 parent 445f7f9 commit 689f8ea
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 3 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/keepalive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Keep Alive
on:

schedule:
- cron: '0 3 * * 4'

permissions:
contents: write

jobs:
keep-alive:

name: Keep Alive
runs-on: ubuntu-latest

steps:

- name: Clone project files
uses: actions/checkout@v3

# keepalive-workflow adds a dummy commit if there's no other action here, keeps
# GitHub from turning off tests after 60 days
- uses: gautamkrishnar/keepalive-workflow@v1
with:
commit_message: "chore(*): Automated commit to keep the repository active"
time_elapsed: 50
2 changes: 2 additions & 0 deletions .github/workflows/static-test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
- main
paths-ignore:
- '**.md'
schedule:
- cron: '25 02 * * THU'
workflow_dispatch:

permissions:
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

## [1.0.1](https://github.com/crowdsecurity/magento-cs-extension/releases/tag/v1.0.1) - 2024-01-04
[_Compare with previous release_](https://github.com/crowdsecurity/magento-cs-extension/compare/v1.0.0...v1.0.1)


### Fixed

- Allow `crowdsec/symfony-cache:3.0.0` dependency to avoid composer conflict with some Magento 2.4.6 patch versions

---


## [1.0.0](https://github.com/crowdsecurity/magento-cs-extension/releases/tag/v1.0.0) - 2023-08-22
[_Compare with previous release_](https://github.com/crowdsecurity/magento-cs-extension/compare/v0.3.0...v1.0.0)

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "crowdsec/magento2-module-engine",
"description": "This Magento 2 module allows sharing threat signal and benefit from the CrowdSec's community blocklist.",
"type": "magento2-module",
"version": "1.0.0",
"version": "1.0.1",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
Expand Down Expand Up @@ -30,8 +30,8 @@
"community"
],
"require": {
"crowdsec/remediation-engine": "^3.2",
"crowdsec/magento-symfony-cache": "1.1.0 || 2.2.0"
"crowdsec/remediation-engine": "^3.3",
"crowdsec/magento-symfony-cache": "1.1.0 || 2.2.0 || 3.0.0"
},
"autoload": {
"files": [
Expand Down

0 comments on commit 689f8ea

Please sign in to comment.