Skip to content

Changes for v0.12.5 #70

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion 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).

## [0.12.5] - 2025-05-29

### Bug

- Fix "no-cors" setting in compiled code

## [0.12.4] - 2025-04-09

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

### Added

- Updated GitHub link to https://github.com/aws-solutions/clickstream-analytics-on-aws-web-sdk
- Updated GitHub link to https://github.com/aws-solutions/clickstream-analytics-on-aws-web-sdk
- Update gradle and fix vulnerabilities
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,16 +241,16 @@ ClickstreamAnalytics.updateConfigure({

### Integrate the `.tgz` file

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.
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.
```bash
$ cd clickstream-web && npm i && npm run pack
```

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.
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.
```bash
$ npm install ./aws-clickstream-web-0.12.4.tgz
$ npm install ./aws-clickstream-web-0.12.5.tgz
```
**Note**: Please correct the SDK version and change the path to where the `aws-clickstream-web-0.12.4.tgz` file is located.
**Note**: Please correct the SDK version and change the path to where the `aws-clickstream-web-0.12.5.tgz` file is located.

### Integrate the `clickstream-web.min.js` file
Execute the following script to generate `clickstream-web.min.js`, located in the `/dist` folder.
Expand Down
2 changes: 1 addition & 1 deletion buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env:
shell: bash
# Define global variables
variables:
PACKAGE_VERSION: "0.12.4"
PACKAGE_VERSION: "0.12.5"
PACKAGE_NAME: "aws-clickstream-web"

phases:
Expand Down
2 changes: 1 addition & 1 deletion gtm-template/ClickstreamAnalytics-gtm-template.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ const onLoadClickstreamSuccess = function () {
});
};

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


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws/clickstream-web",
"version": "0.12.4",
"version": "0.12.5",
"description": "ClickstreamAnalytics Web SDK",
"license": "Apache-2.0",
"main": "./lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion solution-manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
id: SO0318
name: clickstream-analytics-on-aws-web-sdk
version: v0.12.4
version: v0.12.5
cloudformation_templates: []
build_environment:
build_image: 'aws/codebuild/standard:7.0'