![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@carto/kepler.gl
Advanced tools
kepler.gl is a webgl based application to visualize large scale location data in the browser
Published as @carto/kepler.gl
, used by the Cloud Native app.
Each development should be done in its own feature branch
The pull request should be diff-ed with the main
branch
Apart from code changes, the PR should include an entry in the "Not released" section of CHANGELOG.md
with a link to itself (if the section is not present, re-create it at the top of the file). This facilitates the release process by keeping the changelog always up-to-date with main
.
Ex:
## Not released
- Support for count aggregation [141](https://github.com/CartoDB/carto-kepler/pull/141)
After review, merge into the main
branch by squashing commits, to keep a clean history.
When developing locally, you can use symlinks to connect your local Cloud Native to your local CARTO Kepler:
yarn link
yarn link @carto/kepler.gl
yarn build:watch
yarn start
To be able to test a dev version of carto-kepler from cloud-native on a remote environment (ex: dedicated environments for QA), you need to publish an alpha version of carto-kepler.
Switch to the branch you want to publish. You can use any unmerged dev branch, but make sure it's based on the latest main
to avoid behavior changes outside the branch scope.
Manually change the version in package.json
. Use this pattern: <next-version>-alpha.<feature>
.
Ex: 0.0.47-alpha.custom-markers
Build the project with yarn build
, and ensure there is no error.
Publish the package to NPM as alpha. You need to have the proper rights on the NPM organization.
npm publish --tag alpha
If the package has been correctly published, then in cloud-native
install the new version with yarn add @carto/kepler.gl@<alpha-version-number>
, and open a PR.
If you need to change some things later in the code, you will need to republish. Repeat the process by simply adding a suffix to the version number.
Ex: 0.0.47-alpha.custom-markers.2
Create a branch release-<next-version>
from the latest changes on main
.
Modify the CHANGELOG.md
file, by creating a new section <next-version>
and moving contents from "Not released" to it. Keep the empty "Not released" section at the top of the file.
Increase version in package.json
to <next-version>
Build the project with yarn build
, and ensure there is no error.
Commit the changes (git commit -am "release <next-version>"
), push, open a PR, ask for review and merge.
Finally change to the main
branch and publish to NPM
npm publish --access public
FAQs
kepler.gl is a webgl based application to visualize large scale location data in the browser
We found that @carto/kepler.gl demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.