https://github.com/embulk/embulk-util-dynamic
A clone of embulk-core's "org.embulk.spi.util.Dynamic*" classes to do the same job on Embulk plugin's side.
https://github.com/embulk/embulk-util-dynamic
embulk
Last synced: 3 months ago
JSON representation
A clone of embulk-core's "org.embulk.spi.util.Dynamic*" classes to do the same job on Embulk plugin's side.
- Host: GitHub
- URL: https://github.com/embulk/embulk-util-dynamic
- Owner: embulk
- License: apache-2.0
- Created: 2020-09-16T05:38:13.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-10-20T04:00:02.000Z (over 1 year ago)
- Last Synced: 2025-01-09T23:54:30.409Z (4 months ago)
- Topics: embulk
- Language: Java
- Homepage:
- Size: 219 KB
- Stars: 0
- Watchers: 12
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
embulk-util-dynamic
====================A clone of [`embulk-core`'s `org.embulk.spi.util.Dynamic*` classes](https://github.com/embulk/embulk/blob/v0.10.30/embulk-core/src/main/java/org/embulk/spi/util/DynamicPageBuilder.java) to do the same job on Embulk plugin's side.
Versions
---------Note that v0.1.1 and v0.2.0-v0.2.1 are incompatible.
| embulk-util-dynamic | Embulk |
| ---- | ---- |
| v0.1.1 | It will stop working during Embulk v1.0 for the removal of `msgpack-java`. |
| v0.2.0, v0.2.1 | It works only after Embulk v0.10.42. |For Embulk plugin developers
-----------------------------* [Javadoc](https://dev.embulk.org/embulk-util-dynamic/)
For Maintainers
----------------### Release
Modify `version` in `build.gradle` at a detached commit to bump up the versions of Embulk standard plugins.
```
git checkout --detach master(Edit: Remove "-SNAPSHOT" in "version" in build.gradle.)
git add build.gradle
git commit -m "Release vX.Y.Z"
git tag -a vX.Y.Z
(Edit: Write a tag annotation in the changelog format.)
git push -u origin vX.Y.Z # Pushing a version tag would trigger a release operation on GitHub Actions after approval.
```