Skip to content

Commit a1b15cb

Browse files
authored
Bump internal dependencies (#1641)
1 parent c29cf38 commit a1b15cb

13 files changed

+17
-38
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Changed
6+
7+
- Adding `async-aws/s3` 2.0, `async-aws/sqs` 2.0, `async-aws/ssm` 2.0 in dev dependencies
8+
59
## 1.12.0
610

711
### Added

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0 || ^7.0"
2020
},
2121
"require-dev": {
22-
"async-aws/s3": "^1.0",
22+
"async-aws/s3": "^1.0 || ^2.0",
2323
"async-aws/ses": "^1.0",
24-
"async-aws/sqs": "^1.0",
25-
"async-aws/ssm": "^1.0",
26-
"matthiasnoback/symfony-config-test": "^4.1",
27-
"nyholm/symfony-bundle-test": "^2.0",
24+
"async-aws/sqs": "^1.0 || ^2.0",
25+
"async-aws/ssm": "^1.0 || ^2.0",
26+
"matthiasnoback/symfony-config-test": "^4.1 || ^5.0",
27+
"nyholm/symfony-bundle-test": "^3.0",
2828
"symfony/cache": "^4.4 || ^5.0 || ^6.0 || ^7.0"
2929
},
3030
"autoload": {

tests/Functional/BundleInitializationTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,9 @@ private function bootWithConfig(array $configs): void
186186

187187
// hack to assert the version of the bundle
188188
if (class_exists(ConsoleProfilerListener::class)) {
189-
$kernel->addTestConfig(__DIR__ . '/Resources/config/default_sf64.yaml');
189+
$kernel->addTestConfig(__DIR__ . '/Resources/config/base_sf64.yaml');
190190
}
191+
$kernel->addTestConfig(__DIR__ . '/Resources/config/base.yaml');
191192
}]);
192193
}
193194
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
framework:
2+
session:
3+
enabled: false
4+
http_method_override: false
5+
router:
6+
utf8: true

tests/Functional/Resources/config/default.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
framework:
2-
session:
3-
enabled: false
4-
http_method_override: false
51
async_aws:
62
config:
73
region: eu-central-1
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
framework:
2-
session:
3-
enabled: false
4-
http_method_override: false
51
async_aws: ~

tests/Functional/Resources/config/empty_clients_key.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
framework:
2-
session:
3-
enabled: false
4-
http_method_override: false
51
async_aws:
62
config:
73
region: eu-central-1
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
framework:
2-
session:
3-
enabled: false
4-
http_method_override: false
51
async_aws:
62
config:
73
sharedCredentialsFile: ~

tests/Functional/Resources/config/no_service_sqs.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
framework:
2-
session:
3-
enabled: false
4-
http_method_override: false
51
async_aws:
62
clients:
73
sqs:

0 commit comments

Comments
 (0)