Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-server
Commits
099c866c
Verified
Commit
099c866c
authored
4 years ago
by
Timm Fitschen
Browse files
Options
Downloads
Patches
Plain Diff
DOC: update CHANGELOG, README_SETUP
parent
b29d8929
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+6
-1
6 additions, 1 deletion
CHANGELOG.md
README_SETUP.md
+18
-0
18 additions, 0 deletions
README_SETUP.md
with
24 additions
and
1 deletion
CHANGELOG.md
+
6
−
1
View file @
099c866c
...
...
@@ -19,7 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Security
##
v
0.2
(
2020-09-02
)
##
[
0.2
] -
2020-09-02
### Added
...
...
@@ -45,6 +45,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
*
All caosdb server java classes moved from
`caosdb.[...]`
to
`org.caosdb.[...]`
because the new root package is compliant with the java
package naming conventions while the old was not. This has some implications
for configuring the server. See
[
README_SETUP.md
](
./README_SETUP.md
)
, section
"Migration" for additional information.
-
The sever by default now only serves TLS 1.2 and 1.3, all previous versions
have been disabled in the default settings. Make sure that your clients
(especially the Python client) are up to date.
...
...
This diff is collapsed.
Click to expand it.
README_SETUP.md
+
18
−
0
View file @
099c866c
...
...
@@ -149,3 +149,21 @@ certificate.
Build Project`
.
Done!
# Migration
## From 0.1 to 0.2
A major change in the code is the renaming of the java packages (from
`caosdb.[...]`
to
`org.caosdb.[...]`
).
This makes its necessary to change some of your config files as well. Whenever
you configured a class (e.g. the
`EMAIL_HANDLER`
, or the realms in your
`usersources.ini`
) you would need to reconfigure it there.
The following
`sed`
command could be useful. However, use it with care and backup
before you execute it.
```
sh
sed
-i
.bak
-e
"s/
\(\s
*
\)\(
[^.]
\)
caosdb
\.
server/
\1\2
org.caosdb.server/g"
FILE_TO_BE_CHANGED
```
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment