Skip to content

Commit 151fc70

Browse files
authored
Changes for v0.12.5 (#70)
1 parent 57201bd commit 151fc70

File tree

7 files changed

+17
-11
lines changed

7 files changed

+17
-11
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
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+
## [0.12.5] - 2025-05-29
9+
10+
### Bug
11+
12+
- Fix "no-cors" setting in compiled code
13+
814
## [0.12.4] - 2025-04-09
915

1016
### Security
@@ -15,5 +21,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1521

1622
### Added
1723

18-
- Updated GitHub link to https://github.com/aws-solutions/clickstream-analytics-on-aws-web-sdk
24+
- Updated GitHub link to https://github.com/aws-solutions/clickstream-analytics-on-aws-web-sdk
1925
- Update gradle and fix vulnerabilities

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -241,16 +241,16 @@ ClickstreamAnalytics.updateConfigure({
241241

242242
### Integrate the `.tgz` file
243243

244-
Clone this repository locally and execute the following script to generate `aws-clickstream-web-0.12.4.tgz` zip package, which will be located in the project root folder.
244+
Clone this repository locally and execute the following script to generate `aws-clickstream-web-0.12.5.tgz` zip package, which will be located in the project root folder.
245245
```bash
246246
$ cd clickstream-web && npm i && npm run pack
247247
```
248248

249-
Copy the `aws-clickstream-web-0.12.4.tgz` into your project, then execute the script in your project root folder to install the SDK.
249+
Copy the `aws-clickstream-web-0.12.5.tgz` into your project, then execute the script in your project root folder to install the SDK.
250250
```bash
251-
$ npm install ./aws-clickstream-web-0.12.4.tgz
251+
$ npm install ./aws-clickstream-web-0.12.5.tgz
252252
```
253-
**Note**: Please correct the SDK version and change the path to where the `aws-clickstream-web-0.12.4.tgz` file is located.
253+
**Note**: Please correct the SDK version and change the path to where the `aws-clickstream-web-0.12.5.tgz` file is located.
254254

255255
### Integrate the `clickstream-web.min.js` file
256256
Execute the following script to generate `clickstream-web.min.js`, located in the `/dist` folder.

buildspec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ env:
44
shell: bash
55
# Define global variables
66
variables:
7-
PACKAGE_VERSION: "0.12.4"
7+
PACKAGE_VERSION: "0.12.5"
88
PACKAGE_NAME: "aws-clickstream-web"
99

1010
phases:

gtm-template/ClickstreamAnalytics-gtm-template.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ const onLoadClickstreamSuccess = function () {
390390
});
391391
};
392392

393-
const url = "https://github.com/aws-solutions/clickstream-analytics-on-aws-web-sdk/releases/download/v0.12.4/clickstream-web.min.js";
393+
const url = "https://github.com/aws-solutions/clickstream-analytics-on-aws-web-sdk/releases/download/v0.12.5/clickstream-web.min.js";
394394
injectScript(url, onLoadClickstreamSuccess, data.gtmOnFailure, 'ClickstreamAnalytics-web');
395395

396396

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws/clickstream-web",
3-
"version": "0.12.4",
3+
"version": "0.12.5",
44
"description": "ClickstreamAnalytics Web SDK",
55
"license": "Apache-2.0",
66
"main": "./lib/index.js",

solution-manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
id: SO0318
22
name: clickstream-analytics-on-aws-web-sdk
3-
version: v0.12.4
3+
version: v0.12.5
44
cloudformation_templates: []
55
build_environment:
66
build_image: 'aws/codebuild/standard:7.0'

0 commit comments

Comments
 (0)