Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CaosDB Crawler
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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 Crawler
Commits
527b4c96
Commit
527b4c96
authored
2 years ago
by
Henrik tom Wörden
Browse files
Options
Downloads
Patches
Plain Diff
DOC: enhance documentation on how to upgrade
parent
6052b00a
No related branches found
No related tags found
1 merge request
!91
Release 0.3
Pipeline
#30821
passed
2 years ago
Stage: info
Stage: setup
Stage: cert
Stage: style
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+7
-9
7 additions, 9 deletions
CHANGELOG.md
src/doc/how-to-upgrade.md
+7
-2
7 additions, 2 deletions
src/doc/how-to-upgrade.md
with
14 additions
and
11 deletions
CHANGELOG.md
+
7
−
9
View file @
527b4c96
...
...
@@ -9,20 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ###
-
Identifiable class to represent the information used to identify Records.
This is now used by the crawler.
-
Added some StructureElements: BooleanElement, FloatElement, IntegerElement,
ListElement, DictElement
### Changed ###
-
Some StructureElements changed (see "How to upgrade" in the docs):
-
Dict, DictElement and DictDictElement were merged into DictElement.
-
DictTextElement and TextElement were merged into TextElement.
-
The DictXYElements are now depricated. For example, instead of
DictTextElement you should use simply a TextElement. See READ
See The behavior of the following classes changed:
-
DictElementConverter (old: DictConverter) now can use "match" keywords. If
none are in the definition, the behavior is as before.
-
TextElement used the 'match' keyword before, which was applied to the
value. This is will in future be applied to the key instead and is now
forbidden to used. Please use 'match_name' or 'match_value'.
### Deprecated ###
-
The DictXYElements are now depricated and are now synonyms for the
XYElements.
### Removed ###
...
...
This diff is collapsed.
Click to expand it.
src/doc/how-to-upgrade.md
+
7
−
2
View file @
527b4c96
...
...
@@ -2,10 +2,15 @@
# How to upgrade
## 0.2.x to 0.3.0
If you had "match", "match_name" or "match_value" in the definition of a
DictElementConverter (old: DictConverter) now can use "match" keywords. If
none are in the definition, the behavior is as before. If you had "match",
"match_name" or "match_value" in the definition of a
DictConverter (StructureElement: Dict) before,
you probably want to remove those. They were ignored before and are now used.
If you used the 'match' keyword in the definition of TextElementConverter
TextElement used the 'match' keyword before, which was applied to the
value. This is will in future be applied to the key instead and is now
forbidden to used. If you used the 'match'
keyword in the definition of TextElementConverter
(StructureElement: TextElement) before, you need to change the key from "match"
to "match_name" in order to preserve the behavior.
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