Skip to content

Commit b28f19d

Browse files
Merge pull request #8 from reloc8/minor/update-dependencies
Update dependencies
2 parents f0b166f + 42c65fd commit b28f19d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

data_processing_stack/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def __init__(self, scope: core.Construct, id_: str,
8585
lambda_fetch_properties = lambda_.Function(
8686
self,
8787
'FetchProperties',
88-
code=lambda_.AssetCode('stack/lambda/fetch_properties/1.2.0/python/fetch_properties'),
88+
code=lambda_.AssetCode('stack/lambda/fetch_properties/1.3.0/python/fetch_properties'),
8989
timeout=core.Duration.seconds(10),
9090
description='',
9191
function_name='FetchProperties',
@@ -121,7 +121,7 @@ def __init__(self, scope: core.Construct, id_: str,
121121
layer_fetch_properties = lambda_.LayerVersion(
122122
self,
123123
'FetchPropertiesLibs',
124-
code=lambda_.Code.from_asset('stack/lambda/fetch_properties/1.2.0/'),
124+
code=lambda_.Code.from_asset('stack/lambda/fetch_properties/1.3.0/'),
125125
description='',
126126
layer_version_name='FetchPropertiesLibs',
127127
compatible_runtimes=[DEFAULT_LAMBDA_RUNTIME]

data_processing_stack/dependencies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ class Dependency:
3535
DEPENDENCIES = [
3636
Dependency(project_name='lambda-dispatch-stream', package_name='dispatch_stream', release_version='1.0.0'),
3737
Dependency(project_name='lambda-geocode-property', package_name='geocode_property', release_version='1.1.3'),
38-
Dependency(project_name='lambda-fetch-properties', package_name='fetch_properties', release_version='1.2.0')
38+
Dependency(project_name='lambda-fetch-properties', package_name='fetch_properties', release_version='1.3.0')
3939
]

0 commit comments

Comments
 (0)