Skip to content

Commit 1fed3a7

Browse files
authored
Changes for v3.0.8 (#273)
* Changes for v3.0.8
1 parent f461d76 commit 1fed3a7

File tree

7 files changed

+4089
-3227
lines changed

7 files changed

+4089
-3227
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.0.8] - 2024-11-25
9+
10+
### Security
11+
12+
- Updated npm dependencies
13+
814
## [3.0.7] - 2024-11-01
915

1016
### Changed

NOTICE.txt

Lines changed: 1061 additions & 1 deletion
Large diffs are not rendered by default.

README.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -356,20 +356,6 @@ Example body for uploading to a new PT1H, P1D, or P1M dataset with deleted field
356356
6. The Glue job can be monitored in the solution's UI or the AWS Console
357357
---
358358

359-
## Local development for web console
360-
361-
* Step 1: Deploy the solution.
362-
* Step 2: Open the URL shown in the `UserInterface` output of the base stack and login.
363-
* Step 3: Open the Javascript console of your web browser and copy the runtime config values printed by `main.js` into your local `src/website/public/runtimeConfig.json`
364-
* Step 4: Specify `http://localhost:8080` for `COGNITO_CALLBACK_URL` in your local `src/website/public/runtimeConfig.json`
365-
* Step 5: Specify `http://localhost:8080` for `COGNITO_LOGOUT_URL` in your local `src/website/public/runtimeConfig.json`
366-
* Step 6: Open Amazon Cognito console, select the corresponding User pool, click the App integration tab, select application details in the App client list, edit Hosted UI, and set a new URL: http://localhost:8080 into Allowed callback URLs.
367-
* Step 7: Run `npm start run` from `src/website/`
368-
```
369-
cd src/website
370-
npm run start
371-
```
372-
* Step 8: Open http://localhost:8080
373359

374360
# Troubleshooting
375361

solution-manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: SO0222 # Solution Id
33
name: amazon-marketing-cloud-uploader-from-aws # trademarked name
4-
version: v3.0.7 # current version of the solution. Used to verify template headers
4+
version: v3.0.8 # current version of the solution. Used to verify template headers
55
cloudformation_templates: # This list should match with AWS CloudFormation templates section of IG
66
- template: amazon-marketing-cloud-uploader-from-aws.template
77
main_template: true

source/share/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def process_request(self, **kwargs):
268268
"Authorization": f'Bearer {kwargs["access_token"]}',
269269
"Content-Type": "application/json",
270270
"x-amzn-service-name": "amazon-marketing-cloud-uploader-from-aws",
271-
"x-amzn-service-version": "v3.0.7"
271+
"x-amzn-service-version": "v3.0.8"
272272
}
273273

274274
if kwargs.get("advertiser_id"):

source/website/package-lock.json

Lines changed: 3013 additions & 3206 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/website/package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "amcufa",
3-
"version": "3.0.7",
3+
"version": "3.0.8",
44
"private": true,
55
"scripts": {
66
"serve": "vue-cli-service serve",
@@ -9,12 +9,12 @@
99
},
1010
"dependencies": {
1111
"@babel/core": "^7.23.2",
12-
"@vue/compat": "^3.4.21",
12+
"@vue/compat": "^3.5.13",
1313
"aws-amplify": "^5.3.15",
1414
"bootstrap": "^4.6.2",
1515
"bootstrap-vue": "^2.23.1",
1616
"register-service-worker": "^1.7.2",
17-
"vue": "^3.4.21",
17+
"vue": "^3.5.13",
1818
"vue-router": "^3.6.5",
1919
"vuex": "^4.0.2",
2020
"webpack-subresource-integrity": "^5.1.0"
@@ -40,7 +40,10 @@
4040
"fast-xml-parser": "4.4.1",
4141
"ip": "^2.0.1",
4242
"postcss": "^8.4.31",
43-
"semver": "7.5.2"
43+
"semver": "7.5.2",
44+
"cross-spawn": "^7.0.6",
45+
"cookie": "^0.7.0",
46+
"vue": "^3.5.13"
4447
},
4548
"resolutions": {
4649
"fast-xml-parser": "4.4.1",

0 commit comments

Comments
 (0)