Skip to content

Commit

Permalink
v4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tethik committed Oct 5, 2023
1 parent ce75437 commit 37196d5
Show file tree
Hide file tree
Showing 25 changed files with 131 additions and 51 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.2.0](https://github.com/klarna-incubator/gram/compare/v4.1.0...v4.2.0) (2023-10-05)

### Bug Fixes

- cache.has should not return true when an item has expired ([174ab4f](https://github.com/klarna-incubator/gram/commit/174ab4f5d39007bdffdd144babfab86c6b86b42c))
- correctly hide login buttons for identity providers when form is not set ([cacc7e7](https://github.com/klarna-incubator/gram/commit/cacc7e7f2167e195d306ade0d72a57f741445119))
- LDAPTeamProvider return empty array if no teams on the user ([ce75437](https://github.com/klarna-incubator/gram/commit/ce75437dac1ef382c6ec1805d18328ad07d54b23))
- oidc should throw more specific error when cookie is not set ([3415160](https://github.com/klarna-incubator/gram/commit/3415160959ce5186697d7b9e4ea63d677178d19b))
- version should now be correctly set during runtime ([e1e9fe0](https://github.com/klarna-incubator/gram/commit/e1e9fe01a6350ac7aa4e16c098540005f6c56ef9))

### Features

- add optional function for LDAPBasicAuthIdentityProvider to provide different userid in case it differs from dn ([b94bb7f](https://github.com/klarna-incubator/gram/commit/b94bb7f7abf73b57372625516e3c08cd49b4ea2a))
- allow specifying custom key for OIDCIdentityProvider ([38d8c3c](https://github.com/klarna-incubator/gram/commit/38d8c3ca5da8bc9cb3e40ab6658243fff34df1b4))

# [4.1.0](https://github.com/klarna-incubator/gram/compare/v4.0.3...v4.1.0) (2023-09-28)

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

# [4.2.0](https://github.com/klarna/gram/compare/v4.1.0...v4.2.0) (2023-10-05)

### Bug Fixes

- version should now be correctly set during runtime ([e1e9fe0](https://github.com/klarna/gram/commit/e1e9fe01a6350ac7aa4e16c098540005f6c56ef9))

# [4.1.0](https://github.com/klarna/gram/compare/v4.0.3...v4.1.0) (2023-09-28)

### Bug Fixes
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.1.0",
"version": "4.2.0",
"description": "API for threat modelling",
"scripts": {
"oldstart": "NODE_ENV=development nodemon --watch src --watch ../core/src --files src/index.ts",
Expand Down Expand Up @@ -33,8 +33,8 @@
"node": "18"
},
"dependencies": {
"@gram/config": "^4.1.0",
"@gram/core": "^4.1.0",
"@gram/config": "^4.2.0",
"@gram/core": "^4.2.0",
"@sentry/integrations": "^7.6.0",
"@sentry/node": "^7.6.0",
"@sentry/tracing": "^7.6.0",
Expand Down
6 changes: 6 additions & 0 deletions app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.2.0](https://github.com/klarna-incubator/gram/compare/v4.1.0...v4.2.0) (2023-10-05)

### Bug Fixes

- correctly hide login buttons for identity providers when form is not set ([cacc7e7](https://github.com/klarna-incubator/gram/commit/cacc7e7f2167e195d306ade0d72a57f741445119))

# [4.1.0](https://github.com/klarna-incubator/gram/compare/v4.0.3...v4.1.0) (2023-09-28)

### Bug Fixes
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.1.0",
"version": "4.2.0",
"private": true,
"engines": {
"node": "18"
Expand Down
4 changes: 4 additions & 0 deletions config/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.2.0](https://github.com/klarna/gram/compare/v4.1.0...v4.2.0) (2023-10-05)

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

# [4.1.0](https://github.com/klarna/gram/compare/v4.0.3...v4.1.0) (2023-09-28)

### Bug Fixes
Expand Down
12 changes: 6 additions & 6 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.1.0",
"version": "4.2.0",
"description": "Gram Configuration",
"scripts": {
"build": "tsc -p tsconfig.build.json",
Expand All @@ -28,11 +28,11 @@
"node": "18"
},
"dependencies": {
"@gram/aws": "^4.1.0",
"@gram/core": "^4.1.0",
"@gram/magiclink": "^4.1.0",
"@gram/svgporn": "^4.1.0",
"@gram/threatlib": "^4.1.0",
"@gram/aws": "^4.2.0",
"@gram/core": "^4.2.0",
"@gram/magiclink": "^4.2.0",
"@gram/svgporn": "^4.2.0",
"@gram/threatlib": "^4.2.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
Expand Down
7 changes: 7 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.2.0](https://github.com/klarna/gram/compare/v4.1.0...v4.2.0) (2023-10-05)

### Bug Fixes

- cache.has should not return true when an item has expired ([174ab4f](https://github.com/klarna/gram/commit/174ab4f5d39007bdffdd144babfab86c6b86b42c))
- correctly hide login buttons for identity providers when form is not set ([cacc7e7](https://github.com/klarna/gram/commit/cacc7e7f2167e195d306ade0d72a57f741445119))

# [4.1.0](https://github.com/klarna/gram/compare/v4.0.3...v4.1.0) (2023-09-28)

### Bug Fixes
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.1.0",
"version": "4.2.0",
"description": "Core library for Gram backend stuff",
"scripts": {
"build": "tsc -p tsconfig.build.json",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"useWorkspaces": true,
"version": "4.1.0",
"version": "4.2.0",
"command": {
"version": {
"allowBranch": "master",
Expand Down
50 changes: 25 additions & 25 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.2.0](https://github.com/klarna-incubator/gram/compare/v4.1.0...v4.2.0) (2023-10-05)

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

# [4.1.0](https://github.com/klarna-incubator/gram/compare/v4.0.3...v4.1.0) (2023-09-28)

**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.1.0",
"version": "4.2.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.1.0",
"@gram/core": "^4.2.0",
"path": "^0.12.7"
},
"private": true,
Expand Down
4 changes: 4 additions & 0 deletions plugins/github/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.2.0](https://github.com/klarna-incubator/gram/compare/v4.1.0...v4.2.0) (2023-10-05)

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

# [4.1.0](https://github.com/klarna-incubator/gram/compare/v4.0.3...v4.1.0) (2023-09-28)

**Note:** Version bump only for package @gram/github
Expand Down
4 changes: 2 additions & 2 deletions plugins/github/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@gram/github",
"type": "module",
"version": "4.1.0",
"version": "4.2.0",
"description": "To run this GitHub integration, you'll need to set up your own Github App.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -17,7 +17,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"@gram/core": "^4.1.0",
"@gram/core": "^4.2.0",
"octokit": "^2.0.11",
"postgres-migrations": "^5.3.0"
},
Expand Down
11 changes: 11 additions & 0 deletions plugins/ldap/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.2.0](https://github.com/klarna-incubator/gram/compare/v4.1.0...v4.2.0) (2023-10-05)

### Bug Fixes

- correctly hide login buttons for identity providers when form is not set ([cacc7e7](https://github.com/klarna-incubator/gram/commit/cacc7e7f2167e195d306ade0d72a57f741445119))
- LDAPTeamProvider return empty array if no teams on the user ([ce75437](https://github.com/klarna-incubator/gram/commit/ce75437dac1ef382c6ec1805d18328ad07d54b23))

### Features

- add optional function for LDAPBasicAuthIdentityProvider to provide different userid in case it differs from dn ([b94bb7f](https://github.com/klarna-incubator/gram/commit/b94bb7f7abf73b57372625516e3c08cd49b4ea2a))

# [4.1.0](https://github.com/klarna-incubator/gram/compare/v4.0.3...v4.1.0) (2023-09-28)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions plugins/ldap/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@gram/ldap",
"type": "module",
"version": "4.1.0",
"version": "4.2.0",
"description": "Plugin with ldap related providers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -16,7 +16,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"@gram/core": "^4.1.0",
"@gram/core": "^4.2.0",
"basic-auth": "^2.0.1",
"ldapts": "^4.2.6"
},
Expand Down
4 changes: 4 additions & 0 deletions plugins/magiclink/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.2.0](https://github.com/klarna-incubator/gram/compare/v4.1.0...v4.2.0) (2023-10-05)

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

# [4.1.0](https://github.com/klarna-incubator/gram/compare/v4.0.3...v4.1.0) (2023-09-28)

**Note:** Version bump only for package @gram/magiclink
Expand Down
Loading

0 comments on commit 37196d5

Please sign in to comment.