Commit Graph

103 Commits

Author SHA1 Message Date
Dave Syer
8e381eae82 Update to RC2 2016-04-18 10:48:33 +01:00
Dave Syer
14013b2570 Revert to snapshots 2016-03-22 16:56:38 +00:00
Dave Syer
031e01af45 Bump for 1.1.0.RC1 2016-03-22 16:55:53 +00:00
Dave Syer
e86170fbf7 Clarify how to get encrypted properies to clients
Fixes gh-349
2016-03-18 11:56:27 +00:00
Max Romanovsky
55bda1a15b Updated docs with proper name of user property in Eureka First Bootstrap
According to [DiscoveryClientConfigServiceBootstrapConfiguration.java](https://github.com/spring-cloud/spring-cloud-config/blob/master/spring-cloud-config-client/src/main/java/org/springframework/cloud/config/client/DiscoveryClientConfigServiceBootstrapConfiguration.java), proper name of `username` property is `user`.
2016-03-16 13:31:21 +03:00
Misagh Moayyed
7cbcd8078f Update spring-cloud-config.adoc 2016-03-07 02:43:02 -07:00
Dave Syer
901764cd0b Add note about memory usage in JGit 2016-02-23 13:45:21 +00:00
Tommy Ludwig
1edd104127 Quote {application} in searchPaths placeholder doc
Previously it was not quoted in the sample configuration in the documentation. This is not a valid YAML literal.

See #328
2016-02-16 20:11:57 +09:00
Dave Syer
3c8ce9fb20 Revert to snapshots 2016-02-05 06:53:51 +00:00
Dave Syer
b31a5b4eec Update to 1.1.0.M5 2016-02-05 06:53:13 +00:00
Dave Syer
2043b05bbe Add placeholder substitution to search paths within SCM repository
E.g. ...searchPaths={application}/ to search the directory with the
same name as the application (in addition to the root).

Fixes gh-328
2016-01-29 10:10:53 +00:00
Dave Syer
6ab9ad3b90 Fix typo in config sample about overrides
Missing "overrides" key. Fixes gh-323.
2016-01-26 10:01:12 +00:00
Dave Syer
e5bb03b571 Add notes on metadata for config server 2016-01-25 09:53:24 +00:00
Dave Syer
2bf9b60690 Fix documemtation bug around invalid decryption
Fixes gh-319
2016-01-11 16:50:34 +00:00
Dave Syer
56feb145d5 Revert to snapshots 2015-12-22 09:31:46 +00:00
Dave Syer
2c4dc7e0ce Update to 1.1.0.M4 2015-12-22 09:28:33 +00:00
Dave Syer
a125393f27 Add some more docs on embedded config server
Fixes gh-280
2015-12-21 11:54:11 +00:00
Dave Syer
1c1ca02aad Add some notes on windows file paths
Windows users hav eto be careful to use `file:///` prefix
for stuff in `${user.home}`.

Fixes gh-308
2015-12-21 09:45:46 +00:00
Dave Syer
99b6064dc7 Some clarifications on encryption and multiple keys 2015-12-18 10:23:28 +00:00
Dave Syer
f3acf50be2 Add escape of '{' to docs 2015-12-18 10:16:30 +00:00
Stephane Nicoll
d4b4a8415b Polish doc 2015-12-17 17:51:28 +01:00
Dave Syer
87a1e773a0 Support for placeholders in git and file URIs
The default git repository and also the native one (local files)
now support placeholders for {application}, {profile} and
{label} in the URI (searchLocation for the native repository).

Fixes gh-257
2015-12-02 11:46:30 +00:00
Dave Syer
1c69c59705 Revert to snapshots 2015-11-17 12:09:56 +00:00
Dave Syer
5574535b07 Update to 1.1.0.M3 2015-11-17 12:09:08 +00:00
Dave Syer
15b5ca804e Remove executable jar from distribution
It doesn't get used much and it has way too many optional dependencies
in it now.
2015-11-05 07:13:31 +01:00
Dave Syer
444a8cb39f Update to 1.1.0.BUILD_SNAPSHOT again 2015-10-23 17:58:08 +01:00
Dave Syer
31d4326756 Update to 1.1.0.M2 2015-10-23 17:56:48 +01:00
Dave Syer
274c7cff49 Add note on using curl to test /encrypt and /decrypt
Fixes gh-246
2015-10-06 17:48:32 +01:00
Spencer Gibb
309d1fbfbc Add bitbucket webhook watch.
fixes gh-243
2015-09-30 13:00:50 -06:00
Dave Syer
cead15bf8d Clarify profile-specific file paths 2015-09-30 17:58:00 +01:00
Dave Syer
62846bda84 Add ResourceController for serving plain text config files
Can be adapted to serve content in any format (e.g. nginx config file,
XML configuration for logger, etc.) - basically anything that can be
stored in plain text and doesn't require streaming.

Fixes gh-147, see also gh-198
2015-09-30 15:00:37 +01:00
Dave Syer
25dfa37612 Add support for matching profiles as well as applications
Patterns in the form {application}/{profile} are now supported with
the old behaviour being the default (all profiles matched if none
are specified).

Fixes gh-214
2015-09-25 10:37:34 +01:00
Dave Syer
8d8e07a78e Push events for config changes
Works from local repos or with explicit POST to /monitor with
path=<serviceId>, also supports webhooks from github and gitlab.
2015-09-22 17:33:42 +01:00
Dave Syer
f5017cdbad Revert to snapshot 2015-09-08 10:21:35 +01:00
Dave Syer
aca20566be Update for M1 release 2015-09-08 10:12:42 +01:00
Jon Alme
b191b91322 Update property encryption content with note regarding omitting surrounding quotes when saving encrypted value in .properties file. 2015-09-08 09:36:23 +01:00
Dave Syer
eea364675c Merge branch '1.0.x' 2015-08-25 15:20:58 +01:00
Dave Syer
e1ebe46130 Make ghpages.sh work on a branch 2015-08-25 15:16:55 +01:00
Dave Syer
f1c8ad6f78 Merge branch '1.0.x' 2015-08-13 13:39:35 +01:00
Dave Syer
91b8eab027 Clarify some configuration in documentation
Some of the examples used to illustrate multi-git configuration
are apparently confusing. This change adds some clarification.

Fixes gh-213
2015-08-13 13:38:52 +01:00
David Morley
928944fffd Fix typo 'encypt' -> 'encrypt' 2015-07-31 09:26:23 -07:00
Dave Syer
c6f880077a Remove link to included contributing guide 2015-07-31 11:33:28 +01:00
Dave Syer
34b7c40660 Add more detailed quickstart for config server 2015-07-28 07:32:08 +01:00
Dave Syer
f4e3b998a1 Merge branch '1.0.x' 2015-07-24 10:11:21 +01:00
Dave Syer
d888333667 Add docs on config client retry
Fixes gh-199
2015-07-24 10:10:54 +01:00
Dave Syer
ac236bc19d Merge branch '1.0.x' 2015-07-24 09:40:56 +01:00
Dave Syer
12384db4ea Fix sample JSON at end of quickstart
To avoid confusion, the git repository location now matches the one
in the server sample above.

Fixes gh-200
2015-07-24 09:40:32 +01:00
Dave Syer
14236e3837 Merge branch '1.0.x' 2015-07-18 10:00:06 +01:00
Dave Syer
232e450929 Correct user guide env->profile 2015-07-17 22:16:52 +01:00
Dave Syer
3e46e64e87 Update to Brixton 2015-06-26 12:57:05 +01:00