Skip to content

Commit

Permalink
support for serverless version upgrade re #139
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeifer committed Aug 24, 2022
1 parent 0bbb81a commit 9796e77
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/cirrus/builtins/functions/api/definition.yml
Expand Up @@ -4,7 +4,7 @@ lambda:
timeout: 10
events:
- http: GET /
- http: GET {proxy+}
- http: GET /{proxy+}
iamRoleStatements:
- Effect: "Allow"
Action:
Expand Down
9 changes: 4 additions & 5 deletions src/cirrus/core/constants.py
Expand Up @@ -2,10 +2,9 @@
DEFAULT_SERVERLESS_FILENAME = 'serverless.yml'
DEFAULT_BUILD_DIR_NAME = '.cirrus'

SERVERLESS = {'serverless': '^1.83.1'}
SERVERLESS = {'serverless': '~3.18.0'}
SERVERLESS_PLUGINS = {
'serverless-python-requirements': '~5.1.0',
'serverless-step-functions': '~2.27.1',
'serverless-pseudo-parameters': '~2.5.0',
'serverless-iam-roles-per-function': '~3.1.0',
'serverless-python-requirements': '~5.4.0',
'serverless-step-functions': '~3.7.0',
'serverless-iam-roles-per-function': '~3.2.0',
}

0 comments on commit 9796e77

Please sign in to comment.