Skip to content

Commit

Permalink
Bump internal dependencies (#1641)
Browse files Browse the repository at this point in the history
  • Loading branch information
jderusse authored Jan 10, 2024
1 parent c29cf38 commit a1b15cb
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 38 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Changed

- Adding `async-aws/s3` 2.0, `async-aws/sqs` 2.0, `async-aws/ssm` 2.0 in dev dependencies

## 1.12.0

### Added
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"async-aws/s3": "^1.0",
"async-aws/s3": "^1.0 || ^2.0",
"async-aws/ses": "^1.0",
"async-aws/sqs": "^1.0",
"async-aws/ssm": "^1.0",
"matthiasnoback/symfony-config-test": "^4.1",
"nyholm/symfony-bundle-test": "^2.0",
"async-aws/sqs": "^1.0 || ^2.0",
"async-aws/ssm": "^1.0 || ^2.0",
"matthiasnoback/symfony-config-test": "^4.1 || ^5.0",
"nyholm/symfony-bundle-test": "^3.0",
"symfony/cache": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"autoload": {
Expand Down
3 changes: 2 additions & 1 deletion tests/Functional/BundleInitializationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,9 @@ private function bootWithConfig(array $configs): void

// hack to assert the version of the bundle
if (class_exists(ConsoleProfilerListener::class)) {
$kernel->addTestConfig(__DIR__ . '/Resources/config/default_sf64.yaml');
$kernel->addTestConfig(__DIR__ . '/Resources/config/base_sf64.yaml');
}
$kernel->addTestConfig(__DIR__ . '/Resources/config/base.yaml');
}]);
}
}
6 changes: 6 additions & 0 deletions tests/Functional/Resources/config/base.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
framework:
session:
enabled: false
http_method_override: false
router:
utf8: true
4 changes: 0 additions & 4 deletions tests/Functional/Resources/config/default.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
framework:
session:
enabled: false
http_method_override: false
async_aws:
config:
region: eu-central-1
Expand Down
4 changes: 0 additions & 4 deletions tests/Functional/Resources/config/empty.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
framework:
session:
enabled: false
http_method_override: false
async_aws: ~
4 changes: 0 additions & 4 deletions tests/Functional/Resources/config/empty_clients_key.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
framework:
session:
enabled: false
http_method_override: false
async_aws:
config:
region: eu-central-1
Expand Down
4 changes: 0 additions & 4 deletions tests/Functional/Resources/config/issue-793/default.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
framework:
session:
enabled: false
http_method_override: false
async_aws:
config:
sharedCredentialsFile: ~
4 changes: 0 additions & 4 deletions tests/Functional/Resources/config/no_service_sqs.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
framework:
session:
enabled: false
http_method_override: false
async_aws:
clients:
sqs:
Expand Down
4 changes: 0 additions & 4 deletions tests/Functional/Resources/config/no_services.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
framework:
session:
enabled: false
http_method_override: false
async_aws:
register_service: false
4 changes: 0 additions & 4 deletions tests/Functional/Resources/config/not_installed_service.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
framework:
session:
enabled: false
http_method_override: false
async_aws:
config:
region: eu-central-1
Expand Down
4 changes: 0 additions & 4 deletions tests/Functional/Resources/config/override.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
framework:
session:
enabled: false
http_method_override: false
async_aws:
config:
region: eu-central-1
Expand Down

0 comments on commit a1b15cb

Please sign in to comment.