Skip to content

Commit

Permalink
v4.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Pauline Didier committed Nov 20, 2024
1 parent 62df8c5 commit a9d7d41
Show file tree
Hide file tree
Showing 35 changed files with 185 additions and 79 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.19.0](https://github.com/klarna-incubator/gram/compare/v4.18.0...v4.19.0) (2024-11-20)

### Bug Fixes

- :bug: fix blocked tabs with dataflows ([793f423](https://github.com/klarna-incubator/gram/commit/793f42310f7bf00e9543743e4d8122f690c9ca97))
- :bug: select reviewer rules based on affectedType ([cc172e8](https://github.com/klarna-incubator/gram/commit/cc172e8a690903d8b394d04684a2ec0250b0bb7f))
- broken resolved fields ([d34905a](https://github.com/klarna-incubator/gram/commit/d34905a5df66a658d5364e2a14056222de05a98f))
- can't import via require, move back to import (which unfortunately still starts the bundled sentry binary) ([7fcdd07](https://github.com/klarna-incubator/gram/commit/7fcdd07928030c9aec49156e54377768d951c72c))
- migrations should now use the same pg client as the rest of the application ([5126e4e](https://github.com/klarna-incubator/gram/commit/5126e4ed6bf00a0cc646ecdc9d6813f49b83c2c8))
- sentry should not load if sentryDSN is not set ([b13228b](https://github.com/klarna-incubator/gram/commit/b13228b558516c080ce5e1af86485fc4f1d33a26))
- set default SSL to use rejectUnauthorized to enforce signed tls certs ([7d37bfc](https://github.com/klarna-incubator/gram/commit/7d37bfc52e2995733b83899c0b5dffb81ed86560))

### Features

- :sparkles: add review score to bottom panel ([a910d42](https://github.com/klarna-incubator/gram/commit/a910d422d4667210c471907d62a7dcd517bee433))
- add more ssl options to config ([2d595c7](https://github.com/klarna-incubator/gram/commit/2d595c7dd901b8b360d18efec6a5b3a46b46a1c6))
- add some new default authentication options ([#133](https://github.com/klarna-incubator/gram/issues/133)) ([da5252f](https://github.com/klarna-incubator/gram/commit/da5252fd4efe7b8fec3eda5aee7519d2113889d3))

# [4.18.0](https://github.com/klarna-incubator/gram/compare/v4.17.6...v4.18.0) (2024-11-18)

### Features
Expand Down
8 changes: 8 additions & 0 deletions api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.19.0](https://github.com/klarna/gram/compare/v4.18.0...v4.19.0) (2024-11-20)

### Bug Fixes

- can't import via require, move back to import (which unfortunately still starts the bundled sentry binary) ([7fcdd07](https://github.com/klarna/gram/commit/7fcdd07928030c9aec49156e54377768d951c72c))
- migrations should now use the same pg client as the rest of the application ([5126e4e](https://github.com/klarna/gram/commit/5126e4ed6bf00a0cc646ecdc9d6813f49b83c2c8))
- sentry should not load if sentryDSN is not set ([b13228b](https://github.com/klarna/gram/commit/b13228b558516c080ce5e1af86485fc4f1d33a26))

# [4.18.0](https://github.com/klarna/gram/compare/v4.17.6...v4.18.0) (2024-11-18)

**Note:** Version bump only for package @gram/api
Expand Down
6 changes: 3 additions & 3 deletions api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@gram/api",
"private": true,
"type": "module",
"version": "4.18.0",
"version": "4.19.0",
"description": "API for threat modelling",
"scripts": {
"start": "NODE_ENV=development node dist/index.js",
Expand Down Expand Up @@ -32,8 +32,8 @@
"node": "20"
},
"dependencies": {
"@gram/config": "^4.18.0",
"@gram/core": "^4.18.0",
"@gram/config": "^4.19.0",
"@gram/core": "^4.19.0",
"@sentry/node": "^8.35.0",
"@sentry/profiling-node": "^8.35.0",
"cookie-parser": "^1.4.7",
Expand Down
10 changes: 10 additions & 0 deletions app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.19.0](https://github.com/klarna-incubator/gram/compare/v4.18.0...v4.19.0) (2024-11-20)

### Bug Fixes

- :bug: fix blocked tabs with dataflows ([793f423](https://github.com/klarna-incubator/gram/commit/793f42310f7bf00e9543743e4d8122f690c9ca97))

### Features

- :sparkles: add review score to bottom panel ([a910d42](https://github.com/klarna-incubator/gram/commit/a910d422d4667210c471907d62a7dcd517bee433))

# [4.18.0](https://github.com/klarna-incubator/gram/compare/v4.17.6...v4.18.0) (2024-11-18)

### Features
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@gram/app",
"proxy": "http://localhost:8080",
"version": "4.18.0",
"version": "4.19.0",
"private": true,
"engines": {
"node": "20"
Expand Down
10 changes: 10 additions & 0 deletions config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.19.0](https://github.com/klarna/gram/compare/v4.18.0...v4.19.0) (2024-11-20)

### Bug Fixes

- set default SSL to use rejectUnauthorized to enforce signed tls certs ([7d37bfc](https://github.com/klarna/gram/commit/7d37bfc52e2995733b83899c0b5dffb81ed86560))

### Features

- add some new default authentication options ([#133](https://github.com/klarna/gram/issues/133)) ([da5252f](https://github.com/klarna/gram/commit/da5252fd4efe7b8fec3eda5aee7519d2113889d3))

# [4.18.0](https://github.com/klarna/gram/compare/v4.17.6...v4.18.0) (2024-11-18)

**Note:** Version bump only for package @gram/config
Expand Down
20 changes: 10 additions & 10 deletions config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"private": true,
"version": "4.18.0",
"version": "4.19.0",
"description": "Gram Configuration",
"scripts": {
"build": "tsc -p tsconfig.build.json",
Expand All @@ -28,15 +28,15 @@
"node": "20"
},
"dependencies": {
"@gram/aws": "^4.18.0",
"@gram/azure": "^4.18.0",
"@gram/cncf": "^4.18.0",
"@gram/core": "^4.18.0",
"@gram/kubernetes": "^4.18.0",
"@gram/magiclink": "^4.18.0",
"@gram/stride": "^4.18.0",
"@gram/svgporn": "^4.18.0",
"@gram/threatlib": "^4.18.0",
"@gram/aws": "^4.19.0",
"@gram/azure": "^4.19.0",
"@gram/cncf": "^4.19.0",
"@gram/core": "^4.19.0",
"@gram/kubernetes": "^4.19.0",
"@gram/magiclink": "^4.19.0",
"@gram/stride": "^4.19.0",
"@gram/svgporn": "^4.19.0",
"@gram/threatlib": "^4.19.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
Expand Down
12 changes: 12 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.19.0](https://github.com/klarna/gram/compare/v4.18.0...v4.19.0) (2024-11-20)

### Bug Fixes

- :bug: select reviewer rules based on affectedType ([cc172e8](https://github.com/klarna/gram/commit/cc172e8a690903d8b394d04684a2ec0250b0bb7f))
- migrations should now use the same pg client as the rest of the application ([5126e4e](https://github.com/klarna/gram/commit/5126e4ed6bf00a0cc646ecdc9d6813f49b83c2c8))
- set default SSL to use rejectUnauthorized to enforce signed tls certs ([7d37bfc](https://github.com/klarna/gram/commit/7d37bfc52e2995733b83899c0b5dffb81ed86560))

### Features

- add more ssl options to config ([2d595c7](https://github.com/klarna/gram/commit/2d595c7dd901b8b360d18efec6a5b3a46b46a1c6))

# [4.18.0](https://github.com/klarna/gram/compare/v4.17.6...v4.18.0) (2024-11-18)

### Features
Expand Down
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@gram/core",
"private": true,
"type": "module",
"version": "4.18.0",
"version": "4.19.0",
"description": "Core library for Gram backend stuff",
"scripts": {
"clean": "rimraf ./dist",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "4.18.0",
"version": "4.19.0",
"command": {
"version": {
"allowBranch": "main",
Expand Down
78 changes: 39 additions & 39 deletions package-lock.json

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

4 changes: 4 additions & 0 deletions plugins/aws/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.19.0](https://github.com/klarna-incubator/gram/compare/v4.18.0...v4.19.0) (2024-11-20)

**Note:** Version bump only for package @gram/aws

# [4.18.0](https://github.com/klarna-incubator/gram/compare/v4.17.6...v4.18.0) (2024-11-18)

**Note:** Version bump only for package @gram/aws
Expand Down
4 changes: 2 additions & 2 deletions plugins/aws/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"files": [
"dist"
],
"version": "4.18.0",
"version": "4.19.0",
"description": "AWS icons for Gram",
"scripts": {
"build": "tsc -p tsconfig.build.json",
Expand All @@ -16,7 +16,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"@gram/core": "^4.18.0",
"@gram/core": "^4.19.0",
"path": "^0.12.7"
},
"private": true
Expand Down
Loading

0 comments on commit a9d7d41

Please sign in to comment.