author int64 658 755k | date stringdate 2012-06-12 08:34:29 2024-07-22 14:51:21 | timezone int64 -46,800 43.2k | hash stringlengths 40 40 | message stringlengths 5 490 | mods listlengths 1 16 | language stringclasses 20 values | license stringclasses 3 values | repo stringlengths 5 68 | original_message stringlengths 12 491 |
|---|---|---|---|---|---|---|---|---|---|
288,234 | 09.02.2021 22:45:26 | 10,800 | 9334401bc8dbedb41aab51af4b3a744ee80e40e4 | fix(viewpatient): keep corresponding tabs as active for nested routes | [
{
"change_type": "MODIFY",
"old_path": "src/__tests__/patients/view/ViewPatient.test.tsx",
"new_path": "src/__tests__/patients/view/ViewPatient.test.tsx",
"diff": "@@ -196,6 +196,16 @@ describe('ViewPatient', () => {\n})\n})\n+ it('should render the allergies tab as active when route starts with /pa... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | fix(viewpatient): keep corresponding tabs as active for nested routes
#2563 |
288,377 | 11.03.2021 01:25:17 | 18,000 | 0b003ee327b1375f4d5c2d1118be3355394c6f70 | extended the time allotted for testing the creation of a new care goal for permitted users. | [
{
"change_type": "MODIFY",
"old_path": "src/__tests__/patients/care-goals/CareGoalTab.test.tsx",
"new_path": "src/__tests__/patients/care-goals/CareGoalTab.test.tsx",
"diff": "@@ -117,7 +117,7 @@ describe('Care Goals Tab', () => {\nexpect(cells[1]).toHaveTextContent(format(expectedCareGoal.startDate... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | extended the time allotted for testing the creation of a new care goal for permitted users. |
288,334 | 17.03.2021 19:31:36 | -3,600 | bc6f4c7999a05a44131e33b0db247307e353bfb5 | chore(ci): removes windows and macOS build | [
{
"change_type": "MODIFY",
"old_path": ".github/workflows/ci.yml",
"new_path": ".github/workflows/ci.yml",
"diff": "@@ -15,7 +15,8 @@ jobs:\nstrategy:\nmatrix:\nnode-version: [14.x]\n- os: [ubuntu-latest, windows-latest, macOS-latest]\n+ os: [ubuntu-latest]\n+ # os: [ubuntu-latest, windows-latest, m... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | chore(ci): removes windows and macOS build |
288,392 | 08.04.2021 22:32:03 | 25,200 | 0d0bb13d59c8b801cff779a3a470006a026a7158 | add PatientHistoryRecord model
We use this model to show patient history data in history table
component. | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/shared/model/PatientHistoryRecord.tsx",
"diff": "+export enum HistoryRecordType {\n+ APPOINTMENT = 'Appointment',\n+ LAB = 'Lab',\n+}\n+\n+export interface PatientHistoryRecord {\n+ id: string\n+ date: Date\n+ type: HistoryRecordType\n+ info... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | add PatientHistoryRecord model
We use this model to show patient history data in history table
component. |
288,392 | 27.03.2021 14:10:55 | 25,200 | e07b69ecba2f0cdf65d09b9bd6a66eb57e19d0d3 | add mapper helpers for patient history record
We use this helper to convert Lab and Appointment model to necessary events. | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/__tests__/patients/history/mappers/helpers.test.tsx",
"diff": "+import { convertLab, convertAppointment } from '../../../../patients/history/mappers/helpers'\n+import Appointment from '../../../../shared/model/Appointment'\n+import Lab from ... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | add mapper helpers for patient history record
We use this helper to convert Lab and Appointment model to necessary events. |
288,392 | 31.03.2021 18:25:22 | 25,200 | f355bf02613559a25548991fe2d880f774a054fe | add history record mapper for patient history
We use this service to map out histories of a patient. Events are sorted in descending order. | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/__tests__/patients/history/mappers/HistoryRecordsMapper.test.tsx",
"diff": "+import * as helpers from '../../../../patients/history/mappers/helpers'\n+import { mapHistoryRecords } from '../../../../patients/history/mappers/HistoryRecordsMapp... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | add history record mapper for patient history
We use this service to map out histories of a patient. Events are sorted in descending order. |
288,392 | 08.04.2021 09:18:39 | 25,200 | 418c3c61988644784c25b37d0cc97fc9b6b2338b | add HistoryTab component | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/__tests__/patients/history/HistoryTab.test.tsx",
"diff": "+import { render, screen } from '@testing-library/react'\n+import { createMemoryHistory } from 'history'\n+import React from 'react'\n+import { Provider } from 'react-redux'\n+import ... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | add HistoryTab component |
288,392 | 08.04.2021 22:32:40 | 25,200 | 881d757f0cc45de1c962741f53881b056abd7c2b | add patient history table component | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/__tests__/patients/history/HistoryTable.test.tsx",
"diff": "+import { render, screen, waitFor, within } from '@testing-library/react'\n+import userEvent from '@testing-library/user-event'\n+import { createMemoryHistory } from 'history'\n+imp... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | add patient history table component |
288,392 | 08.04.2021 22:33:21 | 25,200 | c35cb8043c38947f931bcd518175121a3374f980 | add history tab for patient view component | [
{
"change_type": "MODIFY",
"old_path": "src/__tests__/patients/view/ViewPatient.test.tsx",
"new_path": "src/__tests__/patients/view/ViewPatient.test.tsx",
"diff": "@@ -100,7 +100,7 @@ describe('ViewPatient', () => {\nsetup()\nawait waitFor(() => {\n- expect(screen.getAllByRole('tab')).toHaveLength(1... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | add history tab for patient view component |
288,392 | 08.04.2021 22:33:47 | 25,200 | e827c24b7abcef782cdae9d6cdd3839c81723a13 | add enUs translation for patient history components | [
{
"change_type": "MODIFY",
"old_path": "src/shared/locales/enUs/translations/patient/index.ts",
"new_path": "src/shared/locales/enUs/translations/patient/index.ts",
"diff": "@@ -190,6 +190,14 @@ export default {\n},\n},\nvisit: 'Visit',\n+ history: {\n+ label: 'History',\n+ eventDate: 'Event Date',\... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | add enUs translation for patient history components |
288,289 | 10.04.2021 13:47:37 | -10,800 | 215d4fa50dacda56eac7465c9311405a50eea9d9 | turkish translate added | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/shared/locales/tr/translations/blood-type/index.ts",
"diff": "+export default {\n+ bloodType: {\n+ apositive: 'A+',\n+ anegative: 'A-',\n+ abpositive: 'AB+',\n+ abnegative: 'AB-',\n+ bpositive: 'B+',\n+ bnegative: 'B-',\n+ opositive: 'O+',\n... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | turkish translate added |
288,301 | 20.04.2021 18:19:41 | 14,400 | 503813b6a9013e86c65317dadedec8c6e1c7144c | refactor(select and label): replaced SelectWithLabelFormGroup with Select and Label | [
{
"change_type": "DELETE",
"old_path": ".env.example",
"new_path": null,
"diff": "-REACT_APP_HOSPITALRUN_API=http://localhost:5984\n"
},
{
"change_type": "MODIFY",
"old_path": "src/imagings/requests/NewImagingRequest.tsx",
"new_path": "src/imagings/requests/NewImagingRequest.tsx",
... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | refactor(select and label): replaced SelectWithLabelFormGroup with Select and Label |
288,252 | 23.04.2021 22:38:59 | -10,800 | db288610aef3b89a7883645dba6d5cd863c36408 | chore(i18n): adds missing Russian translations fix
chore(i18n): adds missing Russian translations fix | [
{
"change_type": "MODIFY",
"old_path": "src/shared/locales/ru/translations/index.ts",
"new_path": "src/shared/locales/ru/translations/index.ts",
"diff": "import actions from './actions'\n+import bloodType from './blood-type'\nimport dashboard from './dashboard'\n+import imagings from './imagings'\ni... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | chore(i18n): adds missing Russian translations fix
chore(i18n): adds missing Russian translations fix |
288,301 | 25.04.2021 18:04:01 | 14,400 | 4ed0687b09f15929a9094559b5c4d5d553bad6f6 | delete SelectWithLabelFormGroup and addressed lint checks | [
{
"change_type": "MODIFY",
"old_path": "src/imagings/requests/NewImagingRequest.tsx",
"new_path": "src/imagings/requests/NewImagingRequest.tsx",
"diff": "@@ -153,11 +153,7 @@ const NewImagingRequest = () => {\n</Column>\n<Column>\n<div className=\"visits\">\n- <Label\n- text={t('patient.visits.label... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | delete SelectWithLabelFormGroup and addressed lint checks |
288,301 | 16.05.2021 17:56:40 | 14,400 | 3c68e90966883198c6b4c5ba78391bec5369f468 | addressed 19 tests | [
{
"change_type": "MODIFY",
"old_path": "src/imagings/requests/NewImagingRequest.tsx",
"new_path": "src/imagings/requests/NewImagingRequest.tsx",
"diff": "@@ -152,10 +152,10 @@ const NewImagingRequest = () => {\n</div>\n</Column>\n<Column>\n- <div className=\"visits\">\n+ <div className=\"visits\" da... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | addressed 19 tests |
288,334 | 21.10.2021 23:06:37 | -7,200 | e75edef02de3f670eb99e6bb83739116314f137c | chore(deps): revert eslint-plugin-jest update | [
{
"change_type": "MODIFY",
"old_path": "package.json",
"new_path": "package.json",
"diff": "\"eslint-config-prettier\": \"~7.2.0\",\n\"eslint-import-resolver-typescript\": \"~2.5.0\",\n\"eslint-plugin-import\": \"~2.25.1\",\n- \"eslint-plugin-jest\": \"~25.0.1\",\n+ \"eslint-plugin-jest\": \"~24.5.0... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | chore(deps): revert eslint-plugin-jest update |
288,357 | 13.09.2021 10:00:44 | 18,000 | 1a77d008c69a07e2a1792622427aa9ca0d43e137 | refactor(diagnoses): refactored Enzyme tests to RTL
Due to the refactor from Enzyme to React Testing Library that occurred across
HospitalRun's entire front-end codebase, this commit ensures that the new tests
are also updated accordingly. | [
{
"change_type": "MODIFY",
"old_path": "src/__tests__/patients/diagnoses/Diagnoses.test.tsx",
"new_path": "src/__tests__/patients/diagnoses/Diagnoses.test.tsx",
"diff": "@@ -3,7 +3,7 @@ import userEvent from '@testing-library/user-event'\nimport { createMemoryHistory } from 'history'\nimport React f... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | refactor(diagnoses): refactored Enzyme tests to RTL
Due to the refactor from Enzyme to React Testing Library that occurred across
HospitalRun's entire front-end codebase, this commit ensures that the new tests
are also updated accordingly. |
288,334 | 17.12.2021 16:52:34 | -3,600 | 08f77b925122174cd8655357b91601bb49c5a198 | Update pr-updater.yml | [
{
"change_type": "MODIFY",
"old_path": ".github/workflows/pr-updater.yml",
"new_path": ".github/workflows/pr-updater.yml",
"diff": "@@ -13,4 +13,5 @@ jobs:\n- name: PR updater\nuses: maxkomarychev/pr-updater-action@v1.0.0\nwith:\n- token: ${{ secrets.GH_TOKEN }}\n+ # token: ${{ secrets.GH_TOKEN }}\n... | TypeScript | MIT License | hospitalrun/hospitalrun-frontend | Update pr-updater.yml |
339,281 | 03.01.2017 10:36:22 | -3,600 | 50c11e105b0eb66c80f6f42ff9349818acd677db | fix PartialImportTest for migration tests | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/admin/partialimport/PartialImportTest.java",
"new_path": "testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/admin/partialimport/PartialImportTest.java",... | Java | Apache License 2.0 | keycloak/keycloak | fix PartialImportTest for migration tests |
339,364 | 03.01.2017 13:09:38 | -3,600 | 90a5272860a90218a3bc0d00373a1eb7f55901b0 | Fix Password Policy UI test | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/authentication/PasswordPolicy.java",
"new_path": "testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/authenti... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4147 Fix Password Policy UI test |
339,185 | 03.01.2017 15:12:05 | -3,600 | 1eb0cde74f3e2668a6eb3b24957645ce64df7d73 | Instantiate XMLInputFactory in singleton-like manner | [
{
"change_type": "MODIFY",
"old_path": "saml-core/src/main/java/org/keycloak/saml/common/util/StaxParserUtil.java",
"new_path": "saml-core/src/main/java/org/keycloak/saml/common/util/StaxParserUtil.java",
"diff": "@@ -239,15 +239,10 @@ public class StaxParserUtil {\n* @return\n*/\npublic static XMLE... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4148 Instantiate XMLInputFactory in singleton-like manner |
339,185 | 04.01.2017 08:06:56 | -3,600 | 5150251141f24f6cda8eff28493eb4497bcc4062 | [AbstractParser] instantiate XMLInputFactory in singleton-like manner | [
{
"change_type": "MODIFY",
"old_path": "saml-core/src/main/java/org/keycloak/saml/common/parsers/AbstractParser.java",
"new_path": "saml-core/src/main/java/org/keycloak/saml/common/parsers/AbstractParser.java",
"diff": "@@ -21,6 +21,7 @@ import org.keycloak.saml.common.PicketLinkLogger;\nimport org.... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4148 [AbstractParser] instantiate XMLInputFactory in singleton-like manner |
339,185 | 04.01.2017 15:23:04 | -3,600 | 2b57b8371bb2aae200fd6d971f93c654b59aa4c4 | Instantiate XML DatatypeFactory in singleton-like manner
... to gain another ~ 6 % | [
{
"change_type": "MODIFY",
"old_path": "saml-core/src/main/java/org/keycloak/saml/processing/core/saml/v2/util/XMLTimeUtil.java",
"new_path": "saml-core/src/main/java/org/keycloak/saml/processing/core/saml/v2/util/XMLTimeUtil.java",
"diff": "@@ -51,15 +51,11 @@ public class XMLTimeUtil {\n*\n* @thro... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4148 Instantiate XML DatatypeFactory in singleton-like manner
... to gain another ~ 6 % |
339,185 | 04.01.2017 15:21:19 | -3,600 | 862502f3ed6532e04c6fbb8c6e919ca961df8673 | StringUtils property replacer optimization
StringUtils.getSystemPropertyAsString is used in SAML attribute
retrieval and uses StringBuffer and suboptimal regex. This optimization
gains another ~ 3 %. | [
{
"change_type": "MODIFY",
"old_path": "saml-core/src/main/java/org/keycloak/saml/common/util/StringUtil.java",
"new_path": "saml-core/src/main/java/org/keycloak/saml/common/util/StringUtil.java",
"diff": "@@ -59,6 +59,9 @@ public class StringUtil {\nreturn str == null || str.isEmpty();\n}\n+ privat... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4148 StringUtils property replacer optimization
StringUtils.getSystemPropertyAsString is used in SAML attribute
retrieval and uses StringBuffer and suboptimal regex. This optimization
gains another ~ 3 %. |
339,185 | 04.01.2017 15:47:16 | -3,600 | ad9210a7a7a6b4e59df500349ea8ea829cd1aacd | Prevent unnecessary deserialization when supported
... and gain another ~ 5-10 % | [
{
"change_type": "MODIFY",
"old_path": "saml-core/src/main/java/org/keycloak/saml/common/parsers/AbstractParser.java",
"new_path": "saml-core/src/main/java/org/keycloak/saml/common/parsers/AbstractParser.java",
"diff": "@@ -33,6 +33,9 @@ import javax.xml.stream.events.Characters;\nimport javax.xml.s... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4148 Prevent unnecessary deserialization when supported
... and gain another ~ 5-10 % |
339,281 | 05.01.2017 11:03:36 | -3,600 | b0644ce18c02fb5daba06dbb25b4672fa3c28ed8 | test for + fix AuthorizationDisabledInPreviewTest | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/admin/ImpersonationDisabledTest.java",
"diff": "+/*\n+ * Copyright 2016 Red Hat, Inc. and/or its affiliates\n+ * and other contributors as indicated by the @author ... | Java | Apache License 2.0 | keycloak/keycloak | test for KEYCLOAK-4109 + fix AuthorizationDisabledInPreviewTest |
339,185 | 05.01.2017 16:07:50 | -3,600 | 2035398ef4080482249ecfaa267ffb85fd7f8131 | Instantiate XML DocumentBuilder in singleton-like manner | [
{
"change_type": "MODIFY",
"old_path": "saml-core/src/main/java/org/keycloak/saml/common/util/DocumentUtil.java",
"new_path": "saml-core/src/main/java/org/keycloak/saml/common/util/DocumentUtil.java",
"diff": "@@ -97,10 +97,9 @@ public class DocumentUtil {\n* @throws ParserConfigurationException\n*/... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4148 Instantiate XML DocumentBuilder in singleton-like manner |
339,185 | 06.01.2017 10:00:11 | -3,600 | 377fbced4a4dd580ce05c0cf5765bc55e6cb1f4f | Prevent NPE with disabled cache | [
{
"change_type": "MODIFY",
"old_path": "federation/ldap/src/main/java/org/keycloak/storage/ldap/LDAPStorageProvider.java",
"new_path": "federation/ldap/src/main/java/org/keycloak/storage/ldap/LDAPStorageProvider.java",
"diff": "@@ -637,7 +637,10 @@ public class LDAPStorageProvider implements UserSto... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4091 Prevent NPE with disabled cache |
339,179 | 06.01.2017 14:39:24 | -3,600 | 86c49f5e891b51be11ffa5188cbb55d8a956fc4d | Unignore and fix fuse on eap test | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/servers/app-server/jboss/common/install-fuse.sh",
"new_path": "testsuite/integration-arquillian/servers/app-server/jboss/common/install-fuse.sh",
"diff": "@@ -9,4 +9,6 @@ cd $JBOSS_HOME\njava -jar $FUSE_INSTALLER_NAME\nrm $FUSE... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-3841 Unignore and fix fuse on eap test |
339,185 | 06.01.2017 11:23:18 | -3,600 | 9fb3201c8bc80dded7d4dd183adf0698e95610c6 | Ignore user session expiration on OIDC logout | [
{
"change_type": "MODIFY",
"old_path": "services/src/main/java/org/keycloak/protocol/oidc/TokenManager.java",
"new_path": "services/src/main/java/org/keycloak/protocol/oidc/TokenManager.java",
"diff": "@@ -316,6 +316,21 @@ public class TokenManager {\n}\n}\n+ public IDToken verifyIDTokenSignature(Ke... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-3399 Ignore user session expiration on OIDC logout |
339,196 | 09.01.2017 10:30:29 | -3,600 | 42a8a0eb15c248a0c29eaea51eaa424802b4a3a6 | Changed URL to FreeOTP homepage; | [
{
"change_type": "MODIFY",
"old_path": "themes/src/main/resources/theme/base/login/messages/messages_ca.properties",
"new_path": "themes/src/main/resources/theme/base/login/messages/messages_ca.properties",
"diff": "@@ -67,7 +67,7 @@ country=Pa\\u00EDs\nemailVerified=Email verificat\ngssDelegationCr... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4177: Changed URL to FreeOTP homepage; |
339,465 | 09.01.2017 16:56:58 | -3,600 | 14669dfbc587036cbcb40ce65e9db5c3ab4f4551 | Bad error message when kerberos provider unavailable | [
{
"change_type": "MODIFY",
"old_path": "federation/kerberos/src/main/java/org/keycloak/federation/kerberos/impl/KerberosUsernamePasswordAuthenticator.java",
"new_path": "federation/kerberos/src/main/java/org/keycloak/federation/kerberos/impl/KerberosUsernamePasswordAuthenticator.java",
"diff": "@@ -... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4178 Bad error message when kerberos provider unavailable |
339,581 | 09.01.2017 18:45:27 | -3,600 | 37b8d1ad1032bf5dd57493a47613fabdb89f6b0f | fixed version of module `integration-arquillian-tests-adapters-remote` and added it to the project structure | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/other/adapters/jboss/pom.xml",
"new_path": "testsuite/integration-arquillian/tests/other/adapters/jboss/pom.xml",
"diff": "<module>relative</module>\n</modules>\n</profile>\n+ <profile>\n+ <id>app-server-remote</id>\n+ <m... | Java | Apache License 2.0 | keycloak/keycloak | fixed version of module `integration-arquillian-tests-adapters-remote` and added it to the project structure |
339,465 | 09.01.2017 21:29:06 | -3,600 | c32620b71802dc8bca9fc14ebeda7750b89e00d3 | Provide a way to set the connect and read timeout for ldap connections | [
{
"change_type": "MODIFY",
"old_path": "federation/ldap/src/main/java/org/keycloak/storage/ldap/LDAPConfig.java",
"new_path": "federation/ldap/src/main/java/org/keycloak/storage/ldap/LDAPConfig.java",
"diff": "@@ -109,6 +109,14 @@ public class LDAPConfig {\nreturn config.getFirst(LDAPConstants.CONNE... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4175 Provide a way to set the connect and read timeout for ldap connections |
339,465 | 10.01.2017 18:18:36 | -3,600 | 7098daaf7210bcbbe7190384d9434412ab9f868e | TimeoutException in cluster environment in ClearExpiredSessions | [
{
"change_type": "MODIFY",
"old_path": "model/infinispan/src/main/java/org/keycloak/connections/infinispan/DefaultInfinispanConnectionProviderFactory.java",
"new_path": "model/infinispan/src/main/java/org/keycloak/connections/infinispan/DefaultInfinispanConnectionProviderFactory.java",
"diff": "@@ -... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4066 TimeoutException in cluster environment in ClearExpiredSessions |
339,185 | 11.01.2017 18:24:22 | -3,600 | e11957ecf3682b818b83c041be42e80a14db77b6 | Make OIDC identity provider key ID configurable | [
{
"change_type": "MODIFY",
"old_path": "services/src/main/java/org/keycloak/broker/oidc/OIDCIdentityProviderConfig.java",
"new_path": "services/src/main/java/org/keycloak/broker/oidc/OIDCIdentityProviderConfig.java",
"diff": "package org.keycloak.broker.oidc;\nimport org.keycloak.models.IdentityProv... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4167 Make OIDC identity provider key ID configurable |
339,465 | 12.01.2017 11:55:58 | -3,600 | 9a6f202c46d047c0999bcbbcd1a24decd61e4574 | Significant performance lag in 'get client role by role name' | [
{
"change_type": "MODIFY",
"old_path": "model/infinispan/src/main/java/org/keycloak/models/cache/infinispan/ClientAdapter.java",
"new_path": "model/infinispan/src/main/java/org/keycloak/models/cache/infinispan/ClientAdapter.java",
"diff": "@@ -569,10 +569,7 @@ public class ClientAdapter implements C... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4137 Significant performance lag in 'get client role by role name' |
339,500 | 12.01.2017 13:52:29 | -3,600 | f28b3c12692a6e4f19434e54ed12695c34df82fa | Move drools-bom from keycloak-parent | [
{
"change_type": "MODIFY",
"old_path": "authz/policy/drools/pom.xml",
"new_path": "authz/policy/drools/pom.xml",
"diff": "<name>KeyCloak AuthZ: Drools Policy Provider</name>\n<description>KeyCloak AuthZ: Drools Policy Provider</description>\n+ <dependencyManagement>\n+ <dependencies>\n+ <!-- Authori... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4157 Move drools-bom from keycloak-parent |
339,299 | 12.01.2017 14:14:09 | -3,600 | f13deab812b7ef4e57ae77f500a6ae0c1460e20b | Attribute importer of Social Identity providers doesn't
handle JSON 'null' values correctly | [
{
"change_type": "MODIFY",
"old_path": "services/src/main/java/org/keycloak/broker/oidc/mappers/AbstractJsonUserAttributeMapper.java",
"new_path": "services/src/main/java/org/keycloak/broker/oidc/mappers/AbstractJsonUserAttributeMapper.java",
"diff": "@@ -224,7 +224,7 @@ public abstract class Abstra... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4202 - Attribute importer of Social Identity providers doesn't
handle JSON 'null' values correctly |
339,465 | 12.01.2017 22:40:11 | -3,600 | 93157e49d5ad87bb4a09dd697bb637db49353ded | Offline tokens become useless when accessing admin REST API | [
{
"change_type": "MODIFY",
"old_path": "integration/admin-client/src/main/java/org/keycloak/admin/client/Keycloak.java",
"new_path": "integration/admin-client/src/main/java/org/keycloak/admin/client/Keycloak.java",
"diff": "@@ -78,8 +78,8 @@ public class Keycloak {\nreturn new Keycloak(serverUrl, re... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4201 Offline tokens become useless when accessing admin REST API |
339,185 | 11.01.2017 13:54:52 | -3,600 | 0b58bebc902d4bee9d55905ded7b1f1895a69ba8 | Fix for client template duplicate name | [
{
"change_type": "MODIFY",
"old_path": "services/src/main/java/org/keycloak/services/resources/admin/ClientTemplateResource.java",
"new_path": "services/src/main/java/org/keycloak/services/resources/admin/ClientTemplateResource.java",
"diff": "@@ -104,6 +104,9 @@ public class ClientTemplateResource ... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-2847 Fix for client template duplicate name |
339,465 | 13.01.2017 11:29:32 | -3,600 | 9ad14d991c60e373024ba34344424edb73e3a80a | Migration of old offline tokens | [
{
"change_type": "MODIFY",
"old_path": "services/src/main/java/org/keycloak/protocol/oidc/TokenManager.java",
"new_path": "services/src/main/java/org/keycloak/protocol/oidc/TokenManager.java",
"diff": "@@ -66,6 +66,8 @@ import org.keycloak.common.util.Time;\nimport javax.ws.rs.core.HttpHeaders;\nimp... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4140 Migration of old offline tokens |
339,185 | 13.01.2017 14:30:32 | -3,600 | 02eda8943c25de5acc42fdca293e6b1fd2c8a186 | Fix NPE and logout binding choice | [
{
"change_type": "MODIFY",
"old_path": "services/src/main/java/org/keycloak/protocol/saml/SamlProtocol.java",
"new_path": "services/src/main/java/org/keycloak/protocol/saml/SamlProtocol.java",
"diff": "@@ -245,9 +245,9 @@ public class SamlProtocol implements LoginProtocol {\nString logoutPostUrl = c... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4216 Fix NPE and logout binding choice |
339,473 | 12.01.2017 00:33:31 | -3,600 | 7de999a7f95f7ab8b932e5a6134e6eb82cc35f8d | Role id is not preserved during import-export operation | [
{
"change_type": "MODIFY",
"old_path": "model/infinispan/src/main/java/org/keycloak/models/cache/infinispan/RealmCacheSession.java",
"new_path": "model/infinispan/src/main/java/org/keycloak/models/cache/infinispan/RealmCacheSession.java",
"diff": "@@ -616,7 +616,7 @@ public class RealmCacheSession i... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-3657 Role id is not preserved during import-export operation |
339,473 | 11.01.2017 15:55:53 | -3,600 | d68f6bbc4218420c0197fe25ab7afbe8b836af98 | Unresolved variable ${cliane_security-admin-console} in admin web client | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "services/src/main/java/org/keycloak/theme/TemplatingUtil.java",
"diff": "+/*\n+ * Copyright 2017 Red Hat, Inc. and/or its affiliates\n+ * and other contributors as indicated by the @author tags.\n+ *\n+ * Licensed under the Apache License, Versi... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4150 Unresolved variable ${cliane_security-admin-console} in admin web client |
339,364 | 16.01.2017 10:59:02 | -3,600 | 547f5ecfa6d0b683367e252dc9a12dd28047d0a9 | Fix failing Arquillian tests in the "other" module | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/base/pom.xml",
"new_path": "testsuite/integration-arquillian/tests/base/pom.xml",
"diff": "<artifactId>greenmail</artifactId>\n<scope>compile</scope>\n</dependency>\n- <dependency>\n- <groupId>org.jboss.arquillian.contain... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4230 Fix failing Arquillian tests in the "other" module |
339,545 | 16.01.2017 15:27:39 | -3,600 | ae40bfb96e17e055ccdc70b2485e07aed2d09881 | Run failing i18n tests with community profile | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/ProfileAssume.java",
"new_path": "testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/ProfileAssume.java",
"diff": "@@ -33,4 +33,7 @@ public class Pro... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4233 Run failing i18n tests with community profile |
339,626 | 17.01.2017 14:32:59 | -3,600 | 9bb65ba9b709c4837ba1752b1ab36bc6fd4dedf1 | Allow hiding identity providers on login page | [
{
"change_type": "MODIFY",
"old_path": "services/src/main/java/org/keycloak/forms/login/freemarker/model/IdentityProviderBean.java",
"new_path": "services/src/main/java/org/keycloak/forms/login/freemarker/model/IdentityProviderBean.java",
"diff": "@@ -27,6 +27,7 @@ import java.net.URI;\nimport java.... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4224 Allow hiding identity providers on login page |
339,185 | 17.01.2017 15:15:08 | -3,600 | df4f1e71295ad22f85427541de6f38619719c9b6 | Always use preset key for verification if key ID not set | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "services/src/main/java/org/keycloak/keys/loader/HardcodedPublicKeyLoader.java",
"diff": "+/*\n+ * Copyright 2017 Red Hat, Inc. and/or its affiliates\n+ * and other contributors as indicated by the @author tags.\n+ *\n+ * Licensed under the Apach... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4167 Always use preset key for verification if key ID not set |
339,281 | 19.01.2017 14:51:42 | -3,600 | 9cd860d69802ce4ba828661dff67888ea69a642d | disable authorization tests in integration testsuite for product profile | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration/src/test/java/org/keycloak/testsuite/authorization/AbstractAuthorizationTest.java",
"new_path": "testsuite/integration/src/test/java/org/keycloak/testsuite/authorization/AbstractAuthorizationTest.java",
"diff": "package org.keycloak.tests... | Java | Apache License 2.0 | keycloak/keycloak | disable authorization tests in integration testsuite for product profile |
339,185 | 19.01.2017 16:02:53 | -3,600 | 99fcc510193fe6ee7a67491a8dc5ecfac3637fb7 | Fix response type to SAML AuthnRequest messages | [
{
"change_type": "MODIFY",
"old_path": "saml-core/src/main/java/org/keycloak/saml/SAML2ErrorResponseBuilder.java",
"new_path": "saml-core/src/main/java/org/keycloak/saml/SAML2ErrorResponseBuilder.java",
"diff": "@@ -22,6 +22,7 @@ import java.util.List;\nimport org.keycloak.dom.saml.v2.assertion.Name... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4261 Fix response type to SAML AuthnRequest messages |
339,185 | 19.01.2017 16:04:04 | -3,600 | 5da491c2706c5863f02aeac2b530643f98f7f5ee | Fix handling of SAML error code in broker | [
{
"change_type": "MODIFY",
"old_path": "services/src/main/java/org/keycloak/broker/saml/SAMLEndpoint.java",
"new_path": "services/src/main/java/org/keycloak/broker/saml/SAMLEndpoint.java",
"diff": "@@ -19,6 +19,7 @@ package org.keycloak.broker.saml;\nimport org.jboss.logging.Logger;\nimport org.jbos... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4181 Fix handling of SAML error code in broker |
339,185 | 19.01.2017 18:11:51 | -3,600 | 13e4f607adf6226b4ba9b945873180ab216d83d0 | Fix exception convertor for Wildfly | [
{
"change_type": "MODIFY",
"old_path": "model/jpa/src/main/java/org/keycloak/connections/jpa/PersistenceExceptionConverter.java",
"new_path": "model/jpa/src/main/java/org/keycloak/connections/jpa/PersistenceExceptionConverter.java",
"diff": "@@ -55,7 +55,7 @@ public class PersistenceExceptionConvert... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-2847 Fix exception convertor for Wildfly |
339,626 | 13.01.2017 18:35:37 | -3,600 | cc788cf44e1116f2dff25bca534ef5078d911b1d | Remove slash from state parameter | [
{
"change_type": "MODIFY",
"old_path": "adapters/oidc/adapter-core/src/main/java/org/keycloak/adapters/OAuthRequestAuthenticator.java",
"new_path": "adapters/oidc/adapter-core/src/main/java/org/keycloak/adapters/OAuthRequestAuthenticator.java",
"diff": "@@ -196,10 +196,8 @@ public class OAuthRequest... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4222 Remove slash from state parameter |
339,465 | 19.01.2017 21:32:10 | -3,600 | 3444fb62f1f3217a9d1155f579c7d47b884d2f29 | MSAD: User is disabled after registration | [
{
"change_type": "MODIFY",
"old_path": "federation/ldap/src/main/java/org/keycloak/storage/ldap/LDAPStorageProvider.java",
"new_path": "federation/ldap/src/main/java/org/keycloak/storage/ldap/LDAPStorageProvider.java",
"diff": "@@ -92,6 +92,7 @@ public class LDAPStorageProvider implements UserStorag... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4266 MSAD: User is disabled after registration |
339,465 | 20.01.2017 21:08:13 | -3,600 | 39f8311484cedbe4f5c7c63eb0e9d3f04ca738ee | Cannot create user in LDAP/AD from Keycloak using Full Name User Federation Mapper | [
{
"change_type": "MODIFY",
"old_path": "federation/ldap/src/main/java/org/keycloak/storage/ldap/idm/model/LDAPDn.java",
"new_path": "federation/ldap/src/main/java/org/keycloak/storage/ldap/idm/model/LDAPDn.java",
"diff": "@@ -27,7 +27,15 @@ import java.util.LinkedList;\n*/\npublic class LDAPDn {\n- ... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-2403 Cannot create user in LDAP/AD from Keycloak using Full Name User Federation Mapper |
339,138 | 21.01.2017 01:46:34 | -10,800 | 5bacd2919d4a0592d0510d762c4ee33992aa6cb4 | Custom login protocol doesn't show when creating a client | [
{
"change_type": "MODIFY",
"old_path": "themes/src/main/resources/theme/base/admin/resources/js/controllers/clients.js",
"new_path": "themes/src/main/resources/theme/base/admin/resources/js/controllers/clients.js",
"diff": "@@ -1229,8 +1229,7 @@ module.controller('ClientDetailCtrl', function($scope,... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4270 Custom login protocol doesn't show when creating a client |
339,185 | 23.01.2017 13:43:55 | -3,600 | b5212d58ec9411b5b17b7f11fab76a407340e57f | Fix AttributeProfile element handler in SAML metadata | [
{
"change_type": "MODIFY",
"old_path": "saml-core-api/src/main/java/org/keycloak/saml/common/constants/JBossSAMLConstants.java",
"new_path": "saml-core-api/src/main/java/org/keycloak/saml/common/constants/JBossSAMLConstants.java",
"diff": "@@ -29,7 +29,7 @@ public enum JBossSAMLConstants {\n\"Assert... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4236 Fix AttributeProfile element handler in SAML metadata |
339,465 | 23.01.2017 17:55:45 | -3,600 | e487db349c7479959dbea0727dbaa4cb10e3523c | Fix recursive composite role mappings | [
{
"change_type": "MODIFY",
"old_path": "model/infinispan/src/main/java/org/keycloak/models/cache/infinispan/RoleAdapter.java",
"new_path": "model/infinispan/src/main/java/org/keycloak/models/cache/infinispan/RoleAdapter.java",
"diff": "@@ -176,7 +176,7 @@ public class RoleAdapter implements RoleMode... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4274 Fix recursive composite role mappings |
339,465 | 23.01.2017 21:47:51 | -3,600 | 9fea9f6fe03ea948184e98949dc4883447a6050d | Fix failing MSAD tests | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration/src/test/java/org/keycloak/testsuite/federation/storage/ldap/LDAPMSADMapperTest.java",
"new_path": "testsuite/integration/src/test/java/org/keycloak/testsuite/federation/storage/ldap/LDAPMSADMapperTest.java",
"diff": "@@ -62,7 +62,11 @@ p... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4273 Fix failing MSAD tests |
339,465 | 24.01.2017 17:32:34 | -3,600 | 194a63cc71e1b613fd41ac10f8c67476d801c575 | Import authorization after users are imported | [
{
"change_type": "MODIFY",
"old_path": "server-spi-private/src/main/java/org/keycloak/models/utils/RepresentationToModel.java",
"new_path": "server-spi-private/src/main/java/org/keycloak/models/utils/RepresentationToModel.java",
"diff": "@@ -279,13 +279,6 @@ public class RepresentationToModel {\n}\n... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4282 Import authorization after users are imported |
339,465 | 24.01.2017 21:57:35 | -3,600 | 2de2df3a415cc5d8facd840e1973fa66bca243e4 | Fix authorization import in DirImportProvider | [
{
"change_type": "DELETE",
"old_path": "server-spi-private/src/main/java/org/keycloak/models/utils/RealmImporter.java",
"new_path": null,
"diff": "-/*\n- * Copyright 2016 Red Hat, Inc. and/or its affiliates\n- * and other contributors as indicated by the @author tags.\n- *\n- * Licensed under the Ap... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4282 Fix authorization import in DirImportProvider |
339,185 | 24.01.2017 17:24:12 | -3,600 | e329c7801db65c6dfa09247117f1ef9bdc813b9a | Fix tests for SAML adapters in Arquillian TS | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/adapter/servlet/AbstractDemoFilterServletAdapterTest.java",
"new_path": "testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/adapter/servlet/AbstractDemoF... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4281 Fix tests for SAML adapters in Arquillian TS |
339,465 | 26.01.2017 09:48:29 | -3,600 | a8e2c8ef3126f17d58b3c3afda30068fa80a0b59 | Remove LegacyImportTest as the legacy JSON export/import tested with MigrationTest | [
{
"change_type": "DELETE",
"old_path": "testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/exportimport/AbstractExportImportTest.java",
"new_path": null,
"diff": "-/*\n- * Copyright 2016 Red Hat, Inc. and/or its affiliates\n- * and other contributors as indicated by the... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-2813 Remove LegacyImportTest as the legacy JSON export/import tested with MigrationTest |
339,465 | 26.01.2017 17:19:03 | -3,600 | 42ad8aec64761e0ee4df4f1e3788a8c6603a51cd | Migration test for offline tokens | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/arquillian/AuthServerTestEnricher.java",
"new_path": "testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/arquillian/AuthServerTestEnricher.java",
"di... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4271 Migration test for offline tokens |
339,473 | 26.01.2017 17:04:22 | -3,600 | 3e13ffda655f621bf06e62184bcbebf6a44dd2be | Upgrade and unify Aesh version to 0.66.12 | [
{
"change_type": "MODIFY",
"old_path": "integration/client-cli/pom.xml",
"new_path": "integration/client-cli/pom.xml",
"diff": "<artifactId>keycloak-client-cli-parent</artifactId>\n<packaging>pom</packaging>\n- <dependencyManagement>\n- <dependencies>\n- <dependency>\n- <groupId>org.jboss.aesh</grou... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4324 Upgrade and unify Aesh version to 0.66.12 |
339,465 | 26.01.2017 21:32:15 | -3,600 | 265522a2e33c1a9591a5878bd3941c53ba45c834 | Adapter tests for examples fail in Wildfly/EAP6 | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/arquillian/KeycloakArquillianExtension.java",
"new_path": "testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/arquillian/KeycloakArquillianExtension.java... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4285 Adapter tests for examples fail in Wildfly/EAP6 |
339,309 | 27.01.2017 17:37:08 | 18,000 | bb77ab4a812c87b5faa25383a637c034321da0b1 | account link tests | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "testsuite/integration-arquillian/servers/auth-server/services/testsuite-providers/src/main/java/org/keycloak/testsuite/federation/PassThroughFederatedUserStorageProvider.java",
"diff": "+/*\n+ * Copyright 2016 Red Hat, Inc. and/or its affiliates... | Java | Apache License 2.0 | keycloak/keycloak | account link tests |
339,185 | 30.01.2017 10:52:17 | -3,600 | 4d362fe9ca5f275b6c0046e8ed2efd5af03ff88e | Fix for OIDCProtocolMappersTest on mariadb | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/oauth/OIDCProtocolMappersTest.java",
"new_path": "testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/oauth/OIDCProtocolMappersTest.java",
"diff": "@@... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4191 Fix for OIDCProtocolMappersTest on mariadb |
339,185 | 30.01.2017 11:40:48 | -3,600 | ad0630d04f50fdc9920b6dfc7be51fa57650532b | Fix NPE when not providing KeyInfo element in IdP initiated SSO SAML | [
{
"change_type": "MODIFY",
"old_path": "saml-core/src/main/java/org/keycloak/saml/processing/api/util/KeyInfoTools.java",
"new_path": "saml-core/src/main/java/org/keycloak/saml/processing/api/util/KeyInfoTools.java",
"diff": "@@ -35,6 +35,9 @@ public class KeyInfoTools {\n* @return The object or {@c... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4329 Fix NPE when not providing KeyInfo element in IdP initiated SSO SAML |
339,465 | 30.01.2017 17:27:32 | -3,600 | 5c5b7a33d350a0db2774757fbb492e31d466808a | Add initial testsuite how-to | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "testsuite/integration-arquillian/HOW-TO-RUN.md",
"diff": "+How To Run various testsuite configurations\n+===========================================\n+\n+## Base steps\n+\n+It's recomended to build the workspace including distribution.\n+\n+````... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4169 Add initial testsuite how-to |
339,281 | 31.01.2017 13:18:22 | -3,600 | 2fd0c38ad14767fae8a877b2319e785f292769d6 | Removed unused import from LDAPBinaryAttributesTest | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration/src/test/java/org/keycloak/testsuite/federation/storage/ldap/LDAPBinaryAttributesTest.java",
"new_path": "testsuite/integration/src/test/java/org/keycloak/testsuite/federation/storage/ldap/LDAPBinaryAttributesTest.java",
"diff": "@@ -43,7... | Java | Apache License 2.0 | keycloak/keycloak | Removed unused import from LDAPBinaryAttributesTest |
339,281 | 31.01.2017 13:22:16 | -3,600 | 9a16805f17e6852900651b06afb3e8be02442e3f | assumeCommunity for AccountPageTest.testLocalizedReferrerLinkContent | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/i18n/AccountPageTest.java",
"new_path": "testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/i18n/AccountPageTest.java",
"diff": "@@ -23,6 +23,7 @@ im... | Java | Apache License 2.0 | keycloak/keycloak | assumeCommunity for AccountPageTest.testLocalizedReferrerLinkContent |
339,281 | 31.01.2017 13:24:06 | -3,600 | aec59a7e915c4d73282717444db8abf26ed562b0 | refactor asserts in ExportImportTest to be more verbose | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/exportimport/ExportImportTest.java",
"new_path": "testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/exportimport/ExportImportTest.java",
"diff": "@@... | Java | Apache License 2.0 | keycloak/keycloak | refactor asserts in ExportImportTest to be more verbose |
339,179 | 31.01.2017 09:40:13 | -3,600 | 99e1482e06ec8449421367d4757d08b7292cefcb | Use desired version of JS-adapter | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/test-apps/js-console/pom.xml",
"new_path": "testsuite/integration-arquillian/test-apps/js-console/pom.xml",
"diff": "<name>JS Console</name>\n<description/>\n+ <properties>\n+ <js-adapter.version>${project.version}</js-adapter.... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4286 Use desired version of JS-adapter |
339,465 | 31.01.2017 16:00:16 | -3,600 | f92dd6bd160e8d31f60f3af321e1e32968a60ece | MigrationTest fails to run | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/HOW-TO-RUN.md",
"new_path": "testsuite/integration-arquillian/HOW-TO-RUN.md",
"diff": "@@ -64,7 +64,7 @@ mvn -f testsuite/integration-arquillian/tests/other/adapters/karaf/fuse63/pom.xm\nclean install \\\n-Pauth-server-wildfly ... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4339 MigrationTest fails to run |
339,281 | 02.02.2017 09:18:38 | -3,600 | 7abe1406212371e5dc284e7acd568545013e60e6 | resolve 'There is no context available for qualifier' message | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/util/TestEventsLogger.java",
"new_path": "testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/util/TestEventsLogger.java",
"diff": "@@ -71,10 +71,14 @... | Java | Apache License 2.0 | keycloak/keycloak | resolve 'There is no context available for qualifier' message |
339,179 | 19.01.2017 09:28:34 | -3,600 | ddf9301ceba93de0a2167e50caec1d51a6388dcb | add test for boolean attribute | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/test-apps/servlets/src/main/java/org/keycloak/testsuite/adapter/servlet/SendUsernameServlet.java",
"new_path": "testsuite/integration-arquillian/test-apps/servlets/src/main/java/org/keycloak/testsuite/adapter/servlet/SendUsernameSe... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4020 add test for boolean attribute |
339,248 | 02.02.2017 21:18:14 | -3,600 | cde3e87ad943f1ee1399fc991ffacd5d6ce947e5 | verifySSL() - debug info
DEBUG report like this:
SSL Verification:
passed: true, request is secure: true,
SSL is required for: EXTERNAL,
SSL is required for remote addr 192.168.100.123: false | [
{
"change_type": "MODIFY",
"old_path": "adapters/oidc/adapter-core/src/main/java/org/keycloak/adapters/RequestAuthenticator.java",
"new_path": "adapters/oidc/adapter-core/src/main/java/org/keycloak/adapters/RequestAuthenticator.java",
"diff": "@@ -159,11 +159,26 @@ public abstract class RequestAuthe... | Java | Apache License 2.0 | keycloak/keycloak | verifySSL() - debug info
DEBUG report like this:
SSL Verification:
passed: true, request is secure: true,
SSL is required for: EXTERNAL,
SSL is required for remote addr 192.168.100.123: false |
339,465 | 02.02.2017 22:21:18 | -3,600 | 73cad40fb788eb92cccced02919bbc55cfcaf473 | Fix OpenLDAP issue with renaming DN | [
{
"change_type": "MODIFY",
"old_path": "federation/ldap/src/main/java/org/keycloak/storage/ldap/idm/store/ldap/LDAPIdentityStore.java",
"new_path": "federation/ldap/src/main/java/org/keycloak/storage/ldap/idm/store/ldap/LDAPIdentityStore.java",
"diff": "@@ -124,6 +124,11 @@ public class LDAPIdentity... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4364 Fix OpenLDAP issue with renaming DN |
339,511 | 03.02.2017 10:38:54 | -32,400 | 88bfa563df56dc031aa7b2f5a56d772f10914c38 | Proof Key for Code Exchange by OAuth Public Clients - RFC
7636 - Server Side Implementation | [
{
"change_type": "MODIFY",
"old_path": "core/src/main/java/org/keycloak/OAuth2Constants.java",
"new_path": "core/src/main/java/org/keycloak/OAuth2Constants.java",
"diff": "@@ -83,6 +83,14 @@ public interface OAuth2Constants {\nString JWT = \"JWT\";\n+ // https://tools.ietf.org/html/rfc7636#section-6... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-2604 Proof Key for Code Exchange by OAuth Public Clients - RFC
7636 - Server Side Implementation |
339,511 | 03.02.2017 12:02:54 | -32,400 | fe5fe4c9684a0d1afe0af436f46714c181e33a3a | Proof Key for Code Exchange by OAuth Public Clients - RFC
7636 - Client Side Implementation | [
{
"change_type": "MODIFY",
"old_path": "adapters/oidc/adapter-core/src/main/java/org/keycloak/adapters/KeycloakDeployment.java",
"new_path": "adapters/oidc/adapter-core/src/main/java/org/keycloak/adapters/KeycloakDeployment.java",
"diff": "@@ -85,6 +85,9 @@ public class KeycloakDeployment {\nprotect... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-2604 Proof Key for Code Exchange by OAuth Public Clients - RFC
7636 - Client Side Implementation |
339,511 | 03.02.2017 14:41:36 | -32,400 | 6bab704bbaecfb2d6da490d7d4e4f73dc5cec702 | Proof Key for Code Exchange by OAuth Public Clients - RFC
7636 - Arquillian Test Cases | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/util/OAuthClient.java",
"new_path": "testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/util/OAuthClient.java",
"diff": "@@ -111,6 +111,11 @@ public ... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-2604 Proof Key for Code Exchange by OAuth Public Clients - RFC
7636 - Arquillian Test Cases |
339,559 | 03.02.2017 11:24:30 | -7,200 | b693a3ee47f522e2575658f6308511ad9270567e | In case of PKI validation exception HttpMethod throws NPE, because `bytes` value is null. | [
{
"change_type": "MODIFY",
"old_path": "authz/client/src/main/java/org/keycloak/authorization/client/util/HttpMethod.java",
"new_path": "authz/client/src/main/java/org/keycloak/authorization/client/util/HttpMethod.java",
"diff": "@@ -100,7 +100,7 @@ public class HttpMethod<R> {\n} catch (HttpRespons... | Java | Apache License 2.0 | keycloak/keycloak | In case of PKI validation exception HttpMethod throws NPE, because `bytes` value is null. |
339,465 | 03.02.2017 11:53:22 | -3,600 | 8a16ab52a98e26ad07b413a78969408b3c28930f | Offline Tokens still useless When SSO Session Max is Reached and normal userSession expired | [
{
"change_type": "MODIFY",
"old_path": "services/src/main/java/org/keycloak/services/managers/AuthenticationManager.java",
"new_path": "services/src/main/java/org/keycloak/services/managers/AuthenticationManager.java",
"diff": "@@ -740,7 +740,7 @@ public class AuthenticationManager {\nif (!isSession... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4371 Offline Tokens still useless When SSO Session Max is Reached and normal userSession expired |
339,309 | 05.02.2017 09:41:52 | 18,000 | f157e2e637c276c74a11bd56c00f593e999c77b4 | LDAP No-Import: more tests | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration/src/test/java/org/keycloak/testsuite/federation/storage/ldap/LDAPMultipleAttributesTest.java",
"new_path": "testsuite/integration/src/test/java/org/keycloak/testsuite/federation/storage/ldap/LDAPMultipleAttributesTest.java",
"diff": "@@ -... | Java | Apache License 2.0 | keycloak/keycloak | LDAP No-Import: more tests |
339,465 | 06.02.2017 21:24:20 | -3,600 | 72a5d03f34e64462a8261fd525dc2578e844c741 | Added BundleBasedKeycloakConfigResolver | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "adapters/oidc/osgi-adapter/src/main/java/org/keycloak/adapters/osgi/BundleBasedKeycloakConfigResolver.java",
"diff": "+/*\n+ * Copyright 2016 Red Hat, Inc. and/or its affiliates\n+ * and other contributors as indicated by the @author tags.\n+ *\... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4385 Added BundleBasedKeycloakConfigResolver |
339,598 | 07.02.2017 15:37:16 | -3,600 | f3a552ac9dd24c4eb7e7d88a9683ad5fa820ff04 | New user attribute is not added after first login from broker | [
{
"change_type": "MODIFY",
"old_path": "services/src/main/java/org/keycloak/broker/saml/mappers/UserAttributeMapper.java",
"new_path": "services/src/main/java/org/keycloak/broker/saml/mappers/UserAttributeMapper.java",
"diff": "@@ -173,13 +173,17 @@ public class UserAttributeMapper extends AbstractI... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4378 New user attribute is not added after first login from broker |
339,582 | 09.02.2017 11:15:07 | -3,600 | bb9da83e5250fa3eedb3c956b4b6611e5913125a | added all the adapters in BOM | [
{
"change_type": "MODIFY",
"old_path": "boms/adapter/pom.xml",
"new_path": "boms/adapter/pom.xml",
"diff": "<artifactId>keycloak-saml-adapter-api-public</artifactId>\n<version>${version.keycloak}</version>\n</dependency>\n+ <dependency>\n+ <groupId>org.keycloak</groupId>\n+ <artifactId>keycloak-tomc... | Java | Apache License 2.0 | keycloak/keycloak | added all the adapters in BOM |
339,179 | 02.02.2017 10:21:07 | -3,600 | 7d203ed448b315bf66cd760bf22396ea0f3a4496 | Validation tests are failing because of ban on server which provides some imports to SAML xsd | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/base/src/test/resources/adapter-test/keycloak-saml/metadata-schema/saml-schema-assertion-2.0.xsd",
"new_path": "testsuite/integration-arquillian/tests/base/src/test/resources/adapter-test/keycloak-saml/metadata-schema/saml-sc... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4346 Validation tests are failing because of ban on server which provides some imports to SAML xsd |
339,309 | 09.02.2017 09:11:48 | 18,000 | 75bee51ac192dc486c41edd354b2daef0e44a40f | console remote imported/unlink users | [
{
"change_type": "MODIFY",
"old_path": "themes/src/main/resources/theme/base/admin/messages/admin-messages_en.properties",
"new_path": "themes/src/main/resources/theme/base/admin/messages/admin-messages_en.properties",
"diff": "@@ -689,6 +689,8 @@ changed-users-sync-period=Changed Users Sync Period\... | Java | Apache License 2.0 | keycloak/keycloak | console remote imported/unlink users |
339,620 | 10.02.2017 05:41:49 | -21,600 | dbe87d6592a8384ce8c4104ca032db15cb6e0a08 | angular2-product-app: simplify KeycloakHttp | [
{
"change_type": "MODIFY",
"old_path": "examples/demo-template/angular2-product-app/src/main/webapp/app/keycloak.http.ts",
"new_path": "examples/demo-template/angular2-product-app/src/main/webapp/app/keycloak.http.ts",
"diff": "@@ -13,48 +13,6 @@ export class KeycloakHttp extends Http {\nsuper(_back... | Java | Apache License 2.0 | keycloak/keycloak | angular2-product-app: simplify KeycloakHttp |
339,179 | 10.02.2017 10:20:58 | -3,600 | 00932f4eb3d2da398b1877fdf6dba60313a02038 | Add test for grant role from token | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/AbstractBaseBrokerTest.java",
"new_path": "testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/AbstractBaseBrokerTest.java",
"diff": "@@... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-3987 Add test for grant role from token |
339,254 | 10.02.2017 13:37:16 | -3,600 | 3af9f2f989b169c5ff19e1c49a8816864117bb5f | Copy component id from representation to model | [
{
"change_type": "MODIFY",
"old_path": "server-spi-private/src/main/java/org/keycloak/models/utils/RepresentationToModel.java",
"new_path": "server-spi-private/src/main/java/org/keycloak/models/utils/RepresentationToModel.java",
"diff": "@@ -1727,6 +1727,7 @@ public class RepresentationToModel {\npu... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4392 Copy component id from representation to model |
339,179 | 10.02.2017 15:41:05 | -3,600 | 91bcc24977fa47cd6f53bc849dc6f4cf6e58c91b | Add test for empty KeyInfo | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/util/IOUtil.java",
"new_path": "testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/util/IOUtil.java",
"diff": "@@ -227,6 +227,27 @@ public class IOUt... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4329 Add test for empty KeyInfo |
339,582 | 13.02.2017 09:59:17 | -3,600 | 083f27f19dc0dd305a5fa3adbdc6fc03c0a9bff3 | Adding Spring Boot Adapter | [
{
"change_type": "MODIFY",
"old_path": "boms/adapter/pom.xml",
"new_path": "boms/adapter/pom.xml",
"diff": "<artifactId>keycloak-spring-security-adapter</artifactId>\n<version>${version.keycloak}</version>\n</dependency>\n+ <dependency>\n+ <groupId>org.keycloak</groupId>\n+ <artifactId>keycloak-defa... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4423 : Adding Spring Boot Adapter |
339,179 | 14.12.2016 15:09:05 | -3,600 | f2a4fd029d00ad49b5152e6ec09e402308f2a1b6 | Fix ssl adapter tests | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/test-apps/js-console/src/main/webapp/index.html",
"new_path": "testsuite/integration-arquillian/test-apps/js-console/src/main/webapp/index.html",
"diff": "@@ -191,7 +191,7 @@ TimeSkew: <div id=\"timeSkew\"></div>\nfunction send... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4084 Fix ssl adapter tests |
339,179 | 13.02.2017 09:22:42 | -3,600 | 119435ac76c17d3a66590df0f87365f64e3395cd | Test for rejected consent | [
{
"change_type": "MODIFY",
"old_path": "testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/arquillian/DeploymentArchiveProcessor.java",
"new_path": "testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/arquillian/DeploymentArchiveProcessor.java",... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4262 Test for rejected consent |
339,281 | 14.02.2017 15:15:53 | -3,600 | e960e4567195fcb9e67b9f9a6245e1744a5de026 | Enable server-config-migration for distribution | [
{
"change_type": "MODIFY",
"old_path": "pom.xml",
"new_path": "pom.xml",
"diff": "<jmeter.analysis.plugin.version>1.0.4</jmeter.analysis.plugin.version>\n<minify.plugin.version>1.7.2</minify.plugin.version>\n<osgi.bundle.plugin.version>2.3.7</osgi.bundle.plugin.version>\n- <wildfly.plugin.version>1.... | Java | Apache License 2.0 | keycloak/keycloak | Enable server-config-migration for distribution |
339,465 | 20.02.2017 21:48:20 | -3,600 | 098d8e915dbe577709c3e6508fea803380a118c7 | Added HardcodedLDAPAttributeMapper | [
{
"change_type": "MODIFY",
"old_path": "federation/ldap/src/main/java/org/keycloak/storage/ldap/idm/store/ldap/LDAPOperationManager.java",
"new_path": "federation/ldap/src/main/java/org/keycloak/storage/ldap/idm/store/ldap/LDAPOperationManager.java",
"diff": "@@ -487,7 +487,13 @@ public class LDAPOp... | Java | Apache License 2.0 | keycloak/keycloak | KEYCLOAK-4433 Added HardcodedLDAPAttributeMapper |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.