Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit dc8437d

Browse files
authored
Merge pull request #421 from aws-solutions/release/v2.1.11
Release v2.1.11
2 parents ef74f75 + 859aa6c commit dc8437d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+6788
-13048
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ 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+
## [2.1.11] - 2024-12-23
9+
10+
### Changed
11+
12+
- Changed build tool from vue-loader to vite-js
13+
14+
### Fixed
15+
16+
- Fixed an issue in Analysis page graph where it failed to update upon analysis context change
17+
18+
### Security
19+
20+
- Upgraded vulnerable packages
21+
22+
### Removed
23+
24+
- removed unused libraries after migration to vite-js
25+
826
## [2.1.10] - 2024-10-31
927

1028
### Security

deployment/content-localization-on-aws.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Conditions:
2424
Mappings:
2525
MediaInsights:
2626
Release:
27-
Version: "v5.1.8"
27+
Version: "v5.1.9"
2828
Application:
2929
SourceCode:
3030
GlobalS3Bucket: "%%GLOBAL_BUCKET_NAME%%"
-402 KB
Loading

source/website/babel.config.js

Lines changed: 0 additions & 20 deletions
This file was deleted.

source/website/eslint.config.js

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
import pluginVue from 'eslint-plugin-vue'
2+
3+
export default [
4+
...pluginVue.configs['flat/recommended'],
5+
{
6+
files: ["src/**/*.js", "src/**/*.vue"],
7+
ignores: [
8+
"source/website/src/dist/*.js",
9+
"source/website/src/dist/min/*.js"
10+
],
11+
rules: {
12+
"no-console": "off",
13+
"no-undef": "off",
14+
"vue/require-prop-types": "off",
15+
"vue/attribute-hyphenation": "off",
16+
"vue/valid-v-for": "off",
17+
"vue/max-attributes-per-line": "off",
18+
"vue/html-self-closing": "off",
19+
"vue/require-explicit-emits": "off",
20+
"vue/multi-word-component-names": ["error", {
21+
ignores: [
22+
"Celebrities",
23+
"Entities",
24+
"Loading",
25+
"Subtitles",
26+
"Transcript",
27+
"Translation",
28+
"Waveform",
29+
"Home",
30+
"Login",
31+
]
32+
}],
33+
"vue/require-valid-default-prop": "off",
34+
"vue/no-deprecated-dollar-listeners-api": "off"
35+
}
36+
}
37+
]

source/website/index.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!--
2+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
SPDX-License-Identifier: Apache-2.0
4+
-->
5+
6+
<!doctype html>
7+
<html lang="en">
8+
<head>
9+
<meta charset="UTF-8" />
10+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
11+
<link rel="icon" type="image/png" href="/img/icons/favicon.png" />
12+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
13+
<title>Content Localization on AWS</title>
14+
</head>
15+
<body>
16+
<noscript>
17+
<strong>We're sorry but media_indexer doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
18+
</noscript>
19+
<div id="app"></div>
20+
<script type="module" src="/src/main.js"></script>
21+
</body>
22+
</html>

0 commit comments

Comments
 (0)