Skip to content

Commit

Permalink
Merge pull request #421 from aws-solutions/release/v2.1.11
Browse files Browse the repository at this point in the history
Release v2.1.11
  • Loading branch information
amzn-gaod authored Dec 23, 2024
2 parents ef74f75 + 859aa6c commit dc8437d
Show file tree
Hide file tree
Showing 48 changed files with 6,788 additions and 13,048 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ 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).

## [2.1.11] - 2024-12-23

### Changed

- Changed build tool from vue-loader to vite-js

### Fixed

- Fixed an issue in Analysis page graph where it failed to update upon analysis context change

### Security

- Upgraded vulnerable packages

### Removed

- removed unused libraries after migration to vite-js

## [2.1.10] - 2024-10-31

### Security
Expand Down
2 changes: 1 addition & 1 deletion deployment/content-localization-on-aws.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Conditions:
Mappings:
MediaInsights:
Release:
Version: "v5.1.8"
Version: "v5.1.9"
Application:
SourceCode:
GlobalS3Bucket: "%%GLOBAL_BUCKET_NAME%%"
Expand Down
Binary file modified doc/images/ContentLocalizationArchitectureOverview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 0 additions & 20 deletions source/website/babel.config.js

This file was deleted.

37 changes: 37 additions & 0 deletions source/website/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import pluginVue from 'eslint-plugin-vue'

export default [
...pluginVue.configs['flat/recommended'],
{
files: ["src/**/*.js", "src/**/*.vue"],
ignores: [
"source/website/src/dist/*.js",
"source/website/src/dist/min/*.js"
],
rules: {
"no-console": "off",
"no-undef": "off",
"vue/require-prop-types": "off",
"vue/attribute-hyphenation": "off",
"vue/valid-v-for": "off",
"vue/max-attributes-per-line": "off",
"vue/html-self-closing": "off",
"vue/require-explicit-emits": "off",
"vue/multi-word-component-names": ["error", {
ignores: [
"Celebrities",
"Entities",
"Loading",
"Subtitles",
"Transcript",
"Translation",
"Waveform",
"Home",
"Login",
]
}],
"vue/require-valid-default-prop": "off",
"vue/no-deprecated-dollar-listeners-api": "off"
}
}
]
22 changes: 22 additions & 0 deletions source/website/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!--
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
-->

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="icon" type="image/png" href="/img/icons/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Content Localization on AWS</title>
</head>
<body>
<noscript>
<strong>We're sorry but media_indexer doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
Loading

0 comments on commit dc8437d

Please sign in to comment.