Skip to content
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

Generalized persistence #903

Merged
merged 23 commits into from
Sep 16, 2019
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
7a21285
persistence initial commit
alexcjohnson Sep 1, 2019
b737a3f
flip the loop in recordUiEdit
alexcjohnson Sep 5, 2019
6509121
clarify persistence getProps usage
alexcjohnson Sep 5, 2019
42428a6
update persistence comment for nested prop IDs
alexcjohnson Sep 5, 2019
78df979
allow multiple pieces of persistence for one prop
alexcjohnson Sep 5, 2019
83b8cd3
fallback if web store isn't available, or is full from the start
alexcjohnson Sep 6, 2019
cb179c9
fix missed props propagation
alexcjohnson Sep 11, 2019
b4ebb51
clean up package.json and upgrade to babel 7
alexcjohnson Sep 11, 2019
3b56686
remove obsolete dash-renderer package test script
alexcjohnson Sep 11, 2019
5ff00cf
unit test (and fix bugs) storage & fallbacks
alexcjohnson Sep 11, 2019
690b0a3
Merge branch 'dev' into persistence
alexcjohnson Sep 11, 2019
3669df6
cleaner error when storage fills up
alexcjohnson Sep 11, 2019
15ca0e5
get rid of no-undefined eslint rule
alexcjohnson Sep 11, 2019
c9230f5
renderer persistence changelog
alexcjohnson Sep 11, 2019
abde83f
integration tests - and a fix - for persistence
alexcjohnson Sep 12, 2019
4b11f07
prevent ambiguous double-installation of the rest of core on CI
alexcjohnson Sep 12, 2019
0626ea9
linux flavor of sed?
alexcjohnson Sep 12, 2019
ba8d5ba
update build to corejs@3
alexcjohnson Sep 13, 2019
09b9393
store different persisted values for each persistence id
alexcjohnson Sep 16, 2019
5fa4d55
more "random" new column name
alexcjohnson Sep 16, 2019
53ab7c5
lint test_persistence
alexcjohnson Sep 16, 2019
118547f
fix unit tests and error handler for multi-ID persistence
alexcjohnson Sep 16, 2019
130a857
Merge branch 'dev' into persistence
alexcjohnson Sep 16, 2019
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
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ jobs:
command: |
sudo pip install --upgrade virtualenv
python -m venv venv || virtualenv venv && . venv/bin/activate
sed -i '' '/dash/d' requires-install.txt
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@byronz as discussed - to prevent the possible double-install of the rest of dash core, since we're going to be building and installing these from specific branches/commits anyway (to resolve the test failures https://github.com/plotly/dash/pull/903/files#r323830675)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🐧

pip install -e . -r requires-install.txt -r requires-dev.txt -r requires-testing.txt --quiet
- save_cache:
key: dep-{{ checksum "ver.txt" }}-{{ checksum "requires-dev.txt" }}-{{ checksum "requires-install.txt" }}-{{ checksum "requires-testing.txt" }}
Expand Down