You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[PR-445](https://github.com/Cognifide/knotx/pull/445) - Vert.x version upgrade to 3.5.3
13
+
-[PR-458](https://github.com/Cognifide/knotx/pull/458) - Remove unused StringToPattern function
13
14
14
15
## 1.3.0
15
16
-[PR-376](https://github.com/Cognifide/knotx/pull/376) - Knot.x configurations refactor - Changed the way how configurations and it's defaults are build.
Copy file name to clipboardexpand all lines: documentation/src/main/wiki/UpgradeNotes.md
+16-16
Original file line number
Diff line number
Diff line change
@@ -5,14 +5,14 @@ from older than one version (e.g. 1.0.1 -> 1.1.2) be sure, to do all the steps f
5
5
versions. You may see all changes in the [Changelog](https://github.com/Cognifide/knotx/blob/master/CHANGELOG.md).
6
6
7
7
## Master
8
-
9
-
-[PR-427]https://github.com/Cognifide/knotx/pull/427 - HttpRepositoryConnectorProxyImpl logging improvements. Following log levels are now assigned depending on repository response status code:
8
+
-[PR-427](https://github.com/Cognifide/knotx/pull/427) - HttpRepositoryConnectorProxyImpl logging improvements. Following log levels are now assigned depending on repository response status code:
10
9
```2xx - success - log at debug
11
10
3xx - redirect - log at info
12
11
4xx - client error - log at warn
13
12
5xx - server error - log at error
14
13
other - log at warn
15
14
```
15
+
-[PR-458](https://github.com/Cognifide/knotx/pull/458) - HttpRepositoryOptions now supports plain regex, e.g. `*` is no longer specially treated, replace it to regex `.*`
16
16
17
17
## Version 1.3.0
18
18
List of changes that are finished but not yet released in any final version.
@@ -36,35 +36,35 @@ List of changes that are finished but not yet released in any final version.
36
36
- `customRequestHeader` property in the Service Adapter renamed to `customHttpHeader`
37
37
- Knot.x instance auto-redeploy itself after the configuration is changed.
38
38
- Get rid of configuration override through system properties - only specific verticles can implement it by themselves if required (currently server only)
39
-
- [PR-399](https://github.com/Cognifide/knotx/pull/399) - `knotx-core` now contains all base Knot.x
39
+
- [PR-399](https://github.com/Cognifide/knotx/pull/399) - `knotx-core` now contains all base Knot.x
40
40
concepts, Server, Repositories, Splitter, Assembler and Gateway are now one `knotx-core` module. This
41
41
is just the beginning of the bigger changes to make Knot.x more concise and easier to understand.
42
42
- [PR-405](https://github.com/Cognifide/knotx/pull/405) and [PR-412](https://github.com/Cognifide/knotx/pull/412) - Update of dependencies management in the core project. Switched to BOM style dependencies: [`knotx-dependencies`](https://github.com/Knotx/knotx-dependencies).
43
43
Your custom modules may now just elegantly depend on this module that defines all necessary Knot.x dependencies versions.
44
-
- [PR-406](https://github.com/Cognifide/knotx/pull/406) and [PR-411](https://github.com/Cognifide/knotx/pull/411) - `example` and `standalone` modules were not conceptually a part of Knot.x `core`.
44
+
- [PR-406](https://github.com/Cognifide/knotx/pull/406) and [PR-411](https://github.com/Cognifide/knotx/pull/411) - `example` and `standalone` modules were not conceptually a part of Knot.x `core`.
45
45
They were introduces as a quickstart option but having it in the core repository was misleading. We removed those modules and enabled [`knotx-stack`](https://github.com/Knotx/knotx-stack) to enable even easier and faster setup of Knot.x instance.
46
46
- [PR-419](https://github.com/Cognifide/knotx/pull/419) - Knotx snippets parameters prefix is now customizable, default value is
47
-
still `data-knotx` (to keep compatibility), however expect that in the future it will be empty by default
48
-
(related to [PR-385](https://github.com/Cognifide/knotx/pull/385)). See more in [[Splitter|Splitter]] docs.
49
-
Important change - earlier `snippetTagName` was defined directly in Splitter and Assembler configs.
47
+
still `data-knotx` (to keep compatibility), however expect that in the future it will be empty by default
48
+
(related to [PR-385](https://github.com/Cognifide/knotx/pull/385)). See more in [[Splitter|Splitter]] docs.
49
+
Important change - earlier `snippetTagName` was defined directly in Splitter and Assembler configs.
50
50
Since this PR it will be defined in the `snippetOptions` section, under `tagName` property.
51
51
- [PR-421](https://github.com/Cognifide/knotx/pull/421) - support for system properties injection in HOCON config files. You can now customize your config file to use values from system properties. See [System properties in Config](https://github.com/Cognifide/knotx/wiki/Configuration#system-properties) documentation.
52
52
53
53
54
54
## Version 1.2.1
55
-
- [PR-385](https://github.com/Cognifide/knotx/pull/385) - From now on you can define the custom
56
-
`snippetTagName` and use that tag name to define dynamic snippets in the templates (instead of
55
+
- [PR-385](https://github.com/Cognifide/knotx/pull/385) - From now on you can define the custom
56
+
`snippetTagName` and use that tag name to define dynamic snippets in the templates (instead of
57
57
default `<script>`). Read more about that chang in [[Splitter|Splitter]] and [[Assembler|Assembler]] docs.
58
58
59
59
## Version 1.2.0
60
60
- [PR-345](https://github.com/Cognifide/knotx/pull/335) - Update to Vert.x 3.5 and RxJava 2. Most notable changes are upgrade of Vert.x and RxJava.
61
61
The API is changed, so your custom implementations need to adopt to the latest APIs both of Vert.x and RxJava.
62
62
- [PR-320](https://github.com/Cognifide/knotx/pull/320) - Now you can configure the file-uploads folder for POST requests. See [Server options](https://github.com/Cognifide/knotx/wiki/Server#server-options) for details.
63
63
- [PR-347](https://github.com/Cognifide/knotx/pull/320) - You can now add [custom response header](https://github.com/Cognifide/knotx/wiki/Server#server-options) to the Server. Also custom header can be added to [repository](https://github.com/Cognifide/knotx/wiki/HttpRepositoryConnector#options) & [service](https://github.com/Cognifide/knotx/wiki/HttpServiceAdapter#how-to-configure) requests.
64
-
- [PR-349](https://github.com/Cognifide/knotx/pull/349) - You can pass [`Delivery Options`](http://vertx.io/docs/apidocs/io/vertx/core/eventbus/DeliveryOptions.html) to Knot.x Verticles e.g. to manipulate eventbus response timeouts.
64
+
- [PR-349](https://github.com/Cognifide/knotx/pull/349) - You can pass [`Delivery Options`](http://vertx.io/docs/apidocs/io/vertx/core/eventbus/DeliveryOptions.html) to Knot.x Verticles e.g. to manipulate eventbus response timeouts.
65
65
For more details see documentation sections in [[Server|Server#vertx-event-bus-delivery-options]], [[Action Knot|ActionKnot#vertx-event-bus-delivery-options]] and [[Service Knot|ServiceKnot#vertx-event-bus-delivery-options]].
66
66
- [PR-354](https://github.com/Cognifide/knotx/pull/354) - You can now enable XSRF protection on default or custom flow at any path. See [[Server|Server#how-to-enable-csrf-token-generation-and-validation]] for details.
67
-
- [PR-359](https://github.com/Cognifide/knotx/pull/359) - From now on Knot.x responses with the response of a repository in case of response with status code different than 200.
67
+
- [PR-359](https://github.com/Cognifide/knotx/pull/359) - From now on Knot.x responses with the response of a repository in case of response with status code different than 200.
68
68
You may play with [`displayExceptionDetails`](https://github.com/Cognifide/knotx/wiki/Server#server-options) flag
69
69
in order to receive errors stack traces.
70
70
- [PR-369](https://github.com/Cognifide/knotx/pull/369) - Better support for SSL for Repository Connector. Please check the documentation of [[HttpRepositoryConnector|HttpRepositoryConnector#how-to-configure-ssl-connection-to-the-repository]] for details of how to setup SSL connection.
@@ -74,9 +74,9 @@ For more details see documentation sections in [[Server|Server#vertx-event-bus-d
74
74
75
75
## Version 1.1.2
76
76
- [PR-335](https://github.com/Cognifide/knotx/pull/335) - Added support for HttpServerOptions on the configuration level.
77
-
* **Important**: The biggest change here is the way port of [[Knot.x Server|Server#vertx-http-server-configurations]] is configured.
78
-
Previously it was defined in the `config.httpPort` property. Now `serverOptions` section was introduced, see
79
-
[Vert.x DataObjects page](http://vertx.io/docs/vertx-core/dataobjects.html#HttpServerOptions) for more details.
77
+
* **Important**: The biggest change here is the way port of [[Knot.x Server|Server#vertx-http-server-configurations]] is configured.
78
+
Previously it was defined in the `config.httpPort` property. Now `serverOptions` section was introduced, see
79
+
[Vert.x DataObjects page](http://vertx.io/docs/vertx-core/dataobjects.html#HttpServerOptions) for more details.
0 commit comments