Skip to content

Preparation for Beta release #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
X.X.X (January XXX, 2021)
- Initial public release. It includes common modules to the SDKs for the different Javascript runtime environments, such as Browser JS SDK, Node JS SDK, among others.
- It has a modular design with the following goals in mind:
- Decouple the SDK API variants from the runtime environment, in order to, for example, run a client-side SDK instance on Node or Electron.
- Size reduction via tree-shaking with ES modules.
- Better performance by ussing the native APIs of each runtime environment.
- Extendable via pluggable modules, such as storages, integrations with third-party analytic tools, etc.
0.0.1-beta1 (February 5, 2021)
- Initial public release. It includes common modules to be consumed by the different Split implementations written in JavaScript. Based on the original JS SDK in the `javascript-client` repository.
- It's designed with a modular approach, with the following goals in mind:
- Dependents should be able to include the modules that are needed for, as an example, a storage.
- Dependents should be able to use the module that's specific for their runtime environment, allowing for better usage of native APIs as well as to build optimizations targeted by each platform.
- Size reduction should be applicable when possible.
- Design should be extensible, specially for modules that act as an orchestrator.
- Code reusability.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@splitsoftware/splitio-commons",
"version": "0.0.1-canary.10",
"version": "0.0.1-beta1",
"description": "Split Javascript SDK common components",
"main": "cjs/index.js",
"module": "esm/index.js",
Expand Down