Stian Thorgersen
6201257f76
KEYCLOAK-4549 [RH-SSO] EAP 7.1.0 Alpha16
2017-04-05 11:55:21 +02:00
Pedro Igor
f857625d07
[KEYCLOAK-3573] - Elytron adapter CLI scripts and tests.
2017-03-31 11:31:33 -03:00
Stian Thorgersen
642aeeb937
KEYCLOAK-4615 Build demo-dist, example-dist and proxy-dist only in jboss-release profile
2017-03-29 11:39:40 +02:00
Stian Thorgersen
0180d54dd9
KEYCLOAK-4668 Exclude modules in product profile
2017-03-28 10:04:20 +02:00
Stian Thorgersen
9303a9c7d0
KEYCLOAK-3258 Add server dist changes to product profile
2017-03-27 20:50:13 +02:00
Bill Burke
e5a2642e62
Merge pull request #3978 from pedroigor/KEYCLOAK-3573
...
[KEYCLOAK-3573] - Elytron SAML and OIDC Adapters
2017-03-25 19:24:42 -04:00
Stian Thorgersen
3ce8da0126
Merge pull request #3976 from stianst/KEYCLOAK-3250-PROD-PROFILE
...
KEYCLOAK-4659 Changes to adapters for product profile
2017-03-24 15:34:35 +01:00
Pedro Igor
30d7a5b01f
[KEYCLOAK-3573] - Elytron SAML and OIDC Adapters
2017-03-24 11:32:08 -03:00
Stian Thorgersen
5d028205bf
KEYCLOAK-4659 Changes to adapters for product profile
2017-03-24 12:07:21 +01:00
Stian Thorgersen
ef7cb1e0cb
Merge pull request #3973 from stianst/KEYCLOAK-3250-PROD-PROFILE
...
KEYCLOAK-3251 Add product Maven profile
2017-03-24 09:36:28 +01:00
Stian Thorgersen
90c4de27e5
KEYCLOAK-3251 Add product Maven profile
...
KEYCLOAK-3254 Product profile should include RH-SSO theme and change default theme
2017-03-24 07:10:11 +01:00
Stian Thorgersen
fc009969c9
Merge pull request #3971 from ssilvert/KEYCLOAK-4396-ng2-wrapper
...
KEYCLOAK-4396: Add keycloak.d.ts for TypeScript
2017-03-23 14:12:03 +01:00
Stan Silvert
e2970fcf8a
KEYCLOAK-4396: Add keycloak.d.ts for TypeScript
2017-03-20 12:42:26 -04:00
Peter Nalyvayko
b2f10359c8
KEYCLOAK-4335: x509 client certificate authentication
...
Started on implementing cert thumbprint validation as a part of x509 auth flow. Added a prompt screen to give users a choice to either log in based on the identity extracted from X509 cert or to continue with normal browser login flow authentication; clean up some of the comments
x509 authentication for browser and direct grant flows. Implemented certificate to user mapping based on user attribute
Implemented CRL and OCSP certificate revocation checking and added corresponding configuration settings to set up responderURI (OCSP), a location of a file containing X509CRL entries and switiches to enable/disable revocation checking; reworked the certificate validation; removed superflous logging; changed the certificate authentication prompt page to automatically log in the user after 10 seconds if no response from user is received
Support for loading CRL from LDAP directory; finished the CRL checking using the distribution points in the certificate; updated the instructions how to add X509 authentication to keycloak authentication flows; minor styling changes
Stashing x509 unit test related changes; added the steps to configure mutual SSL in WildFly to the summary document
A minor fix to throw a security exception when unable to check cert revocation status using OCSP; continue working on README
Changes to the formating of the readme
Added a list of features to readme
Fixed a potential bug in X509 cert user authenticator that may cause NPE if the client certificate does not define keyusage or extended key usage extensions
Fixed compile time errors in X509 validators caused by the changes to the user credentials model in upstream master
Removed a superfluous file created when merging x509 and main branches
X509 authentication: removed the PKIX path validation as superflous
Reverted changes to the AbstractAttributeMapper introduced during merging of x509 branch into main
Merge the unit tests from x509 branch
added mockito dependency to services project; changes to the x509 authenticators to expose methods in order to support unit tests; added a default ctor to CertificateValidator class to support unit testing; updated the direct grant and browser x509 authenticators to report consistent status messages; unit tests to validate X509 direct grant and browser authenticators; fixed OCSP validation to throw an exception if the certificate chain contains a single certificate; fixed the CRL revocation validation to only use CRL distribution point validation only if configured
CRL and OSCP mock tests using mock netty server. Changed the certificate validator to better support unit testing.
changes to the mockserver dependency to explicitly exclude xercesImpl that was causing SAMLParsingTest to fail
Added a utility class to build v3 certificates with optional extensions to facilitate X509 unit testing; removed supoerfluous certificate date validity check (undertow should be checking the certificate dates during PKIX path validation anyway)
X509: changes to make configuring the user identity extraction simplier for users - new identity sources to map certificate CN and email (E) attributes from X500 subject and issuer names directly rather than using regular expressions to parse them
X509 fixed a compile error caused by the changes to the user model in master
Integration tests to validate X509 client certificate authentication
Minor tweaks to X509 client auth related integration tests
CRLs to support x509 client cert auth integration tests
X509: reverted the changes to testrealm.json and updated the test to configure the realm at runtime
X509 - changes to the testsuite project configuration to specify a path to a trust store used to test x509 direct grant flow; integration tests to validate x509 authentication in browser and direct grant flows; updated the client certificate to extend its validatity dates; x509 integration tests and authenticators have been refactored to use a common configuration class
X509 separated the browser and direct grant x509 authenction integration tests
x509 updated the authenticator provider test to remove no longer supported cert thumbprint authenticator
x509 removed the dependency on mockito
x509 re-implemented OCSP certificate revocation client used to check revocation status when logging in with x509 certificate to work around the dependency on Sun OCSP implementation; integration tests to verify OCSP revocation requests
index.txt.attr is needed by openssl to run a simple OCSP server
x509: minor grammar fixes
Add OCSP stub responder to integration tests
This commit adds OCSP stub responder needed for the integration tests,
and eliminates the need to run external OCSP responder in order to run
the OCSP in X509OCSPResponderTest.
Replace printStackTrece with logging
This commit replaces call to printStackTrace that will end up going to
the stderr with logging statement of WARN severity.
Remove unused imports
Removed unused imports in
org.keycloak.authentication.authenticators.x509 package.
Parameterized Hashtable variable
Removed unused CertificateFactory variable
Declared serialVersionUID for Serializable class
Removed unused CertificateBuilder class
The CertificateBuilder was not used anywhere in the code, removing it to
prevent technical debt.
Removing unused variable declaration
`response` variable is not used in the test, removed it.
Made sure InputStreams are closed
Even though the InputStreams are memory based, added try-with-resources
to make sure that they are closed.
Removed deprecated usage of URLEncoder
Replaced invocation of deprecated method from URLEncoder with Encode
from Keycloak util package.
Made it more clear how to control OCSP stub responder in the tests
X509 Certificate user authentication: moved the integration unit tests into their own directory to fix a failing travis test job
KEYCLOAK-4335: reduced the logging level; added the instructions how to run X.509 related tests to HOW-TO-RUN.md doc; removed README.md from x509 folder; removed no longer used ocsp profile and fixed the exclusion filter; refactored the x509 base test class that was broken by the recent changes to the integration tests
KEYCLOAK-4335: fixed a few issues after rebasing
2017-03-17 05:24:57 -04:00
Stian Thorgersen
a87ee04024
Bump to 3.1.0.CR1-SNAPSHOT
2017-03-16 14:21:40 +01:00
Gabriel Lavoie
fb507048f5
KEYCLOAK-4563: Large user account ID and group ID may break distribution builds.
...
- Maven documentation recommends using POSIX tar format.
2017-03-13 13:28:51 -04:00
Bill Burke
0ff4223184
Merge pull request #3922 from hmlnarik/KEYCLOAK-4288-SAML-logouts-are-not-invalidating-the-sessions-for-all-the-logged-in-applications
...
KEYCLOAK-4288 Invalidate sessions in cluster for SAML logouts
2017-03-09 19:13:37 -05:00
Rene Ploetz
e770a05db0
KEYCLOAK-4537 Jetty 9.4 implementation (OIDC/SAML)
2017-03-06 23:01:24 +01:00
Stan Silvert
794defe6fc
KEYCLOAK-4514: Update migration scripts according to changes to the
...
subsystem
2017-03-01 13:53:40 -05:00
Hynek Mlnarik
3a0c2be885
KEYCLOAK-4288 AS 7 / EAP 6
2017-03-01 15:17:39 +01:00
Hynek Mlnarik
04da679628
KEYCLOAK-4288 Wildfly
2017-03-01 15:17:39 +01:00
Stian Thorgersen
2a7f595d1c
KEYCLOAK-4483
...
Overlay standalone differs from dist standalone
2017-02-22 19:44:01 +01:00
Stian Thorgersen
49ac3587b6
KEYCLOAK-4384 Remove Mongo support
2017-02-15 15:20:58 +01:00
Stian Thorgersen
ceece3dce4
Merge pull request #3847 from stianst/KEYCLOAK-4008-CHECKSUMS
...
KEYCLOAK-4008 Include checksums in download files
2017-02-08 20:05:39 +01:00
Stian Thorgersen
3de77b7be9
KEYCLOAK-4008 Include checksums in download files
2017-02-08 14:51:36 +01:00
Pedro Igor
27c0f783bc
[KEYCLOAK-4373] - Adapter Feature Pack is missing keycloak-authz-client
2017-02-07 08:43:53 -02:00
Stan Silvert
a7c3d1b8df
KEYCLOAK-4262 Split migration-domain script into two separate scripts
2017-02-01 14:23:20 -05:00
Stian Thorgersen
6f22f88d85
Bump version to 3.0.0.CR1
2017-01-26 06:18:11 +01:00
Stian Thorgersen
9f33685785
KEYCLOAK-4252 Update server-overlay assembly
2017-01-18 12:29:39 +01:00
Stan Silvert
fe294dcb58
KEYCLOAK-4101: Fix pom
2017-01-10 07:37:40 -05:00
Stan Silvert
8441bda3da
KEYCLOAK-4101: Move tests under testsuite. Only run under
...
-Pauth-server-wildfly
2017-01-10 07:30:58 -05:00
Stan Silvert
9e697d033f
KEYCLOAK-4101: Use the same undocumented tags for server-args. Only
...
documented in the examples.
2017-01-09 18:15:37 -05:00
Stan Silvert
2ec3eaf68a
KEYCLOAK-4101: Use undocumented method to specify java-opts
2017-01-09 18:15:34 -05:00
Stan Silvert
e047872c25
KEYCLOAK-4101: Bump version on pom
2017-01-09 18:15:31 -05:00
Stan Silvert
f1173f8022
KEYCLOAK-4101: Try setting javaOpts on each individual execution.
2017-01-09 18:15:28 -05:00
Stan Silvert
420286c103
KEYCLOAK-4101: jboss-cli script to do migration of configuration
2017-01-09 18:15:26 -05:00
Stan Silvert
eb1b011989
KEYCLOAK-4123: keycloak-install.cli fails if not run from bin dir
2017-01-05 21:25:41 -05:00
Stian Thorgersen
e805ffd945
Bump version to 2.5.1.Final-SNAPSHOT
2016-12-22 08:22:18 +01:00
Gabriel Lavoie
32c23c2410
KEYCLOAK-4002: realmRevisions cache too small with high number of realms.
...
- Increased the hardcoded default value to help running master with high number of realms.
- Added a value computation based on the realms cache max size (to match the userRevisions cache configuration pattern).
- Computed revisions cache size is now 2 times the configured maximum cache size.
- Added a maximum realms cache size configuration to the different standalone.xml templates.
- Added a missing users cache size configuration to standalone.xsl.
2016-12-05 08:07:24 -05:00
Stian Thorgersen
b771b84f56
Bump to 2.5.0.Final-SNAPSHOT
2016-11-30 15:44:51 +01:00
mposolda
b640e9fe39
KEYCLOAK-3982 keycloak-jboss-adapter-core module.xml unsynced among Wildfly OIDC and SAML adapter ZIPs
2016-11-25 11:04:24 +01:00
Stian Thorgersen
6ec82865d3
Bump version to 2.4.1.Final-SNAPSHOT
2016-11-22 14:56:21 +01:00
Marek Posolda
60afd280c3
Merge pull request #3512 from abstractj/KEYCLOAK-3918
...
[KEYCLOAK-3918] - Server won't boot on Windows
2016-11-18 08:44:37 +01:00
Bruno Oliveira
5c089e45d4
[KEYCLOAK-3918] - Server won't boot on Windows
2016-11-16 19:37:48 -02:00
mposolda
a27be0cee7
KEYCLOAK-3857 Clustered invalidation cache fixes and refactoring. Support for cross-DC for invalidation caches.
2016-11-16 22:29:23 +01:00
Stian Thorgersen
cf17687b8b
Merge pull request #3506 from abstractj/KEYCLOAK-3913
...
[KEYCLOAK-3913] - Native libraries included within SSSD jar
2016-11-16 14:56:53 +01:00
Bruno Oliveira
8a0cb507c5
[KEYCLOAK-3913] - Native libraries included within SSSD jar
...
- Revert "[KEYCLOAK-3580] - Migrate DBus Java from Unix Socket C library to jnr-unixsocket"
This reverts commit 6c5d1b9214
.
- Use JNA RPM, instead of Maven
2016-11-16 09:14:05 -02:00
Pedro Igor
394a9daa64
[KEYCLOAK-3906] - Update IP-BOM 6.0.10.Final
2016-11-15 01:03:35 +00:00
Pedro Igor
a3beef754c
[KEYCLOAK-3339] - Enable authorization services to EAP6 adapter
2016-11-15 00:26:29 +00:00
Stian Thorgersen
7e33f4a7d1
KEYCLOAK-3882 Split server-spi into server-spi and server-spi-private
2016-11-10 13:28:42 +01:00
Hynek Mlnarik
14f96fdb4b
KEYCLOAK-1881 Wildfly, AS7, EAP Adapters
2016-11-04 21:53:43 +01:00
Stian Thorgersen
bb1d255c40
KEYCLOAK-3726
...
Add supported WildFly version to server overlay
2016-10-28 09:43:51 +02:00
Stian Thorgersen
c615674cbb
Bump version
2016-10-21 07:03:15 +02:00
Stian Thorgersen
14a51e589d
Merge pull request #3325 from mstruk/cli-reg
...
KEYCLOAK-2084 Client Registration CLI
2016-10-19 06:33:45 +02:00
Marko Strukelj
c912f941e7
KEYCLOAK-2084 Client Registration CLI
2016-10-18 12:33:02 +02:00
Vlasta Ramik
041413d8de
KEYCLOAK-3619 Update default datasource definition to non-XA
2016-10-18 12:12:41 +02:00
Stian Thorgersen
f62e66681e
Merge branch 'KEYCLOAK-3628' of https://github.com/pedroigor/keycloak
2016-10-17 19:47:05 +02:00
Stian Thorgersen
144898c0d2
Merge pull request #3262 from vramik/KEYCLOAK-3615
...
KEYCLOAK-3615 Resolve warnings while building the effective model
2016-10-17 19:09:30 +02:00
Pedro Igor
5d836fefc5
[KEYCLOAK-3628] - Using JBPM/BRMS BOM to resolve dependencies versions
2016-10-17 12:05:44 -02:00
Stian Thorgersen
160e26b699
KEYCLOAK-3665 Remove theme module and make built-in theme resources read-only
2016-10-17 13:47:55 +02:00
Pedro Igor
2b589186ed
[KEYCLOAK-3628] - Spliting org.drools module
2016-10-10 13:21:51 +02:00
Bill Burke
4af0976194
remove UserCredValueModel and hold hash providers
2016-10-04 12:34:15 -04:00
mposolda
81e773688f
KEYCLOAK-3644 demo-dist broken due to broken datasource element in standalone.xml
2016-10-03 17:42:20 +02:00
mposolda
f9a0abcfc4
KEYCLOAK-3493 KEYCLOAK-3532 Added KeyStorageProvider. Support key rotation for OIDC clients and identity providers with JWKS url.
2016-09-30 21:28:23 +02:00
Bill Burke
ecc104719d
bump pom version
2016-09-26 11:01:18 -04:00
Vlasta Ramik
103fa975a1
Resolve warnings while building the effective model
2016-09-26 12:34:46 +02:00
Stian Thorgersen
bb7080584d
KEYCLOAK-3612
...
Mark keycloak-authz-policy-common and keycloak-authz-policy-drools modules as private
2016-09-26 09:07:54 +02:00
Bill Burke
ff1326fe35
authenticator example updated
2016-09-23 16:50:08 -04:00
Stian Thorgersen
80cc9b0585
KEYCLOAK-3578 Remove source distribution
2016-09-19 10:32:40 +02:00
Bill Burke
04ee5ca7c1
jta=false for demo-dist
2016-09-08 09:42:05 -04:00
Bill Burke
3b9a6b32e1
Revert "Revert "KEYCLOAK-3440""
...
This reverts commit 01e48dc4b8
.
2016-09-07 23:41:32 -04:00
Bill Burke
01e48dc4b8
Revert "KEYCLOAK-3440"
2016-09-07 23:17:35 -04:00
Bill Burke
3f35234cf5
Merge remote-tracking branch 'upstream/master'
2016-09-07 23:11:38 -04:00
Bill Burke
da135389c7
KEYCLOAK-3440
2016-09-07 23:11:28 -04:00
Bruno Oliveira
1b2a5eda32
Initial FreeIPA Integration
...
- Provide username/password authentication with PAM
- Obtain user data from SSSD
- Feature packs for dbus-java, libpam4j and SSSD API
- Provisioning script
2016-09-06 18:04:43 -03:00
mposolda
fbb2dfcf59
Fuse adapter ZIP download
2016-09-06 10:46:36 +02:00
mposolda
e18f3edbcd
KEYCLOAK-3526 Fuse adapter ZIP fix
2016-09-06 07:14:01 +02:00
Marek Posolda
6ede760725
Merge pull request #3083 from martin-kanis/master
...
Package Fuse adapter as overlay zip
2016-09-06 05:44:27 +02:00
Stan Silvert
e4d97485ec
KEYCLOAK-3196: Create master cli script for server-subsystem.
2016-08-23 11:27:04 -04:00
Stan Silvert
ef442cae92
KEYCLOAK-3196: Create single place to declare default keycloak subsystem
...
config.
2016-08-23 11:26:58 -04:00
Stan Silvert
3493aa4ab7
KEYCLOAK-3196: Use WildFly management model for server configuration.
2016-08-23 11:26:56 -04:00
Stian Thorgersen
c522a20ab9
KEYCLOAK-3447 Manual upgrade of database schema
2016-08-22 10:22:08 +02:00
Pedro Igor
a8d2b810cf
[KEYCLOAK-3144] - Add authorization settings when exporting/importing a realm.
2016-08-15 10:35:28 -03:00
Pedro Igor
bfe10e34e7
[KEYCLOAK-3390] - Updating authorization objects doesn't invalidate cache in cluster
2016-08-12 11:15:13 -03:00
mposolda
d52e043322
Set version to 2.2.0-SNAPSHOT
2016-08-10 08:57:18 +02:00
Bill Burke
83306963e8
jta transaction abstraction
2016-08-08 12:32:36 -04:00
Bill Burke
33d7d89ad9
provider hot deployment
2016-08-07 11:41:52 -04:00
mposolda
bf3541414c
KEYCLOAK-3393 Fix Keycloak on EAP7 overlay
2016-08-03 13:01:44 +02:00
Martin Kanis
8ad3c3fb03
Package Fuse adapter as overlay zip
2016-07-29 11:16:05 +02:00
Pedro Igor
f36a68308d
[KEYCLOAK-3320] - Enable authorization services to WF8 adapter
2016-07-20 08:16:37 -03:00
Stian Thorgersen
b1ae0a9000
Merge pull request #3003 from iconoeugen/fix/update_server_spi_module_deps_for_script_based
...
KEYCLOAK-3285: Update server-spi module to include deps required by script based flow executor
2016-07-15 13:27:28 +02:00
Bill Burke
bd2887aa77
Merge pull request #2982 from ahus1/jetty_9_3
...
KEYCLOAK-2684: jetty 9.3 implementation (oidc/saml)
2016-07-07 14:59:29 -04:00
Horatiu Eugen Vlad
bd124d5f9b
Update server-spi module deps to include dependencies required by script based flow executor.
2016-07-06 18:00:46 +02:00
Stian Thorgersen
3fc215d041
KEYCLOAK-3202 Creating users causes memory leak
2016-07-05 19:54:55 +02:00
Alexander Schwartz
9384aa1398
KEYCLOAK-2684: jetty 9.3 implementation
2016-07-01 12:26:59 +02:00
Bill Burke
b224917fc5
bump version
2016-06-30 17:17:53 -04:00
mposolda
1a4d03e283
KEYCLOAK-3194 Fix fuse adapter. Remove karaf related steps from README
2016-06-27 15:43:23 +02:00
Stian Thorgersen
107830bd2c
KEYCLOAK-3093 Remove documentation from main repository
2016-06-22 13:40:21 +02:00
Pedro Igor
d5167c1632
[KEYCLOAK-3134] - Remove 'org.keycloak.keycloak-authz-server' module
2016-06-20 11:54:32 -03:00
Pedro Igor
6a1fb8f870
[KEYCLOAK-3132] - Single module for common policy providers
2016-06-17 20:38:03 -03:00
Pedro Igor
086c29112a
[KEYCLOAK-2753] - Fine-grained Authorization Services
2016-06-17 02:07:34 -03:00
Stian Thorgersen
087f84bfff
Merge pull request #2901 from mposolda/master
...
KEYCLOAK-3065 Remove 'provider' from realmCache in keycloak-server.js…
2016-06-02 14:58:16 +02:00
Pedro Igor
0ad86b3a53
[KEYCLOAK-3069] - Adding javax.xml.soap.api dependency
2016-06-01 16:57:06 -03:00
mposolda
fd2fc34386
KEYCLOAK-3065 Remove 'provider' from realmCache in keycloak-server.json to have 'enabled' switch working
2016-06-01 17:25:51 +02:00
Paolo Antinori
d35f8c1905
KEYCLOAK-2805 - Update docs for JBoss Fuse 6.3
2016-05-05 15:22:14 +02:00
Paolo Antinori
f5f36545f3
KEYCLOAK-2805 - Support for JBoss Fuse 6.3
...
Upgrade of CXF, Jetty and Pax-Web required to rewrite part of the integration.
2016-05-05 15:21:51 +02:00
Bill Burke
43e88b4d73
Merge pull request #2755 from patriot1burke/master
...
add bind addresses to domain template
2016-04-27 22:09:07 -04:00
Bill Burke
c52da46e54
add bind addresses to domain template
2016-04-27 22:05:01 -04:00
Bill Burke
15f4c764bc
Merge pull request #2752 from patriot1burke/master
...
KEYCLOAK-2922 KEYCLOAK-2920
2016-04-27 11:37:20 -04:00
Bill Burke
cd8ba1653d
KEYCLOAK-2922 KEYCLOAK-2920
2016-04-27 10:36:36 -04:00
Stian Thorgersen
8d9047c338
KEYCLOAK-2927 Rename add-user script to add-user-keycloak
2016-04-27 16:18:42 +02:00
Stian Thorgersen
0008d50dfa
KEYCLOAK-2827 ModuleLoadError: org.keycloak.keycloak-core-public:main
2016-04-14 15:23:21 +02:00
Stian Thorgersen
9ef29b6a3e
KEYCLOAK-2825 KEYCLOAK-2826 Remove private for org.keycloak.keycloak-adapter-core and org.keycloak.keycloak-adapter-spi modules
2016-04-14 14:41:40 +02:00
Bill Burke
b080e1e782
merge adapter-spi adapter-spi-public
2016-04-13 22:25:30 -04:00
Stian Thorgersen
6a428c8ee7
KEYCLOAK-2810 Added robots.txt and robots meta header
2016-04-13 11:22:57 +02:00
Bill Burke
7ec82ee7e2
public/private api
2016-04-12 16:48:30 -04:00
Bill Burke
cca91dd175
public/private
2016-04-12 15:19:46 -04:00
Stian Thorgersen
4a285bae9b
KEYCLOAK-2748
...
Mark modules as private
2016-04-06 08:07:33 +02:00
Stian Thorgersen
7cea4f6695
KEYCLOAK-2652 Added fasterxml modules to as7 adapter dist
2016-04-05 08:02:32 +02:00
Stian Thorgersen
dcdef4daa4
Minor update to themes README.txt
2016-04-04 15:26:04 +02:00
Stian Thorgersen
23091ec738
KEYCLOAK-2657 Remove copyright.txt and README.txt from server dist
2016-03-22 07:28:45 +00:00
Stian Thorgersen
28fe13a800
Next is 2.0.0.CR1
2016-03-10 08:13:00 +01:00
Stian Thorgersen
d722e53108
Next is 1.9.2.Final
2016-03-10 07:28:27 +01:00
mposolda
aae550a7c7
KEYCLOAK-1928 Remove sun.jdk.jgss module
2016-02-26 09:16:39 +01:00
Bill Burke
9488787986
Merge remote-tracking branch 'upstream/master'
2016-02-23 14:36:30 -05:00
mposolda
4d82cc92fe
Fix fuse adapter
2016-02-23 11:19:34 +01:00
Stian Thorgersen
0fc9cb78d5
KEYCLOAK-2525
...
Built-in themes not loaded from modules
2016-02-23 09:51:22 +01:00
Stian Thorgersen
a1d9753ec2
Next is 1.9.1.Final-SNAPSHOT
2016-02-23 08:48:26 +01:00
Bill Burke
599faa454b
Merge remote-tracking branch 'upstream/master'
2016-02-22 17:17:01 -05:00
Stian Thorgersen
4fd97091ff
Version bump to 2.0.0.CR1-SNAPSHOT
2016-02-22 11:36:56 +01:00
Stian Thorgersen
d21a01280b
KEYCLOAK-2482
...
Themes doesn't support patching
2016-02-22 10:01:42 +01:00
Stian Thorgersen
38ce5e069c
Merge pull request #2237 from lkubik/restructurizeParents
...
Update parent poms structure
2016-02-22 08:01:58 +00:00
Bill Burke
c45524d8d4
caching
2016-02-19 15:44:19 -05:00
Marko Strukelj
75d74890ca
KEYCLOAK-2483 Modules are in wrong location
2016-02-18 15:41:57 +01:00
Lukas Kubik
d22f4cb08c
Update parent poms
2016-02-17 16:35:29 +00:00
mposolda
e237bcd383
KEYCLOAK-2412 wildfly configs and polishing
2016-02-17 13:10:51 +01:00
Stian Thorgersen
5bc3ee0e8c
KEYCLOAK-2493
...
Set default theme based on product name
2016-02-16 18:05:06 +01:00
Bill Burke
f2bd50335a
errors
2016-02-10 20:47:27 -05:00
Bill Burke
84949bb51f
concurrency
2016-02-10 14:09:29 -05:00
Stian Thorgersen
98bd0b003e
KEYCLOAK-2450
...
WildFly adapter script should support offline installation of adapter
2016-02-08 19:39:15 +01:00
Stian Thorgersen
579ab56a5a
Bump version to 1.9.0.Final-SNAPSHOT
2016-02-04 15:55:11 +01:00
Stian Thorgersen
eae52a563c
Merge pull request #2169 from stianst/master
...
KEYCLOAK-2441
2016-02-03 16:53:14 +01:00
mposolda
a707aa945f
Fix fuse packaging and example
2016-02-03 16:09:06 +01:00
Stian Thorgersen
1bcc305392
Remove eap6 overlay from downloads bundle
2016-02-03 15:40:38 +01:00
Stian Thorgersen
60872dd8dd
KEYCLOAK-2433
...
ClassNotFoundException: javax.ws.rs.core.Response from Module 'org.keycloak.keycloak-server-spi:main'
2016-02-03 12:25:31 +01:00
Stian Thorgersen
c7a8742a36
KEYCLOAK-1524
...
Source code headers
2016-02-03 11:20:22 +01:00
Stian Thorgersen
747d110da0
KEYCLOAK-2421
...
Remove aesh module from server feature pack
2016-02-02 10:54:54 +01:00
Stian Thorgersen
52048a6060
KEYCLOAK-2312 Move forms/common-themes to themes
2016-01-21 13:51:01 +01:00
Stian Thorgersen
bfdc18f482
KEYCLOAK-2369
...
Account page doesn't load
2016-01-21 12:34:41 +01:00
Bill Burke
d9487a8745
social broker reorg
2016-01-20 16:46:38 -05:00
Bill Burke
01f3c6ceb7
reorg event log/email
2016-01-20 15:38:09 -05:00
Bill Burke
ad33d3c0d8
infinispan reorg
2016-01-20 14:52:04 -05:00
Stian Thorgersen
3dc090b893
KEYCLOAK-2185 Add support to disable realm and user cache, and added support to clear caches from admin console
2016-01-20 14:09:03 +01:00
Bill Burke
7d08d4c036
fixes
2016-01-19 18:11:45 -05:00
Bill Burke
4ed1eb66ee
truststore httpclient
2016-01-19 17:29:16 -05:00
Bill Burke
17d856a5d8
mongo
2016-01-19 17:12:54 -05:00
Bill Burke
9b09a91481
consolidate JPA
2016-01-19 17:00:58 -05:00
Bill Burke
46634b386e
reorg freemarker
2016-01-19 11:33:59 -05:00
Bill Burke
b0054b7682
email, login, account
2016-01-16 09:38:24 -05:00
Bill Burke
b403c9b934
broker and social
2016-01-16 09:15:17 -05:00
Bill Burke
5017d71383
exportimport and timer and events
2016-01-15 19:07:17 -05:00
Bill Burke
b93d55cb63
remove model-api, add server-spi
2016-01-15 18:44:17 -05:00
Stian Thorgersen
435980d776
KEYCLOAK-1809
...
Upgrade jackson to version 2.x
2016-01-14 16:34:30 +01:00
Stian Thorgersen
e572d45bea
KEYCLOAK-2142
...
Drop support to deploy server to EAP 6.4
2016-01-13 14:32:04 +01:00
Stian Thorgersen
0193c696ab
Version bump
2016-01-13 09:20:38 +01:00
Stian Thorgersen
1b0bf966b6
KEYCLOAK-2298
...
Demo doesn't have add-user-keycloak.bat
2016-01-12 19:46:34 +01:00
mposolda
6f262423f1
KEYCLOAK-2229 Fix NoClassDefFoundError when IdpEmailVerificationAuthenticator is used for link accounts during first broker login
2016-01-12 10:37:44 +01:00
Stian Thorgersen
81a0135fa6
KEYCLOAK-2229
...
First broker login throws NoClassDefFoundError: org/keycloak/broker/provider/BrokeredIdentityContext
2016-01-12 09:18:03 +01:00
Marko Strukelj
80e2b8eb39
KEYCLOAK-1717 Truststore SPI and file provider
2016-01-10 12:39:30 +01:00
Stian Thorgersen
a5c159eeff
KEYCLOAK-2247
...
Upgrade to WildFly 10.0.0.CR5
2016-01-06 16:15:00 +01:00
Marko Strukelj
2a8e868bc1
Fix missing offlineSession local-cache config for demo-dist
2016-01-05 22:56:44 +01:00
Stian Thorgersen
392ce0b323
KEYCLOAK-2250
...
Infinispan offline sessions cache is missing from configuration files
2016-01-04 11:53:25 +01:00
Pedro Igor
1b614a379b
[KEYCLOAK-2202] - Initial support for SAML ECP Profile.
2015-12-16 18:46:52 -02:00
Dane Barentine
de5baa9df7
KEYCLOAK-2229 Added depending on keycloak-broker-core module to resolve NoClassDefFoundError for BrokeredIdentityContext class
2015-12-15 11:15:55 -08:00
Marko Strukelj
32af1bd3a5
KEYCLOAK-2223 Upgrade to WildFly 10.0.0.CR4
2015-12-13 21:26:07 +01:00
Peter Palaga
4772b8401a
KEYCLOAK-2099 fixup: Rename keycloak-wf9-subsystem directory to
...
keycloak-wildfly-subsystem to match the WF module it contains
2015-12-02 14:51:48 +01:00
Stian Thorgersen
ff806eae08
Version bump
2015-12-01 19:54:28 +01:00
Stian Thorgersen
8064c88e3c
Merge pull request #1913 from stianst/KEYCLOAK-2175
...
KEYCLOAK-2175
2015-12-01 14:41:55 +01:00
Stian Thorgersen
f9b89df326
KEYCLOAK-2175
...
WildFly server overlay includes aesh/main as well as aesh/0.65
2015-12-01 14:32:05 +01:00
Stian Thorgersen
f6f6b6a258
KEYCLOAK-2174 javax/mail not found for DefaultEmailSenderProviderFactory
2015-12-01 13:49:22 +01:00
Stian Thorgersen
5a686c4260
KEYCLOAK-2158
...
Add add-user-keycloak.sh to server overlays
2015-11-30 14:03:54 +01:00
Marko Strukelj
2726db0be9
KEYCLOAK-2166 Name clash of bin/adapter-install.cli in adapter-dist and saml-adapter-dist
2015-11-30 12:53:51 +01:00
Stian Thorgersen
83fa03e8cc
Merge pull request #1894 from mstruk/saml-subsystem
...
KEYCLOAK-1924 SAML adapter full subsystem EAP/Wildfly
2015-11-30 09:51:33 +01:00
Marko Strukelj
38d160fab2
KEYCLOAK-1924 SAML adapter full subsystem EAP/Wildfly
2015-11-27 22:49:35 +01:00
Marko Strukelj
373fc23fc0
KEYCLOAK-2099 WildFly 10 adapter subsystem
2015-11-27 20:46:20 +01:00
Stian Thorgersen
cfc28b861b
KEYCLOAK-1758 add-user script
2015-11-24 21:54:58 +01:00
Bruno Oliveira
f7b1af7e11
Removal of module keycloak-connections-file
2015-11-13 13:44:15 -02:00
Bruno Oliveira
4b0e33e388
KEYCLOAK-2056: Removal of file model provider
2015-11-13 13:44:15 -02:00
Stian Thorgersen
15f1a38b51
KEYCLOAK-2055
...
Invalid links in docs index.html
2015-11-11 14:32:43 +01:00
Stian Thorgersen
d0c50fe56d
KEYCLOAK-2037 Fix domain mode for server-dist
2015-11-06 08:44:50 +01:00
Stian Thorgersen
4f2fe0197d
Fix saml examples not excluded from deploy
2015-10-23 08:48:43 +02:00
Stian Thorgersen
3f8312427a
Version bump
2015-10-19 16:15:29 +02:00
Stian Thorgersen
df03f51563
KEYCLOAK-1984
...
Examples includes pom.xml.releaseBackup
2015-10-19 13:25:02 +02:00
mposolda
4587fd23b6
KEYCLOAK-1929 Change package names. Fix Fuse demo
2015-10-16 16:30:42 +02:00
Marko Strukelj
0c39e30241
KEYCLOAK-1849 Overlay installation scripts not working
...
- fix unsupported dependency 'org.infinispan:main' warning
2015-10-15 13:46:38 +02:00
Marko Strukelj
11a8d3842e
KEYCLOAK-1849 Overlay installation scripts not working
2015-10-15 13:46:38 +02:00
Marek Posolda
68c3f2f65b
Merge pull request #1726 from mposolda/master
...
KEYCLOAK-904 Offline tokens storage changes. Added UserSessionPersisterProvider . offline sessions preloaded to cache at startup
2015-10-14 14:24:54 +02:00
Stian Thorgersen
b907f8f92c
Disable cli install scripts
2015-10-14 13:52:36 +02:00
mposolda
f92fe6bea9
KEYCLOAK-904 Offline tokens storage changes. Added UserSessionPersisterProvider . offline sessions preloaded to cache at startup
2015-10-14 11:07:44 +02:00
Stian Thorgersen
325072c74d
KEYCLOAK-1849 KEYCLOAK-1958 Fix install scripts for overlays
2015-10-14 09:24:06 +02:00
Stian Thorgersen
4fbf6841be
KEYCLOAK-1944
...
Remove winzipaes import/export provider
2015-10-12 14:43:52 +02:00
Stian Thorgersen
67d8ca0207
KEYCLOAK-1896 Search for users returns null values
2015-10-08 20:15:53 +02:00
Bill Burke
450e031da9
saml adapter docs
2015-10-07 16:20:59 -04:00
Bill Burke
1781588597
as7/eap saml adapter
2015-10-07 10:19:15 -04:00
Bill Burke
d40237b08d
saml adapters docs/dist
2015-10-06 15:56:44 -04:00
Bill Burke
75343986b0
keycloak-common
2015-10-01 14:27:51 -04:00
Bill Burke
76e3c6394c
saml sp distro
2015-09-30 16:36:21 -04:00
Bill Burke
d648ba73de
wildfly saml distro
2015-09-30 11:56:21 -04:00
Bill Burke
07d3b26722
Merge remote-tracking branch 'upstream/master'
2015-09-30 11:01:55 -04:00
Bill Burke
510b03476f
saml distro
2015-09-30 11:01:45 -04:00
Bill Burke
5ec73a81e9
Merge pull request #1651 from patriot1burke/master
...
wf saml adapter first iter
2015-09-30 08:39:45 -04:00
Stian Thorgersen
25a6fcc382
Set product name/version in keycloak-paren pom
2015-09-30 13:41:37 +02:00
Bill Burke
e277d5b55e
wf saml adapter
2015-09-29 20:24:59 -04:00
Bill Burke
0a42a28eeb
Merge remote-tracking branch 'upstream/master'
2015-09-25 15:12:34 -04:00
Bill Burke
88355d7eb4
tomcat6 adapter
2015-09-25 15:12:14 -04:00
Stian Thorgersen
75c0d5089f
KEYCLOAK-1878
...
Add Base64 to Keycloak core
2015-09-25 07:02:25 +02:00
Bill Burke
546cdd7d8f
fix modules for refactor
2015-09-24 12:05:12 -04:00
Bill Burke
c14d3d7963
merge conflicts
2015-09-23 21:01:47 -04:00
Stian Thorgersen
364aecda2a
Merge pull request #1627 from stianst/master
...
KEYCLOAK-1858
2015-09-18 13:02:38 +02:00
Stian Thorgersen
9bfbac6be5
KEYCLOAK-1858
...
JavaDoc aggregate fails during release if build not already executed
2015-09-18 10:11:51 +02:00
Bill Burke
0f24bd2ea4
merge
2015-09-17 14:06:33 -04:00
Bill Burke
9dc54815eb
Merge pull request #1616 from dbarentine/master
...
Bug fixes
2015-09-17 14:01:13 -04:00
Marko Strukelj
0c49fce78f
KEYCLOAK-1241 Can't build release with Java 8
2015-09-15 21:22:43 +02:00
Dane Barentine
fe79c9b01e
KEYCLOAK-1845 Fixed relative path error which was omitting the themes on the EAP overlay
2015-09-14 14:58:56 -07:00
Stian Thorgersen
3fd4d23bed
Version bump
2015-09-09 11:27:21 +02:00
Bill Burke
333ad0efac
refactor adapters
2015-09-04 15:56:28 -04:00
Stian Thorgersen
81928eb61a
Updated release process docs
2015-08-18 13:48:21 +02:00
Stian Thorgersen
7665b9f81e
KEYCLOAK-1703 Remove jpa and mongo user session providers
2015-08-13 08:57:37 +02:00
Stian Thorgersen
a8ad00156b
KEYCLOAK-1702 Removed mem and none realm and user cache
2015-08-12 16:55:23 +02:00
mposolda
060a193b48
KEYCLOAK-1732 Fix standalone.xml in demo distribution
2015-08-05 13:33:11 +02:00
Stian Thorgersen
5d6cc61d4d
KEYCLOAK-1702 KEYCLOAK-1703 Remove mem user session provider
2015-07-29 12:02:27 +02:00
Stian Thorgersen
f32b38cdbc
KEYCLOAK-1702 KEYCLOAK-1703 Make Infinispan default user session and cache provider
2015-07-29 10:08:15 +02:00
Stian Thorgersen
f3bfb06dec
Version bump
2015-07-28 10:20:40 +02:00
Stian Thorgersen
cbab3ff0d0
KEYCLOAK-1709 Add standalone-keycloak-ha.xml to server overlays
2015-07-27 14:31:40 +02:00
Stian Thorgersen
e89499f5db
Fix xmlns for modules in feature packs
2015-07-24 16:45:27 +02:00
Stian Thorgersen
90d6991b9d
KEYCLOAK-1691 Enable adapter subsystem to use with WildFly Swarm
2015-07-24 10:16:25 +02:00
Stian Thorgersen
efe2a8f789
Merge branch 'KEYCLOAK-1414-cli-script-adapters' of https://github.com/ssilvert/keycloak into ssilvert-KEYCLOAK-1414-cli-script-adapters
...
Conflicts:
docbook/reference/en/en-US/modules/jboss-adapter.xml
2015-07-20 13:10:51 +02:00
Stian Thorgersen
69bbed999f
Merge pull request #1466 from ssilvert/KEYCLOAK-1415-server-cli-script
...
KEYCLOAK-1415 server cli script
2015-07-20 13:08:13 +02:00
Stan Silvert
5bcf334bc5
Don't add security-domain to server.
2015-07-17 12:48:32 -04:00
Stan Silvert
ef49bd685e
KEYCLOAK-1415 Add CLI scripts to WildFly and EAP overlay bundles.
2015-07-17 12:34:20 -04:00
Stan Silvert
092562fb94
KEYCLOAK-1414 Add CLI script for installing JBoss/WildFly/EAP adapters.
2015-07-17 12:23:10 -04:00
Stian Thorgersen
1642ac2394
KEYCLOAK-1385 Introduce end-of-line normalization
2015-07-17 13:46:51 +02:00
Marko Strukelj
fc7ba85639
KEYCLOAK-1345 Remove distribution/subsystem-war
2015-07-17 12:41:00 +02:00
Marko Strukelj
dcf8751ff7
KEYCLOAK-1331 Add product.conf and product module
2015-07-16 14:16:10 +02:00
Stian Thorgersen
e3da38df7c
KEYCLOAK-1538 Deploy server feature pack to maven repo
2015-07-13 16:47:58 +02:00
Stian Thorgersen
a16079e38d
Remove unused feature-packs-builds
2015-07-13 14:08:25 +02:00
Marko Strukelj
26190350c4
KEYCLOAK-1370 Empty module de.idyl.winzipaes in keycloak-server-dist
2015-07-13 12:42:06 +02:00
mposolda
69cc28dd4b
KEYCLOAK-1531 LDAP example and update Kerberos example to use example embedded LDAP
2015-07-09 19:55:37 +02:00
Marko Strukelj
7ae62c1060
KEYCLOAK-1529 Drop InfinispanCacheActivator and make subsystem do it
2015-07-07 16:40:03 +02:00
Bill Burke
212f5b4082
Merge pull request #1410 from dbarentine/master
...
Spec compliance, bug fixes
2015-07-01 15:27:47 -04:00