Skip to content

Commit

Permalink
Changes for v3.0.8 (#273)
Browse files Browse the repository at this point in the history
* Changes for v3.0.8
  • Loading branch information
ianwow authored Nov 26, 2024
1 parent f461d76 commit 1fed3a7
Show file tree
Hide file tree
Showing 7 changed files with 4,089 additions and 3,227 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.0.8] - 2024-11-25

### Security

- Updated npm dependencies

## [3.0.7] - 2024-11-01

### Changed
Expand Down
1,062 changes: 1,061 additions & 1 deletion NOTICE.txt

Large diffs are not rendered by default.

14 changes: 0 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -356,20 +356,6 @@ Example body for uploading to a new PT1H, P1D, or P1M dataset with deleted field
6. The Glue job can be monitored in the solution's UI or the AWS Console
---

## Local development for web console

* Step 1: Deploy the solution.
* Step 2: Open the URL shown in the `UserInterface` output of the base stack and login.
* 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`
* Step 4: Specify `http://localhost:8080` for `COGNITO_CALLBACK_URL` in your local `src/website/public/runtimeConfig.json`
* Step 5: Specify `http://localhost:8080` for `COGNITO_LOGOUT_URL` in your local `src/website/public/runtimeConfig.json`
* 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.
* Step 7: Run `npm start run` from `src/website/`
```
cd src/website
npm run start
```
* Step 8: Open http://localhost:8080

# Troubleshooting

Expand Down
2 changes: 1 addition & 1 deletion solution-manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
id: SO0222 # Solution Id
name: amazon-marketing-cloud-uploader-from-aws # trademarked name
version: v3.0.7 # current version of the solution. Used to verify template headers
version: v3.0.8 # current version of the solution. Used to verify template headers
cloudformation_templates: # This list should match with AWS CloudFormation templates section of IG
- template: amazon-marketing-cloud-uploader-from-aws.template
main_template: true
Expand Down
2 changes: 1 addition & 1 deletion source/share/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def process_request(self, **kwargs):
"Authorization": f'Bearer {kwargs["access_token"]}',
"Content-Type": "application/json",
"x-amzn-service-name": "amazon-marketing-cloud-uploader-from-aws",
"x-amzn-service-version": "v3.0.7"
"x-amzn-service-version": "v3.0.8"
}

if kwargs.get("advertiser_id"):
Expand Down
6,219 changes: 3,013 additions & 3,206 deletions source/website/package-lock.json

Large diffs are not rendered by default.

11 changes: 7 additions & 4 deletions source/website/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "amcufa",
"version": "3.0.7",
"version": "3.0.8",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand All @@ -9,12 +9,12 @@
},
"dependencies": {
"@babel/core": "^7.23.2",
"@vue/compat": "^3.4.21",
"@vue/compat": "^3.5.13",
"aws-amplify": "^5.3.15",
"bootstrap": "^4.6.2",
"bootstrap-vue": "^2.23.1",
"register-service-worker": "^1.7.2",
"vue": "^3.4.21",
"vue": "^3.5.13",
"vue-router": "^3.6.5",
"vuex": "^4.0.2",
"webpack-subresource-integrity": "^5.1.0"
Expand All @@ -40,7 +40,10 @@
"fast-xml-parser": "4.4.1",
"ip": "^2.0.1",
"postcss": "^8.4.31",
"semver": "7.5.2"
"semver": "7.5.2",
"cross-spawn": "^7.0.6",
"cookie": "^0.7.0",
"vue": "^3.5.13"
},
"resolutions": {
"fast-xml-parser": "4.4.1",
Expand Down

0 comments on commit 1fed3a7

Please sign in to comment.