Skip to content

Commit

Permalink
bump version to 4.9.5; release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
clemiller committed Apr 22, 2024
1 parent 31ec1fc commit 8936221
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
The creation of the tag can be disabled with the --no-git-tag-version if desired.
-->

# 4.x.x - Changes Staged on Develop
# 4.9.5 - 23 April 2024

Adds support for ATT&CK v15.0.

## Improvements
- Added "mark all as reviewed" and "expand visible techniques" options to the Layer Upgrade UI to improve the overall technique review workflow. See issue [#595](https://github.com/mitre-attack/attack-navigator/issues/595).
Expand Down
4 changes: 2 additions & 2 deletions nav-app/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 nav-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "git",
"url": "https://github.com/mitre-attack/attack-navigator.git"
},
"version": "4.9.4",
"version": "4.9.5",
"license": "Apache-2.0",
"scripts": {
"ng": "ng",
Expand Down
2 changes: 1 addition & 1 deletion nav-app/src/app/services/data.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ export class DataService {
private domainData$: Observable<Object>;

// URLs in case config file doesn't load properly
public latestVersion: Version = { name: 'ATT&CK v14', number: '14' };
public latestVersion: Version = { name: 'ATT&CK v15', number: '15' };
public lowestSupportedVersion: Version; // used by tabs component
public enterpriseAttackURL: string = 'https://raw.githubusercontent.com/mitre/cti/master/enterprise-attack/enterprise-attack.json';
public mobileAttackURL: string = 'https://raw.githubusercontent.com/mitre/cti/master/mobile-attack/mobile-attack.json';
Expand Down
21 changes: 21 additions & 0 deletions nav-app/src/assets/config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
{
"versions": [
{
"name": "ATT&CK v15",
"version": "15",
"domains": [
{
"name": "Enterprise",
"identifier": "enterprise-attack",
"data": ["https://raw.githubusercontent.com/mitre/cti/ATT%26CK-v15.0/enterprise-attack/enterprise-attack.json"]
},
{
"name": "Mobile",
"identifier": "mobile-attack",
"data": ["https://raw.githubusercontent.com/mitre/cti/ATT%26CK-v15.0/mobile-attack/mobile-attack.json"]
},
{
"name": "ICS",
"identifier": "ics-attack",
"data": ["https://raw.githubusercontent.com/mitre/cti/ATT%26CK-v15.0/ics-attack/ics-attack.json"]
}
]
},
{
"name": "ATT&CK v14",
"version": "14",
Expand Down

0 comments on commit 8936221

Please sign in to comment.