-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Menu items that open popups and new windows should have ellipsis #4585
Comments
@elebitzero Yeap, agree, I was just thinking about this today as I was testing our 3.6 Snapshot build with your earlier merged changes for the alignment of dialog buttons. I'm wondering on this particular issue if we might use the Unicode ellipsis char and bake this into the menu's that need them via a JS variable?
This way would make translations easier also, since translators would not have to worry about the ellipsis being part of the text string at all. Example: https://github.com/OpenRefine/OpenRefine/blob/master/main/webapp/modules/core/langs/translation-en.json#L521 Maybe we could avoid much backend coding on this if we could, since it should be simply that any frontend framework knows that its particular component item in our UI (jQuery for us on most of this) has a action to present a dialog. Such as Another side issue, I noticed that our Rename column could use some touchup and be converted to a regular dialog. |
@elebitzero Further thoughts, I have seen in some applications that the context of "more" https://fonts.google.com/icons?selected=Material%20Icons%3Amore_horiz%3A which is what the ellipsis represents in many human languages, but sometimes not all of the human languages prefer the ellipsis style for that context of "more". We might further allow the Unicode char choice to switch the Unicode char that is appropriate for that language whenever the user switches to a different language. For example, in many Asian applications, I have seen "more" often represented with the double right chevron (a double From an accessibility standpoint, we might first consult with https://www.w3.org/WAI/standards-guidelines/wcag/ and ask them about that first on what they think? |
Still further, we might avoid iconography completely on this issue and instead consider embold the text for those particular ones, or indent or emboss or glow or highlight or shade the items differently? Still if we do choose iconography, we might place it before the text, rather than afterwards? Notice how the main menu has our |
Thanks for the comments. For menu items which already have ellipsis, the ellipsis is added after translation (localizedText+"..."). I believe this is correct since the ellipsis is a symbol and does not need localization. I'm not familiar with different representations of the ellipsis in other locales in the context of an app menu. For this issue, I am calling out which menu actions are missing a required ellipsis. I was going to issue a PR tomorrow to correct these. I can implement a JS var or function so that the ellipsis is added in one spot. This way, changes can be easily made in the future. |
I noticed that as well, I was going to open another issue about converting the browser popup to a regular dialogue. |
Hey @elebitzero, this is amazing work, thank you so much for this! |
@elebitzero then go ahead with your plan and I'll be happy to review and test your PR on Windows. Thanks so much for working on these issues! |
* Issue #4585 added ellipsis to menu items and updated translation files and JavaScript files * Added /single labels for the common-transform options so menu-edit-cells won't display ellipsis. Cleanup. * Removed ellipsis from the necessary menu items.
commit d6a3e8465bc05bf90a45f3144c2c53f841bf0845 Author: Binita Kumari <78761614+Binita-tech@users.noreply.github.com> Date: Sat Apr 16 01:31:01 2022 +0530 Improved browser launch in Linux distribution (#4706) * fixes #2640 commit 0573be98f488121ea80e79e3cc548ac69bca5b0f Author: Elroy Kanye <elroykanye@gmail.com> Date: Fri Apr 15 19:48:33 2022 +0100 Enhance random number function (#4672) Closes #3143. commit 4e5414fc50804f461239aaeb2f6ec07238b71957 Author: Babi B <babibyoolah@gmail.com> Date: Fri Apr 15 11:06:22 2022 +0100 Improve clustering method documentation; make it skimmable (#4718) * made clustering method document skimmable * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * take out hierarchy, add links to document * took out unnecessary image files * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * added links within the document * capitalization Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * capitalized subheadings * corrected grammatical error * capitalization Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> commit c9c958366a0a306531b6e3880d9b92e2a8d4cc27 Merge: f8fb2ff4c aa777f70b Author: Hosted Weblate <hosted@weblate.org> Date: Fri Apr 15 10:33:18 2022 +0200 Merge branch 'origin/master' into Weblate. commit aa777f70bbbc6b195faa42f07e249f2c44a9efc9 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Wed Apr 13 18:49:34 2022 +0000 Translated using Weblate (Dutch) Currently translated at 55.2% (450 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/nl/ commit f8fb2ff4c031b7889671272cbf7748b73128d122 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Fri Apr 15 10:33:10 2022 +0200 Add specific UI to edit different entity types in Wikibase manifest (#4681) * Distinguish between edits on items and on mediainfo entities with a proper class hierarchy * Introduce class hierarchy for entity edit expressions, to distinguish between various entity types * Update frontend after separation of entities types into different classes * Linting * Fix detection of deleted statements commit b2b3a663472f03365e07ab4c36d1ffa31dd658af Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Apr 15 09:19:09 2022 +0200 build(deps): bump async from 2.6.3 to 2.6.4 in /docs (#4763) Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. - [Release notes](https://github.com/caolan/async/releases) - [Changelog](https://github.com/caolan/async/blob/v2.6.4/CHANGELOG.md) - [Commits](https://github.com/caolan/async/compare/v2.6.3...v2.6.4) --- updated-dependencies: - dependency-name: async dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit d36fab8a86806f8ce3e902549a06bb5049d9ae2f Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Apr 14 23:56:05 2022 -0700 Updated underscore dependency. (#4762) commit dba2b8b1311ce58e98f88d767726955ab098e38b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Apr 13 20:52:39 2022 +0200 build(deps): bump wdtk.version from 0.13.1 to 0.13.2 (#4753) Bumps `wdtk.version` from 0.13.1 to 0.13.2. Updates `wdtk-wikibaseapi` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) Updates `wdtk-datamodel` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) Updates `wdtk-util` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) --- updated-dependencies: - dependency-name: org.wikidata.wdtk:wdtk-wikibaseapi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.wikidata.wdtk:wdtk-datamodel dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.wikidata.wdtk:wdtk-util dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 952cb453080e60b0784049fea6975657c41caee4 Author: Babi B <babibyoolah@gmail.com> Date: Wed Apr 13 15:37:51 2022 +0100 Technical documentation for clustering (#4719) commit 1dcda3c63b24f25afe0a5156eb74cd909901808b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Apr 13 11:02:25 2022 +0200 build(deps): bump async from 3.2.0 to 3.2.3 in /main/tests/cypress (#4750) Bumps [async](https://github.com/caolan/async) from 3.2.0 to 3.2.3. - [Release notes](https://github.com/caolan/async/releases) - [Changelog](https://github.com/caolan/async/blob/master/CHANGELOG.md) - [Commits](https://github.com/caolan/async/compare/v3.2.0...v3.2.3) --- updated-dependencies: - dependency-name: async dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit a9832d25d219c0dc24621bf3f4c8b7bcea77724f Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Wed Apr 13 03:38:19 2022 -0400 Update running.md (#4749) * Update running.md Changing the JVM preferences (arguments) to a table display Space in a JSON array * Also modify in current docs Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 6ac025189dcfd5ec47d19a72ef035546d96ff62b Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Wed Apr 13 00:28:07 2022 -0700 Fixed snapshot builds (attempt 2) (#4748) * Added npm install to snapshot workflow. * Moved npm install command up, and added npm install for the mac build. commit 6b9387f04d8effaa49358677735ee1a4354fb78a Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 23:47:35 2022 +0200 build(deps): bump google-http-client-jackson2 from 1.41.6 to 1.41.7 (#4746) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.6 to 1.41.7. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.6...v1.41.7) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 81de887e34a75d4f744f6b822d9183a84805a5eb Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 23:46:39 2022 +0200 build(deps): bump cypress from 9.5.3 to 9.5.4 in /main/tests/cypress (#4747) Bumps [cypress](https://github.com/cypress-io/cypress) from 9.5.3 to 9.5.4. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - [Commits](https://github.com/cypress-io/cypress/compare/v9.5.3...v9.5.4) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit ce79221f12d33196d0d35a6150d9e29aa76a1e6f Author: MAGEMBE SHARIF <48015736+sherrif10@users.noreply.github.com> Date: Tue Apr 12 19:29:32 2022 +0300 InterruptedException Ignored When Stopping the Servlet (#4734) Fixes #4694. Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 386e1d90428e83cfbaef921753cfbc1c5d46435b Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 14:25:29 2022 +0000 Translated using Weblate (Dutch) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/nl/ commit bd844b224bbf3a78ee41fed6e5e4b90fc69ee56f Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:39:46 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 5.0% (41 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ml/ commit c00c85c7dce66d57c437f19366ed52843ff4c35a Author: Adithya K <adithyak04@gmail.com> Date: Mon Apr 11 13:54:01 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 7.2% (18 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/ml/ commit 1f6625dd7af0689aa54014fed8b6fbc3ead717f1 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:52:26 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 7.2% (18 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/ml/ commit a73b830c95ff412b2fbcbdf0bb7ce26f7ed6834c Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 15:49:22 2022 +0000 Translated using Weblate (Dutch) Currently translated at 53.8% (134 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nl/ commit 4c06a25aaea97587cd8f21e46b15446c12ee60cf Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 13:55:27 2022 +0000 Translated using Weblate (Dutch) Currently translated at 54.8% (447 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/nl/ commit 778a8c42f3e683d9fc8d049148f0516b8212ef60 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 20:04:52 2022 +0000 Translated using Weblate (Norwegian Bokmål) Currently translated at 64.6% (161 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nb_NO/ commit 5b2c9ef3b26823a014e5498e2652db6e858a1a42 Author: MAGEMBE SHARIF <48015736+sherrif10@users.noreply.github.com> Date: Tue Apr 12 13:22:27 2022 +0300 Add Headers Lincense to the project code base (#4736) commit 88c46768dfa796441a62b050cc35b39cb955de15 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 09:51:40 2022 +0200 build(deps-dev): bump eslint in /main/tests/cypress (#4740) Bumps [eslint](https://github.com/eslint/eslint) from 8.12.0 to 8.13.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.12.0...v8.13.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit d0b22c3197840fc35bc92dfd804c82693dfc4a88 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Apr 12 00:07:13 2022 -0700 Added npm install to snapshot workflow. (#4742) commit 8c074ae5a9908519e2f3a4ee7db1b2c8c44b0211 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 11 21:21:03 2022 +0200 build(deps): bump actions/setup-node from 3.1.0 to 3.1.1 (#4739) Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.1.0 to 3.1.1. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.1.0...v3.1.1) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 75f446cfaed00a33cf06d6ee19242b37a92d49a2 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 16:18:07 2022 +0200 Added translation using Weblate (Dutch) commit e31ec961a6c62af4bbd4cd1a816bc32ff8a361d2 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:37:44 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 0.7% (6 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ml/ commit ae12b1396ad13931936eb5532c32f194986b7298 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:22:11 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 44.4% (28 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/ml/ commit 72a0f9f95bca8cd3a4d293cb7f30c095057e8920 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Mon Apr 11 05:43:08 2022 -0700 build(webapp): bump jquery-ui from 1.12.1 to 1.13.1 (#4713) * Upgraded jquery-ui from 1.12.1 to 1.13.1. * Set the defaultCommandTimeout in cypress.json and removed the nodeVersion option which is obsolete and no longer supported. * Fixed a flaky test. commit 6cbced4144964d33205fb775a3b6211fb2e2c001 Author: Elroy Kanye <elroykanye@gmail.com> Date: Mon Apr 11 12:11:10 2022 +0100 set division operator call to return NaN on 0/0 (#4689) * set division operator call to return NaN on 0/0 * adjusted formatting - OperatorCallExpr * add tests for 0/0 division commit 99e357870b3720a3ce6ca9d3c71e4bf9db27363e Merge: 0b7f4302f 8282b727f Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 10:21:31 2022 -0400 Merge pull request #4732 from OpenRefine/antoine2711-contributing-3 Update contributing.md commit 8282b727f762edd6d5dd38150a0cf07e4cf688c8 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 10:09:40 2022 -0400 Update contributing.md Fixing malformed links. commit 0b7f4302f9b1af7e857eae5cd674eaac6935d016 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 09:46:22 2022 -0400 Update contributing.md (#4731) Few mistakes and a link to #maintainer-guidelines commit cc4c2c414cb3a8a66a147bdf5d66965e378c61f8 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 06:31:26 2022 -0400 Update contributing.md for Functional Tests (#4726) * Update contributing.md Changes for Functional Tests. Also, more affirmative about Java test case. * Update docs/versioned_docs/version-3.5/technical-reference/contributing.md * Update contributing.md Changes for Functional Tests. Also, more affirmative about Java test case. * Update docs/docs/technical-reference/contributing.md Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 432f02338d10f75cacc899e47cfe753f1a2b6c14 Merge: 1b02bf452 b64f203cd Author: Hosted Weblate <hosted@weblate.org> Date: Sun Apr 10 10:56:49 2022 +0200 Merge branch 'origin/master' into Weblate. commit 1b02bf45282577a4c968117e5b4b3731f4f32529 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun Apr 10 10:56:43 2022 +0200 build(deps): bump clojure from 1.11.0 to 1.11.1 (#4699) Bumps [clojure](https://github.com/clojure/clojure) from 1.11.0 to 1.11.1. - [Release notes](https://github.com/clojure/clojure/releases) - [Changelog](https://github.com/clojure/clojure/blob/master/changes.md) - [Commits](https://github.com/clojure/clojure/compare/clojure-1.11.0...clojure-1.11.1) --- updated-dependencies: - dependency-name: org.clojure:clojure dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit b64f203cd989b0dc87979045d780d1973ce0a85a Author: 3ole <ole-s@mailbox.org> Date: Fri Apr 8 19:34:47 2022 +0000 Translated using Weblate (German) Currently translated at 99.3% (810 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/de/ commit f82da95708aa4ca46ac96590d2cd3d6dc6378428 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Sun Apr 10 01:09:44 2022 -0700 Improved error handling for pow and exp (#4701) * Removed unneeded null checks from math functions, added test for math functions, and added error messages for pow and exp. * Cleanup. * Cleanup/reformatting. * Cleanup/reformatting. commit e3ac29e59163ca08867d0583c1523258e9521cc8 Author: Thad Guidry <thadguidry@gmail.com> Date: Sun Apr 10 03:05:31 2022 -0500 Clear up some ambiguity in Reconciling with unique ids (#4711) * Clear up some ambiguity in Reconciling with unique ids Adds clarity with a better term of "known ids". * Also improve current docs commit 652575ab6334d5d926d1d4db729b29638778a0f1 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 03:32:05 2022 -0400 Update contributing.md for assignments and Programs (Outreachy & GSoC) (#4725) * Update contributing.md Update contributing to add the notion of Issue assignements. * Update docs/versioned_docs/version-3.5/technical-reference/contributing.md Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 34961169b22a79699fbdf22492c2f78b678df32f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun Apr 10 08:57:22 2022 +0200 build(deps): bump actions/setup-java from 2 to 3 (#4720) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 2 to 3. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/setup-java dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0ba3b924377f051c734c99cb1d8c05b5f5d231a9 Merge: 3d6960912 a20d4f5fd Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Fri Apr 8 10:16:48 2022 +0200 Merge pull request #4714 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit a20d4f5fd5fffaaba8a18db79e7e003e6652a642 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Fri Apr 8 02:07:47 2022 +0000 Translated using Weblate (French) Currently translated at 100.0% (249 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/fr/ commit 5e58df1e89bbabd1b727a3d53ae2269167c09a6c Author: S H <higa432@gmail.com> Date: Fri Apr 8 01:06:26 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/ja/ commit fdd0f11f57ebfc496ec5521327a2eea39cde96fb Author: Isao Matsunami <isao.matsunami@gmail.com> Date: Thu Apr 7 17:18:33 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (815 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ja/ commit 3d6960912f418e4bbee089771b7c9aae3d2177df Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 20:15:42 2022 +0200 build(deps): bump google-http-client-jackson2 from 1.41.5 to 1.41.6 (#4712) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.5 to 1.41.6. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.5...v1.41.6) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit cf52c501db08c464bb6424478b55ce4685ec250c Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 20:13:51 2022 +0200 build(deps): bump jacoco-maven-plugin from 0.8.7 to 0.8.8 (#4700) Bumps [jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.7 to 0.8.8. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.7...v0.8.8) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 35e54fa7ee8fc299dbf245b1e6453e9c852cabdc Author: ComgLq24 <84132969+ComgLq24@users.noreply.github.com> Date: Fri Apr 8 02:12:01 2022 +0800 fix handling oft empty ODS files (#4709) commit f0489975665c535f69d071651f47e9f15a30f717 Author: Elroy Kanye <elroykanye@gmail.com> Date: Thu Apr 7 19:04:52 2022 +0100 update link to get testng (#4688) commit a5e1f358f1ce42619361225969ab75bf5ed1cc00 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 17:42:11 2022 +0200 build(deps): bump maven-clean-plugin from 3.1.0 to 3.2.0 (#4698) Bumps [maven-clean-plugin](https://github.com/apache/maven-clean-plugin) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/apache/maven-clean-plugin/releases) - [Commits](https://github.com/apache/maven-clean-plugin/compare/maven-clean-plugin-3.1.0...maven-clean-plugin-3.2.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-clean-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit f31ac9e205a30a2e9902fb5d75910fcc44e4fbc7 Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Thu Apr 7 18:27:25 2022 +0300 "Reconcile > Use values as identifiers" does not reconcile #4655 #4664 (#4666) * Notification when selecting service * Notice moved to body * fixes 3172-Added a period to the notification message commit 9c5bde002e44e0fee4f7f124ad58d93eb7f57b52 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Apr 7 08:09:25 2022 -0700 Added encoding fix for Commands. (#4710) commit bb765b42b321f35c99b99582bb07b8330cd4954e Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Tue Apr 5 20:56:01 2022 +0300 Fixes #4081 Unreleased Resource: Streams (#4691) * Fixes #4081-Closed the stream resource * #4081-Closed the stream resource after receiving byte[] commit ac1f9eab243a5797b9c339ff93d1441a44478854 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 5 11:50:17 2022 +0200 build(deps-dev): bump eslint in /main/tests/cypress (#4649) Bumps [eslint](https://github.com/eslint/eslint) from 8.11.0 to 8.12.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.11.0...v8.12.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit ff991e57dc4bfcd40a2b7bfb1164240624118c7e Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Tue Apr 5 11:25:23 2022 +0300 Fixes #2316 "Match other cells with same content" keeps appearing as the default choice #2316 (#4687) * Store user preference * Removed updating of DOM on closing recon match dialog , updated global variable name * Fixes #2316-Simplified if else expression commit 78b906540d9a8e90209ad6779c46fe8dfa9bcd7f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 5 10:13:48 2022 +0200 build(deps-dev): bump prettier in /main/tests/cypress (#4696) Bumps [prettier](https://github.com/prettier/prettier) from 2.6.1 to 2.6.2. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.6.1...2.6.2) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 6474416b55a1151a5b32c6a17aa3eb9f2ebd0408 Author: Binita Kumari <78761614+Binita-tech@users.noreply.github.com> Date: Tue Apr 5 13:41:59 2022 +0530 Improvement of grel docs (#4654) commit e80889c42815c8a110e225ed7c7fa3748b9808df Author: Cece <45926850+SIXIN-LI@users.noreply.github.com> Date: Sat Apr 2 22:08:55 2022 -0700 fix OpenRefine#4656 - clarify location of workspace (#4663) commit f09b13636c7aac625bb3fbeaec2e3eacae34eb04 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sun Apr 3 07:08:09 2022 +0200 Add main/webapp/modules/core/3rdparty/ to .gitignore (#4665) commit 46517df86ccc42dca7ad4724be95bd7d0086ec3a Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sun Apr 3 07:07:28 2022 +0200 Add mention of com.google.refine.Refine to our developer docs (#4680) * Update build-test-run.md * Update build-test-run.md commit b5c522eab6ba0eabed5087122820ddad75c6ee80 Author: Shelomi Silva <50749107+shelomi99@users.noreply.github.com> Date: Sun Apr 3 10:35:34 2022 +0530 [SQL Exporter] Substitute invalid characters in column names with underscore (#1940) (#4685) * [SQL Exporter] Substitute invalid characters in column names with underscore (#1940) * Add test case to validate SQL export column names with special characters commit 1ed4aaba92564f395c0a91c12c40725455abcc42 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat Apr 2 13:18:40 2022 +0200 build(deps): bump actions/setup-node from 3.0.0 to 3.1.0 (#4683) Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.0.0 to 3.1.0. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.0.0...v3.1.0) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 7ab6eed6deddf344d5d56ae1aae232de9863d91b Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Fri Apr 1 02:14:07 2022 -0700 Added missing HTML tags. (#4678) commit 440b03b4748219b92b05777b383e1a4b47449674 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Fri Apr 1 02:08:32 2022 -0700 Fixed broken link in wikidata dialog. (#4679) commit 3bf4635f1706dabb70d9a3a5c3ab544564b87b69 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 31 01:30:05 2022 -0700 Changed 'Unselect' and 'De-select' to 'Deselect' and 'Unselect all' to 'Deselect all' (#4671) commit 8c7a6b5eedf774ad1dab5ed1d6cd394b19d862fa Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 31 01:24:51 2022 -0700 Fixed alignment in wikibase dialogs. (#4674) commit a762ce90c766fa03af08178ecd515f136f49be99 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 31 01:22:15 2022 -0700 Removed 4px border from dialogs, and added a header for the dialog in All Columns > Transform... (#4668) commit 499ce64c160bbd3e87fc6f5baef11fe2812dca2b Author: Shriya <93962518+shriyasankhyan@users.noreply.github.com> Date: Wed Mar 30 23:02:09 2022 +0530 Grammatical Error (#4667) commit 4e0cfe5d6c0dc7c0ab704549a647deb307da5548 Author: Cece <45926850+SIXIN-LI@users.noreply.github.com> Date: Wed Mar 30 00:22:19 2022 -0700 update Maven version to 3.8.5 (#4653) fixes #4644 commit c18a362b7a4098a9a7fb0de32c6c93d1667d13e7 Author: Elroy Kanye <elroykanye@gmail.com> Date: Wed Mar 30 08:19:41 2022 +0100 fixes #4640 added example of Regex usage to desc of replace() (#4641) * fixes #4640 added example of Regex usage to desc of replace() * match grel function description with example from docs commit 5bfae756836cb95d8ff75964cf5625ba1872b94b Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Wed Mar 30 00:09:48 2022 -0700 Wikibase dialog buttons (#4630) * Moved login buttons to the dialog footer in relevant dialogs. * Changed back to submit event. Cleanup. commit 2d4e382652ec894ebc28b57b133ce62ce859ff81 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 29 23:38:21 2022 -0700 Fixed dialog headers. (#4661) commit b47d250e6369bd1fc98cce1a054e8092702a7d9b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 21:56:17 2022 +0200 build(deps): bump cypress from 9.5.2 to 9.5.3 in /main/tests/cypress (#4660) Bumps [cypress](https://github.com/cypress-io/cypress) from 9.5.2 to 9.5.3. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - [Commits](https://github.com/cypress-io/cypress/compare/v9.5.2...v9.5.3) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 054a3459257d4ecbcbc7956f58a24fdc4cffa93b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 21:53:50 2022 +0200 build(deps): bump maven-shade-plugin from 3.2.4 to 3.3.0 (#4658) Bumps [maven-shade-plugin](https://github.com/apache/maven-shade-plugin) from 3.2.4 to 3.3.0. - [Release notes](https://github.com/apache/maven-shade-plugin/releases) - [Commits](https://github.com/apache/maven-shade-plugin/compare/maven-shade-plugin-3.2.4...maven-shade-plugin-3.3.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-shade-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 4ef8a273f579eb96888458ce5d9b47764af2fb7c Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 21:38:36 2022 +0200 build(deps): bump google-api-services-sheets (#4659) Bumps google-api-services-sheets from v4-rev20220308-1.32.1 to v4-rev20220322-1.32.1. --- updated-dependencies: - dependency-name: com.google.apis:google-api-services-sheets dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 2dafb62d4fd4de539acf1fdd54c541ad2dea062d Author: Raphael Das Gupta <github.com@raphael.dasgupta.ch> Date: Tue Mar 29 16:00:09 2022 +0200 fix typo in "reconciliation" (#4657) * fix typo in "reconciliation" * Port to 3.6 docs Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 3cbb5b143df3caa6e50d5493a34cee3f12cbcf77 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 29 01:23:32 2022 -0700 Redirect to wiki for Google Export options (#4635) * Added redirect to wiki for Google Export options if credentials are undefined. * Remove check for host, only rely on CLIENT_ID and CLIENT_SECRET being empty Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 1ef305152ffe755c207a342488d94fe17b953518 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 29 01:22:12 2022 -0700 Removed colons from labels that don't need them (#4643) * Removed : and ... from labels that don't need them * Updated tests and removed trailing whitespace. * Cleanup. Closes #4639 commit dddced56e1ac744d0674d9e5a157135cce452d05 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 09:56:57 2022 +0200 build(deps): bump plist from 3.0.4 to 3.0.5 in /main/tests/cypress (#4650) Bumps [plist](https://github.com/TooTallNate/node-plist) from 3.0.4 to 3.0.5. - [Release notes](https://github.com/TooTallNate/node-plist/releases) - [Changelog](https://github.com/TooTallNate/plist.js/blob/master/History.md) - [Commits](https://github.com/TooTallNate/node-plist/commits) --- updated-dependencies: - dependency-name: plist dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 6d26e1b931c92c8e52efe753f532c7cb73d4b461 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Mar 28 21:42:58 2022 +0200 build(deps): bump jmh.version from 1.34 to 1.35 (#4647) Bumps `jmh.version` from 1.34 to 1.35. Updates `jmh-core` from 1.34 to 1.35 Updates `jmh-generator-annprocess` from 1.34 to 1.35 --- updated-dependencies: - dependency-name: org.openjdk.jmh:jmh-core dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.openjdk.jmh:jmh-generator-annprocess dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit fad3c21e4f177ef22088c0c7aa9a391a2e2d6627 Author: Elroy Kanye <elroykanye@gmail.com> Date: Mon Mar 28 06:17:21 2022 +0100 fixes #3133 modify default return of call() for ToString to state for Number format (#4642) commit 342f5c3fe249681f243bcbe7b5e667ed8830b94c Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Mon Mar 28 07:05:49 2022 +0200 Add npm instructions to 3.5 release It was not actually required in 3.5 but that is what the website is currently showing and we have a flock of Outreachy applicants trying to setup the project. commit 083c7feba3b84d97ec884f3c2b38b6f1f0249640 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Mar 25 21:07:51 2022 +0100 build(deps-dev): bump prettier in /main/tests/cypress (#4638) Bumps [prettier](https://github.com/prettier/prettier) from 2.6.0 to 2.6.1. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.6.0...2.6.1) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 9394514967e998d2c97a63a01a1d901854f1a5de Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Mar 25 21:07:18 2022 +0100 build(deps): bump google-http-client-jackson2 from 1.41.4 to 1.41.5 (#4637) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.4 to 1.41.5. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.4...v1.41.5) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 1169c2e26db5fcdf8f666d5fd912f936e7978e85 Author: khadijm <88087734+khadijm@users.noreply.github.com> Date: Fri Mar 25 09:55:46 2022 +0100 disable spellcheck on input text type (#4636) Closes #3004. commit 2e84edfab19885f6d1a72e9a6b0844d78b46fd42 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 24 17:10:50 2022 +0100 build(deps): bump minimist from 1.2.5 to 1.2.6 in /docs (#4634) Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) --- updated-dependencies: - dependency-name: minimist dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 5c07bc39917d19a9c69d800a53d75c813291591a Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 24 17:10:25 2022 +0100 build(deps): bump minimist from 1.2.5 to 1.2.6 in /main/tests/cypress (#4633) Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) --- updated-dependencies: - dependency-name: minimist dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 39f72d74e099a3ab5a42a63d4216de6e7d85cfd6 Merge: aeb0bb619 ca6dcafc9 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Thu Mar 24 14:30:43 2022 +0100 Merge pull request #4632 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit ca6dcafc9dca6f340c42cf83cb173899c12a5e7f Merge: 04cc2931c aeb0bb619 Author: Hosted Weblate <hosted@weblate.org> Date: Thu Mar 24 12:58:29 2022 +0100 Merge remote-tracking branch 'origin/master' commit 04cc2931c335aaa30f3a91144cc4ea201b866795 Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 07:27:27 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 3.6% (9 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/zh_Hans/ commit 690f32732011b6db5a87d909f8d89c3e8ef8c79d Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 07:04:15 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (46 of 46 strings) Translation: OpenRefine/gdata Translate-URL: https://hosted.weblate.org/projects/openrefine/gdata/zh_Hans/ commit 20baed02df650b3eb16e1e9f9d721568b646c81c Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 05:51:29 2022 +0000 Translated using Weblate (Chinese (Traditional)) Currently translated at 9.3% (75 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/zh_Hant/ commit 8a07f1fb266ae00939dcf93a8d48bd0e4df3cf2d Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 06:52:33 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/zh_Hans/ commit bf243cdfb916d8ccc6012b2c0528efa3c2f291ba Author: Aftabuzzaman <Leemon432@gmail.com> Date: Mon Mar 21 22:44:34 2022 +0000 Translated using Weblate (Bengali) Currently translated at 10.0% (80 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/bn/ commit 73d3ba3a6cf506e5a1eb1a0c97b787e28cf77547 Author: MarcoDiazGarcia <marco.diaz.garcia@mni.thm.de> Date: Sat Mar 19 09:43:42 2022 +0000 Translated using Weblate (German) Currently translated at 90.6% (725 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/de/ commit 7328056def1b6f942fc5975cf2c46c6bc8e7ac11 Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 06:02:27 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 78.7% (630 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/zh_Hans/ commit aeb0bb619aec17333f9182bc531f4d642294c6ec Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 24 04:58:14 2022 -0700 Frontend dependency management part II (#4621) Part II for #2423. Partial fix for #3958. commit 463a2c4e7bca094af7b0a49a911c67df28e395ff Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 08:26:23 2022 +0100 Added translation using Weblate (Chinese (Simplified)) commit 264c9c09749488ec640f4018214a87ab92779677 Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 08:03:02 2022 +0100 Added translation using Weblate (Chinese (Simplified)) commit 2e388cfe3c6a46d3a1ef4abfce682712a5b26129 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 22 19:35:32 2022 +0100 build(deps): bump clojure from 1.10.3 to 1.11.0 (#4629) Bumps [clojure](https://github.com/clojure/clojure) from 1.10.3 to 1.11.0. - [Release notes](https://github.com/clojure/clojure/releases) - [Changelog](https://github.com/clojure/clojure/blob/master/changes.md) - [Commits](https://github.com/clojure/clojure/compare/clojure-1.10.3...clojure-1.11.0) --- updated-dependencies: - dependency-name: org.clojure:clojure dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 85b5ee495f1b384007c9116548f67bd59b4cd718 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 22 09:00:37 2022 +0100 build(deps): bump poi.version from 5.2.1 to 5.2.2 (#4627) Bumps `poi.version` from 5.2.1 to 5.2.2. Updates `poi` from 5.2.1 to 5.2.2 Updates `poi-ooxml` from 5.2.1 to 5.2.2 --- updated-dependencies: - dependency-name: org.apache.poi:poi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.apache.poi:poi-ooxml dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0d92f1de410d9c67cccb800969661fff23750e44 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 22 09:00:00 2022 +0100 build(deps): bump actions/cache from 2.1.7 to 3 (#4626) Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.7...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 98c1785edd3e7cd3b0185ab4e5a8beb130c3c6c4 Merge: 5d7720678 5d40f47e6 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Sat Mar 19 16:28:01 2022 +0100 Merge pull request #4620 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 5d40f47e61c3cea7dc4fc2ea840b1e456fd4d04d Merge: 705730c09 5d7720678 Author: Hosted Weblate <hosted@weblate.org> Date: Sat Mar 19 10:06:23 2022 +0100 Merge remote-tracking branch 'origin/master' commit 5d7720678d49139831e2b55ab4b0ec95560ff33c Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sat Mar 19 10:06:17 2022 +0100 Update Wikidata-Toolkit to 0.13.1 (#4594) commit 705730c09d950e656defd25f889d8426e6cdaf69 Merge: 134eda026 b50244e9c Author: Hosted Weblate <hosted@weblate.org> Date: Sat Mar 19 09:45:21 2022 +0100 Merge remote-tracking branch 'origin/master' commit b50244e9c614e9a7b7d581094bfe2b4f400a7f68 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sat Mar 19 09:45:15 2022 +0100 Set more restrictive file permissions on workspace.json. Fixes #4600. (#4601) commit 134eda026c17d44a780aa83157f22624019f3d0f Merge: b097aced8 2cbdd6867 Author: Hosted Weblate <hosted@weblate.org> Date: Sat Mar 19 09:07:19 2022 +0100 Merge remote-tracking branch 'origin/master' commit 2cbdd6867675466471d65944d9e40b14864985aa Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Sat Mar 19 01:07:13 2022 -0700 Added spacing between ok/cancel buttons. (#4623) commit b097aced8462317ebe539e9a8cf4b68ad053581e Author: G T <giuliotura@gmail.com> Date: Thu Mar 17 20:51:33 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (800 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit ebd3c8f39ee0367acbc1ff48ccb9c1cfae003aa8 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Wed Mar 16 18:47:17 2022 +0000 Translated using Weblate (Dutch) Currently translated at 46.9% (117 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nl/ commit 818a1362be612662d23f14bd36eea0433b6c97ee Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 16 13:30:51 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (249 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/it/ commit b3f533bcf1ffc78626ea107ad82d79a2786d068d Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 16 13:48:09 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (800 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit 7ccdce9ae2c37990d41fe035b81899f044e4ad5f Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Wed Mar 16 15:07:59 2022 +0000 Translated using Weblate (French) Currently translated at 99.5% (796 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/fr/ commit 442d80fa21c96cba5297356b161fc73fb85dadcb Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 17 08:41:32 2022 +0100 build(deps): bump google-api-services-sheets (#4616) Bumps google-api-services-sheets from v4-rev20220221-1.32.1 to v4-rev20220308-1.32.1. --- updated-dependencies: - dependency-name: com.google.apis:google-api-services-sheets dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0d0579a19c76b85e9b1aa7b601b6c8c22bfbb220 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 17 08:29:50 2022 +0100 build(deps-dev): bump prettier in /main/tests/cypress (#4619) Bumps [prettier](https://github.com/prettier/prettier) from 2.5.1 to 2.6.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.5.1...2.6.0) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 20c0e2f6c352100d00c627afc17abbac0495d1a2 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Wed Mar 16 07:08:47 2022 -0700 Frontend dependency management (#4618) * Added package.json. For #2423. commit 0526ab8ca1a1f8efbce5c13d94dec380bc0c8de0 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 15 23:08:03 2022 +0100 build(deps): bump cypress from 9.5.1 to 9.5.2 in /main/tests/cypress (#4617) Bumps [cypress](https://github.com/cypress-io/cypress) from 9.5.1 to 9.5.2. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - [Commits](https://github.com/cypress-io/cypress/compare/v9.5.1...v9.5.2) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 3f33363fecb84bb8cff5cd46150f4300a76007d5 Merge: b02c0fbdf 993abfffe Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Tue Mar 15 18:28:17 2022 +0100 Merge pull request #4615 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 993abfffe68adbe2b52af4677f572536f4795215 Merge: d969fa1e2 b02c0fbdf Author: Hosted Weblate <hosted@weblate.org> Date: Tue Mar 15 11:11:27 2022 +0100 Merge remote-tracking branch 'origin/master' commit d969fa1e2532063771dc8bc7520cc1a4b44be6da Author: Luca Martinelli <sannita@gmail.com> Date: Mon Mar 14 14:15:22 2022 +0000 Translated using Weblate (Italian) Currently translated at 88.3% (220 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/it/ commit 547fa91366496dc766282bdb28107ba540f4fd33 Author: Luca Martinelli <sannita@gmail.com> Date: Mon Mar 14 14:07:47 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (799 of 799 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit 73ce3cc86e02bf199155ee1fbbe57b450523158f Author: Eihel <ehmworms@hotmail.com> Date: Mon Mar 14 07:04:32 2022 +0000 Translated using Weblate (French) Currently translated at 99.6% (796 of 799 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/fr/ commit b02c0fbdf63a5854b96126fca12d4080a4acd734 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 15 03:11:20 2022 -0700 Add URL remove button (#4609) * Changed min-width to width in the dialog-frame. * Added a trashcan button to remove URL rows after the first row. * Made "Remove this row" tooltip localized text, cleanup. Closes #4606 commit 89eda70f88df55ef7614628b0049ab19a76a280d Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 15 11:08:51 2022 +0100 build(deps-dev): bump eslint in /main/tests/cypress (#4614) Bumps [eslint](https://github.com/eslint/eslint) from 8.10.0 to 8.11.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.10.0...v8.11.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 253b1eab70a93570eac27fae5fb604d122031c4f Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Mon Mar 14 00:07:27 2022 -0700 Edit project tags tooltip (#4613) * Updated command line options documentation * Changed min-width to width in the dialog-frame. * Removed the edit tags tooltip from tags. commit 9d900105ceebe947578367e463a2e0faedee448c Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Sun Mar 13 23:42:06 2022 -0700 Validation of all URLs in URL import (#4605) * Added validation for multiple urls. * Cleanup. * Removed code that disables blank URL rows. commit 864ac30b86a4051b994f9ba6e5fc1a8598f88963 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat Mar 12 07:59:26 2022 +0100 build(deps): bump maven-compiler-plugin from 3.10.0 to 3.10.1 (#4612) Bumps [maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.10.0 to 3.10.1. - [Release notes](https://github.com/apache/maven-compiler-plugin/releases) - [Commits](https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.10.0...maven-compiler-plugin-3.10.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-compiler-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 09f9621e2b0a2b0a6672f27821596738858ed3aa Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Mar 11 21:52:12 2022 +0100 build(deps): bump maven-dependency-plugin from 3.2.0 to 3.3.0 (#4611) Bumps [maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) from 3.2.0 to 3.3.0. - [Release notes](https://github.com/apache/maven-dependency-plugin/releases) - [Commits](https://github.com/apache/maven-dependency-plugin/compare/maven-dependency-plugin-3.2.0...maven-dependency-plugin-3.3.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-dependency-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 29fa9aa1e8e8cd1a70342a89d4a85b1129173c28 Merge: 74664832d 4fe7855b1 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Fri Mar 11 17:00:30 2022 +0100 Merge pull request #4610 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 4fe7855b1c82cc5c92ac208283b6dc3a330981c8 Author: Luca Martinelli <sannita@gmail.com> Date: Thu Mar 10 14:43:48 2022 +0000 Translated using Weblate (Italian) Currently translated at 62.2% (155 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/it/ commit a44c1db3f2c639c485e2ad4f500b528d84843b26 Author: Luca Martinelli <sannita@gmail.com> Date: Thu Mar 10 14:15:47 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (797 of 797 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit 74664832d1291a7dc25b156d75998c1501929786 Author: Thad Guidry <thadguidry@gmail.com> Date: Wed Mar 9 23:23:47 2022 -0600 Update memory allocation steps for Mac (#4604) commit 1ccdf5c12926ad3b7a1eecbaca40691a67aa948a Merge: ee3f71d05 894fc5ba9 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Wed Mar 9 17:41:49 2022 +0100 Merge pull request #4599 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 894fc5ba99d608a7f4231fd062d1834495a50e3b Merge: 6bc9846f1 ee3f71d05 Author: Hosted Weblate <hosted@weblate.org> Date: Wed Mar 9 16:09:36 2022 +0100 Merge remote-tracking branch 'origin/master' commit 6bc9846f1e0334a9a5928ee5b1ee90b2aa119c87 Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 9 14:10:47 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (46 of 46 strings) Translation: OpenRefine/gdata Translate-URL: https://hosted.weblate.org/projects/openrefine/gdata/it/ commit 84738c8854b42161b46e3b294ee8025e6263f814 Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 9 14:15:04 2022 +0000 Translated using Weblate (Italian) Currently translated at 91.9% (733 of 797 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit ee3f71d055e14549885340577405d36abd022141 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Wed Mar 9 16:09:13 2022 +0100 Remove codesigning while notarization does not work, for #4580 #4568 commit 66fdcdc2613c886e050122b36a1a5a1962f422f1 Merge: 5297061b7 022664d89 Author: Hosted Weblate <hosted@weblate.org> Date: Wed Mar 9 08:11:08 2022 +0100 Merge remote-tracking branch 'origin/master' commit 022664d894eddefa6958612027b8d3bf94340c41 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Mar 9 08:11:04 2022 +0100 build(deps): bump jackson.version from 2.13.1 to 2.13.2 (#4596) Bumps `jackson.version` from 2.13.1 to 2.13.2. Updates `jackson-databind` from 2.13.1 to 2.13.2 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Updates `jackson-annotations` from 2.13.1 to 2.13.2 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Updates `jackson-core` from 2.13.1 to 2.13.2 - [Release notes](https://github.com/FasterXML/jackson-core/releases) - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.13.1...jackson-core-2.13.2) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-annotations dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 5297061b7a8872a29c15af55468e16688d74cc3f Merge: 33c772257 b79cb56ed Author: Hosted Weblate <hosted@weblate.org> Date: Wed Mar 9 08:07:53 2022 +0100 Merge remote-tracking branch 'origin/master' commit b79cb56ed72bc58be621a56ffb2ca3e6011bbfaa Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 8 23:07:47 2022 -0800 Rename column popup (#4597) * Replaced rename column browser popup with regular dialog. Closes #4590. * Updated test for rename column and made ok and cancel buttons use localized text. * Added Autofocus for input box. commit 33c7722576cdc023578a37952b0b281b997509e4 Author: Luca Martinelli <sannita@gmail.com> Date: Tue Mar 8 19:51:32 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/it/ commit d49237381db8e7a32e254b430eef2e27b0881d42 Author: Isao Matsunami <isao.matsunami@gmail.com> Date: Tue Mar 8 05:58:40 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (797 of 797 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ja/ commit 943bf3721173f642d819d0d647c95bd83aaee884 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 8 20:07:47 2022 +0100 build(deps): bump mockito-core from 4.3.1 to 4.4.0 (#4598) Bumps [mockito-core](https://github.com/mockito/mockito) from 4.3.1 to 4.4.0. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v4.3.1...v4.4.0) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit b9f9beee857fa78dc987ae8611a2f397ca1093fd Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Mon Mar 7 01:19:41 2022 -0800 Menu items ellipsis (#4591) * Issue #4585 added ellipsis to menu items and updated translation files and JavaScript files * Added /single labels for the common-transform options so menu-edit-cells won't display ellipsis. Cleanup. * Removed ellipsis from the necessary menu items. commit 7aafca318794b12deec8541774d4865ccdefde54 Merge: c225ef9b3 21b4e33c2 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Sun Mar 6 19:27:35 2022 +0100 Merge pull request #4595 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 21b4e33c2d2b90fa95a5ab340ee916c819caad0e Author: M…
commit d6a3e8465bc05bf90a45f3144c2c53f841bf0845 Author: Binita Kumari <78761614+Binita-tech@users.noreply.github.com> Date: Sat Apr 16 01:31:01 2022 +0530 Improved browser launch in Linux distribution (#4706) * fixes #2640 commit 0573be98f488121ea80e79e3cc548ac69bca5b0f Author: Elroy Kanye <elroykanye@gmail.com> Date: Fri Apr 15 19:48:33 2022 +0100 Enhance random number function (#4672) Closes #3143. commit 4e5414fc50804f461239aaeb2f6ec07238b71957 Author: Babi B <babibyoolah@gmail.com> Date: Fri Apr 15 11:06:22 2022 +0100 Improve clustering method documentation; make it skimmable (#4718) * made clustering method document skimmable * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * take out hierarchy, add links to document * took out unnecessary image files * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * added links within the document * capitalization Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * capitalized subheadings * corrected grammatical error * capitalization Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> commit c9c958366a0a306531b6e3880d9b92e2a8d4cc27 Merge: f8fb2ff4c aa777f70b Author: Hosted Weblate <hosted@weblate.org> Date: Fri Apr 15 10:33:18 2022 +0200 Merge branch 'origin/master' into Weblate. commit aa777f70bbbc6b195faa42f07e249f2c44a9efc9 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Wed Apr 13 18:49:34 2022 +0000 Translated using Weblate (Dutch) Currently translated at 55.2% (450 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/nl/ commit f8fb2ff4c031b7889671272cbf7748b73128d122 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Fri Apr 15 10:33:10 2022 +0200 Add specific UI to edit different entity types in Wikibase manifest (#4681) * Distinguish between edits on items and on mediainfo entities with a proper class hierarchy * Introduce class hierarchy for entity edit expressions, to distinguish between various entity types * Update frontend after separation of entities types into different classes * Linting * Fix detection of deleted statements commit b2b3a663472f03365e07ab4c36d1ffa31dd658af Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Apr 15 09:19:09 2022 +0200 build(deps): bump async from 2.6.3 to 2.6.4 in /docs (#4763) Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. - [Release notes](https://github.com/caolan/async/releases) - [Changelog](https://github.com/caolan/async/blob/v2.6.4/CHANGELOG.md) - [Commits](https://github.com/caolan/async/compare/v2.6.3...v2.6.4) --- updated-dependencies: - dependency-name: async dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit d36fab8a86806f8ce3e902549a06bb5049d9ae2f Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Apr 14 23:56:05 2022 -0700 Updated underscore dependency. (#4762) commit dba2b8b1311ce58e98f88d767726955ab098e38b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Apr 13 20:52:39 2022 +0200 build(deps): bump wdtk.version from 0.13.1 to 0.13.2 (#4753) Bumps `wdtk.version` from 0.13.1 to 0.13.2. Updates `wdtk-wikibaseapi` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) Updates `wdtk-datamodel` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) Updates `wdtk-util` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) --- updated-dependencies: - dependency-name: org.wikidata.wdtk:wdtk-wikibaseapi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.wikidata.wdtk:wdtk-datamodel dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.wikidata.wdtk:wdtk-util dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 952cb453080e60b0784049fea6975657c41caee4 Author: Babi B <babibyoolah@gmail.com> Date: Wed Apr 13 15:37:51 2022 +0100 Technical documentation for clustering (#4719) commit 1dcda3c63b24f25afe0a5156eb74cd909901808b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Apr 13 11:02:25 2022 +0200 build(deps): bump async from 3.2.0 to 3.2.3 in /main/tests/cypress (#4750) Bumps [async](https://github.com/caolan/async) from 3.2.0 to 3.2.3. - [Release notes](https://github.com/caolan/async/releases) - [Changelog](https://github.com/caolan/async/blob/master/CHANGELOG.md) - [Commits](https://github.com/caolan/async/compare/v3.2.0...v3.2.3) --- updated-dependencies: - dependency-name: async dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit a9832d25d219c0dc24621bf3f4c8b7bcea77724f Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Wed Apr 13 03:38:19 2022 -0400 Update running.md (#4749) * Update running.md Changing the JVM preferences (arguments) to a table display Space in a JSON array * Also modify in current docs Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 6ac025189dcfd5ec47d19a72ef035546d96ff62b Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Wed Apr 13 00:28:07 2022 -0700 Fixed snapshot builds (attempt 2) (#4748) * Added npm install to snapshot workflow. * Moved npm install command up, and added npm install for the mac build. commit 6b9387f04d8effaa49358677735ee1a4354fb78a Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 23:47:35 2022 +0200 build(deps): bump google-http-client-jackson2 from 1.41.6 to 1.41.7 (#4746) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.6 to 1.41.7. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.6...v1.41.7) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 81de887e34a75d4f744f6b822d9183a84805a5eb Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 23:46:39 2022 +0200 build(deps): bump cypress from 9.5.3 to 9.5.4 in /main/tests/cypress (#4747) Bumps [cypress](https://github.com/cypress-io/cypress) from 9.5.3 to 9.5.4. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - [Commits](https://github.com/cypress-io/cypress/compare/v9.5.3...v9.5.4) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit ce79221f12d33196d0d35a6150d9e29aa76a1e6f Author: MAGEMBE SHARIF <48015736+sherrif10@users.noreply.github.com> Date: Tue Apr 12 19:29:32 2022 +0300 InterruptedException Ignored When Stopping the Servlet (#4734) Fixes #4694. Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 386e1d90428e83cfbaef921753cfbc1c5d46435b Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 14:25:29 2022 +0000 Translated using Weblate (Dutch) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/nl/ commit bd844b224bbf3a78ee41fed6e5e4b90fc69ee56f Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:39:46 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 5.0% (41 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ml/ commit c00c85c7dce66d57c437f19366ed52843ff4c35a Author: Adithya K <adithyak04@gmail.com> Date: Mon Apr 11 13:54:01 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 7.2% (18 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/ml/ commit 1f6625dd7af0689aa54014fed8b6fbc3ead717f1 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:52:26 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 7.2% (18 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/ml/ commit a73b830c95ff412b2fbcbdf0bb7ce26f7ed6834c Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 15:49:22 2022 +0000 Translated using Weblate (Dutch) Currently translated at 53.8% (134 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nl/ commit 4c06a25aaea97587cd8f21e46b15446c12ee60cf Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 13:55:27 2022 +0000 Translated using Weblate (Dutch) Currently translated at 54.8% (447 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/nl/ commit 778a8c42f3e683d9fc8d049148f0516b8212ef60 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 20:04:52 2022 +0000 Translated using Weblate (Norwegian Bokmål) Currently translated at 64.6% (161 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nb_NO/ commit 5b2c9ef3b26823a014e5498e2652db6e858a1a42 Author: MAGEMBE SHARIF <48015736+sherrif10@users.noreply.github.com> Date: Tue Apr 12 13:22:27 2022 +0300 Add Headers Lincense to the project code base (#4736) commit 88c46768dfa796441a62b050cc35b39cb955de15 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 09:51:40 2022 +0200 build(deps-dev): bump eslint in /main/tests/cypress (#4740) Bumps [eslint](https://github.com/eslint/eslint) from 8.12.0 to 8.13.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.12.0...v8.13.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit d0b22c3197840fc35bc92dfd804c82693dfc4a88 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Apr 12 00:07:13 2022 -0700 Added npm install to snapshot workflow. (#4742) commit 8c074ae5a9908519e2f3a4ee7db1b2c8c44b0211 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 11 21:21:03 2022 +0200 build(deps): bump actions/setup-node from 3.1.0 to 3.1.1 (#4739) Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.1.0 to 3.1.1. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.1.0...v3.1.1) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 75f446cfaed00a33cf06d6ee19242b37a92d49a2 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 16:18:07 2022 +0200 Added translation using Weblate (Dutch) commit e31ec961a6c62af4bbd4cd1a816bc32ff8a361d2 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:37:44 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 0.7% (6 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ml/ commit ae12b1396ad13931936eb5532c32f194986b7298 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:22:11 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 44.4% (28 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/ml/ commit 72a0f9f95bca8cd3a4d293cb7f30c095057e8920 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Mon Apr 11 05:43:08 2022 -0700 build(webapp): bump jquery-ui from 1.12.1 to 1.13.1 (#4713) * Upgraded jquery-ui from 1.12.1 to 1.13.1. * Set the defaultCommandTimeout in cypress.json and removed the nodeVersion option which is obsolete and no longer supported. * Fixed a flaky test. commit 6cbced4144964d33205fb775a3b6211fb2e2c001 Author: Elroy Kanye <elroykanye@gmail.com> Date: Mon Apr 11 12:11:10 2022 +0100 set division operator call to return NaN on 0/0 (#4689) * set division operator call to return NaN on 0/0 * adjusted formatting - OperatorCallExpr * add tests for 0/0 division commit 99e357870b3720a3ce6ca9d3c71e4bf9db27363e Merge: 0b7f4302f 8282b727f Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 10:21:31 2022 -0400 Merge pull request #4732 from OpenRefine/antoine2711-contributing-3 Update contributing.md commit 8282b727f762edd6d5dd38150a0cf07e4cf688c8 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 10:09:40 2022 -0400 Update contributing.md Fixing malformed links. commit 0b7f4302f9b1af7e857eae5cd674eaac6935d016 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 09:46:22 2022 -0400 Update contributing.md (#4731) Few mistakes and a link to #maintainer-guidelines commit cc4c2c414cb3a8a66a147bdf5d66965e378c61f8 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 06:31:26 2022 -0400 Update contributing.md for Functional Tests (#4726) * Update contributing.md Changes for Functional Tests. Also, more affirmative about Java test case. * Update docs/versioned_docs/version-3.5/technical-reference/contributing.md * Update contributing.md Changes for Functional Tests. Also, more affirmative about Java test case. * Update docs/docs/technical-reference/contributing.md Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 432f02338d10f75cacc899e47cfe753f1a2b6c14 Merge: 1b02bf452 b64f203cd Author: Hosted Weblate <hosted@weblate.org> Date: Sun Apr 10 10:56:49 2022 +0200 Merge branch 'origin/master' into Weblate. commit 1b02bf45282577a4c968117e5b4b3731f4f32529 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun Apr 10 10:56:43 2022 +0200 build(deps): bump clojure from 1.11.0 to 1.11.1 (#4699) Bumps [clojure](https://github.com/clojure/clojure) from 1.11.0 to 1.11.1. - [Release notes](https://github.com/clojure/clojure/releases) - [Changelog](https://github.com/clojure/clojure/blob/master/changes.md) - [Commits](https://github.com/clojure/clojure/compare/clojure-1.11.0...clojure-1.11.1) --- updated-dependencies: - dependency-name: org.clojure:clojure dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit b64f203cd989b0dc87979045d780d1973ce0a85a Author: 3ole <ole-s@mailbox.org> Date: Fri Apr 8 19:34:47 2022 +0000 Translated using Weblate (German) Currently translated at 99.3% (810 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/de/ commit f82da95708aa4ca46ac96590d2cd3d6dc6378428 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Sun Apr 10 01:09:44 2022 -0700 Improved error handling for pow and exp (#4701) * Removed unneeded null checks from math functions, added test for math functions, and added error messages for pow and exp. * Cleanup. * Cleanup/reformatting. * Cleanup/reformatting. commit e3ac29e59163ca08867d0583c1523258e9521cc8 Author: Thad Guidry <thadguidry@gmail.com> Date: Sun Apr 10 03:05:31 2022 -0500 Clear up some ambiguity in Reconciling with unique ids (#4711) * Clear up some ambiguity in Reconciling with unique ids Adds clarity with a better term of "known ids". * Also improve current docs commit 652575ab6334d5d926d1d4db729b29638778a0f1 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 03:32:05 2022 -0400 Update contributing.md for assignments and Programs (Outreachy & GSoC) (#4725) * Update contributing.md Update contributing to add the notion of Issue assignements. * Update docs/versioned_docs/version-3.5/technical-reference/contributing.md Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 34961169b22a79699fbdf22492c2f78b678df32f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun Apr 10 08:57:22 2022 +0200 build(deps): bump actions/setup-java from 2 to 3 (#4720) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 2 to 3. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/setup-java dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0ba3b924377f051c734c99cb1d8c05b5f5d231a9 Merge: 3d6960912 a20d4f5fd Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Fri Apr 8 10:16:48 2022 +0200 Merge pull request #4714 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit a20d4f5fd5fffaaba8a18db79e7e003e6652a642 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Fri Apr 8 02:07:47 2022 +0000 Translated using Weblate (French) Currently translated at 100.0% (249 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/fr/ commit 5e58df1e89bbabd1b727a3d53ae2269167c09a6c Author: S H <higa432@gmail.com> Date: Fri Apr 8 01:06:26 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/ja/ commit fdd0f11f57ebfc496ec5521327a2eea39cde96fb Author: Isao Matsunami <isao.matsunami@gmail.com> Date: Thu Apr 7 17:18:33 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (815 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ja/ commit 3d6960912f418e4bbee089771b7c9aae3d2177df Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 20:15:42 2022 +0200 build(deps): bump google-http-client-jackson2 from 1.41.5 to 1.41.6 (#4712) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.5 to 1.41.6. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.5...v1.41.6) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit cf52c501db08c464bb6424478b55ce4685ec250c Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 20:13:51 2022 +0200 build(deps): bump jacoco-maven-plugin from 0.8.7 to 0.8.8 (#4700) Bumps [jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.7 to 0.8.8. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.7...v0.8.8) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 35e54fa7ee8fc299dbf245b1e6453e9c852cabdc Author: ComgLq24 <84132969+ComgLq24@users.noreply.github.com> Date: Fri Apr 8 02:12:01 2022 +0800 fix handling oft empty ODS files (#4709) commit f0489975665c535f69d071651f47e9f15a30f717 Author: Elroy Kanye <elroykanye@gmail.com> Date: Thu Apr 7 19:04:52 2022 +0100 update link to get testng (#4688) commit a5e1f358f1ce42619361225969ab75bf5ed1cc00 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 17:42:11 2022 +0200 build(deps): bump maven-clean-plugin from 3.1.0 to 3.2.0 (#4698) Bumps [maven-clean-plugin](https://github.com/apache/maven-clean-plugin) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/apache/maven-clean-plugin/releases) - [Commits](https://github.com/apache/maven-clean-plugin/compare/maven-clean-plugin-3.1.0...maven-clean-plugin-3.2.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-clean-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit f31ac9e205a30a2e9902fb5d75910fcc44e4fbc7 Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Thu Apr 7 18:27:25 2022 +0300 "Reconcile > Use values as identifiers" does not reconcile #4655 #4664 (#4666) * Notification when selecting service * Notice moved to body * fixes 3172-Added a period to the notification message commit 9c5bde002e44e0fee4f7f124ad58d93eb7f57b52 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Apr 7 08:09:25 2022 -0700 Added encoding fix for Commands. (#4710) commit bb765b42b321f35c99b99582bb07b8330cd4954e Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Tue Apr 5 20:56:01 2022 +0300 Fixes #4081 Unreleased Resource: Streams (#4691) * Fixes #4081-Closed the stream resource * #4081-Closed the stream resource after receiving byte[] commit ac1f9eab243a5797b9c339ff93d1441a44478854 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 5 11:50:17 2022 +0200 build(deps-dev): bump eslint in /main/tests/cypress (#4649) Bumps [eslint](https://github.com/eslint/eslint) from 8.11.0 to 8.12.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.11.0...v8.12.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit ff991e57dc4bfcd40a2b7bfb1164240624118c7e Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Tue Apr 5 11:25:23 2022 +0300 Fixes #2316 "Match other cells with same content" keeps appearing as the default choice #2316 (#4687) * Store user preference * Removed updating of DOM on closing recon match dialog , updated global variable name * Fixes #2316-Simplified if else expression commit 78b906540d9a8e90209ad6779c46fe8dfa9bcd7f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 5 10:13:48 2022 +0200 build(deps-dev): bump prettier in /main/tests/cypress (#4696) Bumps [prettier](https://github.com/prettier/prettier) from 2.6.1 to 2.6.2. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.6.1...2.6.2) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 6474416b55a1151a5b32c6a17aa3eb9f2ebd0408 Author: Binita Kumari <78761614+Binita-tech@users.noreply.github.com> Date: Tue Apr 5 13:41:59 2022 +0530 Improvement of grel docs (#4654) commit e80889c42815c8a110e225ed7c7fa3748b9808df Author: Cece <45926850+SIXIN-LI@users.noreply.github.com> Date: Sat Apr 2 22:08:55 2022 -0700 fix OpenRefine#4656 - clarify location of workspace (#4663) commit f09b13636c7aac625bb3fbeaec2e3eacae34eb04 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sun Apr 3 07:08:09 2022 +0200 Add main/webapp/modules/core/3rdparty/ to .gitignore (#4665) commit 46517df86ccc42dca7ad4724be95bd7d0086ec3a Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sun Apr 3 07:07:28 2022 +0200 Add mention of com.google.refine.Refine to our developer docs (#4680) * Update build-test-run.md * Update build-test-run.md commit b5c522eab6ba0eabed5087122820ddad75c6ee80 Author: Shelomi Silva <50749107+shelomi99@users.noreply.github.com> Date: Sun Apr 3 10:35:34 2022 +0530 [SQL Exporter] Substitute invalid characters in column names with underscore (#1940) (#4685) * [SQL Exporter] Substitute invalid characters in column names with underscore (#1940) * Add test case to validate SQL export column names with special characters commit 1ed4aaba92564f395c0a91c12c40725455abcc42 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat Apr 2 13:18:40 2022 +0200 build(deps): bump actions/setup-node from 3.0.0 to 3.1.0 (#4683) Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.0.0 to 3.1.0. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.0.0...v3.1.0) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 7ab6eed6deddf344d5d56ae1aae232de9863d91b Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Fri Apr 1 02:14:07 2022 -0700 Added missing HTML tags. (#4678) commit 440b03b4748219b92b05777b383e1a4b47449674 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Fri Apr 1 02:08:32 2022 -0700 Fixed broken link in wikidata dialog. (#4679) commit 3bf4635f1706dabb70d9a3a5c3ab544564b87b69 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 31 01:30:05 2022 -0700 Changed 'Unselect' and 'De-select' to 'Deselect' and 'Unselect all' to 'Deselect all' (#4671) commit 8c7a6b5eedf774ad1dab5ed1d6cd394b19d862fa Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 31 01:24:51 2022 -0700 Fixed alignment in wikibase dialogs. (#4674) commit a762ce90c766fa03af08178ecd515f136f49be99 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 31 01:22:15 2022 -0700 Removed 4px border from dialogs, and added a header for the dialog in All Columns > Transform... (#4668) commit 499ce64c160bbd3e87fc6f5baef11fe2812dca2b Author: Shriya <93962518+shriyasankhyan@users.noreply.github.com> Date: Wed Mar 30 23:02:09 2022 +0530 Grammatical Error (#4667) commit 4e0cfe5d6c0dc7c0ab704549a647deb307da5548 Author: Cece <45926850+SIXIN-LI@users.noreply.github.com> Date: Wed Mar 30 00:22:19 2022 -0700 update Maven version to 3.8.5 (#4653) fixes #4644 commit c18a362b7a4098a9a7fb0de32c6c93d1667d13e7 Author: Elroy Kanye <elroykanye@gmail.com> Date: Wed Mar 30 08:19:41 2022 +0100 fixes #4640 added example of Regex usage to desc of replace() (#4641) * fixes #4640 added example of Regex usage to desc of replace() * match grel function description with example from docs commit 5bfae756836cb95d8ff75964cf5625ba1872b94b Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Wed Mar 30 00:09:48 2022 -0700 Wikibase dialog buttons (#4630) * Moved login buttons to the dialog footer in relevant dialogs. * Changed back to submit event. Cleanup. commit 2d4e382652ec894ebc28b57b133ce62ce859ff81 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 29 23:38:21 2022 -0700 Fixed dialog headers. (#4661) commit b47d250e6369bd1fc98cce1a054e8092702a7d9b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 21:56:17 2022 +0200 build(deps): bump cypress from 9.5.2 to 9.5.3 in /main/tests/cypress (#4660) Bumps [cypress](https://github.com/cypress-io/cypress) from 9.5.2 to 9.5.3. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - [Commits](https://github.com/cypress-io/cypress/compare/v9.5.2...v9.5.3) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 054a3459257d4ecbcbc7956f58a24fdc4cffa93b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 21:53:50 2022 +0200 build(deps): bump maven-shade-plugin from 3.2.4 to 3.3.0 (#4658) Bumps [maven-shade-plugin](https://github.com/apache/maven-shade-plugin) from 3.2.4 to 3.3.0. - [Release notes](https://github.com/apache/maven-shade-plugin/releases) - [Commits](https://github.com/apache/maven-shade-plugin/compare/maven-shade-plugin-3.2.4...maven-shade-plugin-3.3.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-shade-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 4ef8a273f579eb96888458ce5d9b47764af2fb7c Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 21:38:36 2022 +0200 build(deps): bump google-api-services-sheets (#4659) Bumps google-api-services-sheets from v4-rev20220308-1.32.1 to v4-rev20220322-1.32.1. --- updated-dependencies: - dependency-name: com.google.apis:google-api-services-sheets dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 2dafb62d4fd4de539acf1fdd54c541ad2dea062d Author: Raphael Das Gupta <github.com@raphael.dasgupta.ch> Date: Tue Mar 29 16:00:09 2022 +0200 fix typo in "reconciliation" (#4657) * fix typo in "reconciliation" * Port to 3.6 docs Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 3cbb5b143df3caa6e50d5493a34cee3f12cbcf77 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 29 01:23:32 2022 -0700 Redirect to wiki for Google Export options (#4635) * Added redirect to wiki for Google Export options if credentials are undefined. * Remove check for host, only rely on CLIENT_ID and CLIENT_SECRET being empty Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 1ef305152ffe755c207a342488d94fe17b953518 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 29 01:22:12 2022 -0700 Removed colons from labels that don't need them (#4643) * Removed : and ... from labels that don't need them * Updated tests and removed trailing whitespace. * Cleanup. Closes #4639 commit dddced56e1ac744d0674d9e5a157135cce452d05 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 09:56:57 2022 +0200 build(deps): bump plist from 3.0.4 to 3.0.5 in /main/tests/cypress (#4650) Bumps [plist](https://github.com/TooTallNate/node-plist) from 3.0.4 to 3.0.5. - [Release notes](https://github.com/TooTallNate/node-plist/releases) - [Changelog](https://github.com/TooTallNate/plist.js/blob/master/History.md) - [Commits](https://github.com/TooTallNate/node-plist/commits) --- updated-dependencies: - dependency-name: plist dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 6d26e1b931c92c8e52efe753f532c7cb73d4b461 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Mar 28 21:42:58 2022 +0200 build(deps): bump jmh.version from 1.34 to 1.35 (#4647) Bumps `jmh.version` from 1.34 to 1.35. Updates `jmh-core` from 1.34 to 1.35 Updates `jmh-generator-annprocess` from 1.34 to 1.35 --- updated-dependencies: - dependency-name: org.openjdk.jmh:jmh-core dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.openjdk.jmh:jmh-generator-annprocess dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit fad3c21e4f177ef22088c0c7aa9a391a2e2d6627 Author: Elroy Kanye <elroykanye@gmail.com> Date: Mon Mar 28 06:17:21 2022 +0100 fixes #3133 modify default return of call() for ToString to state for Number format (#4642) commit 342f5c3fe249681f243bcbe7b5e667ed8830b94c Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Mon Mar 28 07:05:49 2022 +0200 Add npm instructions to 3.5 release It was not actually required in 3.5 but that is what the website is currently showing and we have a flock of Outreachy applicants trying to setup the project. commit 083c7feba3b84d97ec884f3c2b38b6f1f0249640 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Mar 25 21:07:51 2022 +0100 build(deps-dev): bump prettier in /main/tests/cypress (#4638) Bumps [prettier](https://github.com/prettier/prettier) from 2.6.0 to 2.6.1. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.6.0...2.6.1) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 9394514967e998d2c97a63a01a1d901854f1a5de Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Mar 25 21:07:18 2022 +0100 build(deps): bump google-http-client-jackson2 from 1.41.4 to 1.41.5 (#4637) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.4 to 1.41.5. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.4...v1.41.5) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 1169c2e26db5fcdf8f666d5fd912f936e7978e85 Author: khadijm <88087734+khadijm@users.noreply.github.com> Date: Fri Mar 25 09:55:46 2022 +0100 disable spellcheck on input text type (#4636) Closes #3004. commit 2e84edfab19885f6d1a72e9a6b0844d78b46fd42 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 24 17:10:50 2022 +0100 build(deps): bump minimist from 1.2.5 to 1.2.6 in /docs (#4634) Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) --- updated-dependencies: - dependency-name: minimist dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 5c07bc39917d19a9c69d800a53d75c813291591a Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 24 17:10:25 2022 +0100 build(deps): bump minimist from 1.2.5 to 1.2.6 in /main/tests/cypress (#4633) Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) --- updated-dependencies: - dependency-name: minimist dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 39f72d74e099a3ab5a42a63d4216de6e7d85cfd6 Merge: aeb0bb619 ca6dcafc9 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Thu Mar 24 14:30:43 2022 +0100 Merge pull request #4632 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit ca6dcafc9dca6f340c42cf83cb173899c12a5e7f Merge: 04cc2931c aeb0bb619 Author: Hosted Weblate <hosted@weblate.org> Date: Thu Mar 24 12:58:29 2022 +0100 Merge remote-tracking branch 'origin/master' commit 04cc2931c335aaa30f3a91144cc4ea201b866795 Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 07:27:27 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 3.6% (9 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/zh_Hans/ commit 690f32732011b6db5a87d909f8d89c3e8ef8c79d Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 07:04:15 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (46 of 46 strings) Translation: OpenRefine/gdata Translate-URL: https://hosted.weblate.org/projects/openrefine/gdata/zh_Hans/ commit 20baed02df650b3eb16e1e9f9d721568b646c81c Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 05:51:29 2022 +0000 Translated using Weblate (Chinese (Traditional)) Currently translated at 9.3% (75 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/zh_Hant/ commit 8a07f1fb266ae00939dcf93a8d48bd0e4df3cf2d Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 06:52:33 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/zh_Hans/ commit bf243cdfb916d8ccc6012b2c0528efa3c2f291ba Author: Aftabuzzaman <Leemon432@gmail.com> Date: Mon Mar 21 22:44:34 2022 +0000 Translated using Weblate (Bengali) Currently translated at 10.0% (80 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/bn/ commit 73d3ba3a6cf506e5a1eb1a0c97b787e28cf77547 Author: MarcoDiazGarcia <marco.diaz.garcia@mni.thm.de> Date: Sat Mar 19 09:43:42 2022 +0000 Translated using Weblate (German) Currently translated at 90.6% (725 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/de/ commit 7328056def1b6f942fc5975cf2c46c6bc8e7ac11 Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 06:02:27 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 78.7% (630 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/zh_Hans/ commit aeb0bb619aec17333f9182bc531f4d642294c6ec Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 24 04:58:14 2022 -0700 Frontend dependency management part II (#4621) Part II for #2423. Partial fix for #3958. commit 463a2c4e7bca094af7b0a49a911c67df28e395ff Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 08:26:23 2022 +0100 Added translation using Weblate (Chinese (Simplified)) commit 264c9c09749488ec640f4018214a87ab92779677 Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 08:03:02 2022 +0100 Added translation using Weblate (Chinese (Simplified)) commit 2e388cfe3c6a46d3a1ef4abfce682712a5b26129 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 22 19:35:32 2022 +0100 build(deps): bump clojure from 1.10.3 to 1.11.0 (#4629) Bumps [clojure](https://github.com/clojure/clojure) from 1.10.3 to 1.11.0. - [Release notes](https://github.com/clojure/clojure/releases) - [Changelog](https://github.com/clojure/clojure/blob/master/changes.md) - [Commits](https://github.com/clojure/clojure/compare/clojure-1.10.3...clojure-1.11.0) --- updated-dependencies: - dependency-name: org.clojure:clojure dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 85b5ee495f1b384007c9116548f67bd59b4cd718 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 22 09:00:37 2022 +0100 build(deps): bump poi.version from 5.2.1 to 5.2.2 (#4627) Bumps `poi.version` from 5.2.1 to 5.2.2. Updates `poi` from 5.2.1 to 5.2.2 Updates `poi-ooxml` from 5.2.1 to 5.2.2 --- updated-dependencies: - dependency-name: org.apache.poi:poi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.apache.poi:poi-ooxml dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0d92f1de410d9c67cccb800969661fff23750e44 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 22 09:00:00 2022 +0100 build(deps): bump actions/cache from 2.1.7 to 3 (#4626) Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.7...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 98c1785edd3e7cd3b0185ab4e5a8beb130c3c6c4 Merge: 5d7720678 5d40f47e6 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Sat Mar 19 16:28:01 2022 +0100 Merge pull request #4620 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 5d40f47e61c3cea7dc4fc2ea840b1e456fd4d04d Merge: 705730c09 5d7720678 Author: Hosted Weblate <hosted@weblate.org> Date: Sat Mar 19 10:06:23 2022 +0100 Merge remote-tracking branch 'origin/master' commit 5d7720678d49139831e2b55ab4b0ec95560ff33c Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sat Mar 19 10:06:17 2022 +0100 Update Wikidata-Toolkit to 0.13.1 (#4594) commit 705730c09d950e656defd25f889d8426e6cdaf69 Merge: 134eda026 b50244e9c Author: Hosted Weblate <hosted@weblate.org> Date: Sat Mar 19 09:45:21 2022 +0100 Merge remote-tracking branch 'origin/master' commit b50244e9c614e9a7b7d581094bfe2b4f400a7f68 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sat Mar 19 09:45:15 2022 +0100 Set more restrictive file permissions on workspace.json. Fixes #4600. (#4601) commit 134eda026c17d44a780aa83157f22624019f3d0f Merge: b097aced8 2cbdd6867 Author: Hosted Weblate <hosted@weblate.org> Date: Sat Mar 19 09:07:19 2022 +0100 Merge remote-tracking branch 'origin/master' commit 2cbdd6867675466471d65944d9e40b14864985aa Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Sat Mar 19 01:07:13 2022 -0700 Added spacing between ok/cancel buttons. (#4623) commit b097aced8462317ebe539e9a8cf4b68ad053581e Author: G T <giuliotura@gmail.com> Date: Thu Mar 17 20:51:33 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (800 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit ebd3c8f39ee0367acbc1ff48ccb9c1cfae003aa8 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Wed Mar 16 18:47:17 2022 +0000 Translated using Weblate (Dutch) Currently translated at 46.9% (117 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nl/ commit 818a1362be612662d23f14bd36eea0433b6c97ee Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 16 13:30:51 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (249 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/it/ commit b3f533bcf1ffc78626ea107ad82d79a2786d068d Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 16 13:48:09 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (800 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit 7ccdce9ae2c37990d41fe035b81899f044e4ad5f Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Wed Mar 16 15:07:59 2022 +0000 Translated using Weblate (French) Currently translated at 99.5% (796 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/fr/ commit 442d80fa21c96cba5297356b161fc73fb85dadcb Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 17 08:41:32 2022 +0100 build(deps): bump google-api-services-sheets (#4616) Bumps google-api-services-sheets from v4-rev20220221-1.32.1 to v4-rev20220308-1.32.1. --- updated-dependencies: - dependency-name: com.google.apis:google-api-services-sheets dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0d0579a19c76b85e9b1aa7b601b6c8c22bfbb220 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 17 08:29:50 2022 +0100 build(deps-dev): bump prettier in /main/tests/cypress (#4619) Bumps [prettier](https://github.com/prettier/prettier) from 2.5.1 to 2.6.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.5.1...2.6.0) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 20c0e2f6c352100d00c627afc17abbac0495d1a2 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Wed Mar 16 07:08:47 2022 -0700 Frontend dependency management (#4618) * Added package.json. For #2423. commit 0526ab8ca1a1f8efbce5c13d94dec380bc0c8de0 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 15 23:08:03 2022 +0100 build(deps): bump cypress from 9.5.1 to 9.5.2 in /main/tests/cypress (#4617) Bumps [cypress](https://github.com/cypress-io/cypress) from 9.5.1 to 9.5.2. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - [Commits](https://github.com/cypress-io/cypress/compare/v9.5.1...v9.5.2) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 3f33363fecb84bb8cff5cd46150f4300a76007d5 Merge: b02c0fbdf 993abfffe Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Tue Mar 15 18:28:17 2022 +0100 Merge pull request #4615 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 993abfffe68adbe2b52af4677f572536f4795215 Merge: d969fa1e2 b02c0fbdf Author: Hosted Weblate <hosted@weblate.org> Date: Tue Mar 15 11:11:27 2022 +0100 Merge remote-tracking branch 'origin/master' commit d969fa1e2532063771dc8bc7520cc1a4b44be6da Author: Luca Martinelli <sannita@gmail.com> Date: Mon Mar 14 14:15:22 2022 +0000 Translated using Weblate (Italian) Currently translated at 88.3% (220 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/it/ commit 547fa91366496dc766282bdb28107ba540f4fd33 Author: Luca Martinelli <sannita@gmail.com> Date: Mon Mar 14 14:07:47 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (799 of 799 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit 73ce3cc86e02bf199155ee1fbbe57b450523158f Author: Eihel <ehmworms@hotmail.com> Date: Mon Mar 14 07:04:32 2022 +0000 Translated using Weblate (French) Currently translated at 99.6% (796 of 799 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/fr/ commit b02c0fbdf63a5854b96126fca12d4080a4acd734 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 15 03:11:20 2022 -0700 Add URL remove button (#4609) * Changed min-width to width in the dialog-frame. * Added a trashcan button to remove URL rows after the first row. * Made "Remove this row" tooltip localized text, cleanup. Closes #4606 commit 89eda70f88df55ef7614628b0049ab19a76a280d Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 15 11:08:51 2022 +0100 build(deps-dev): bump eslint in /main/tests/cypress (#4614) Bumps [eslint](https://github.com/eslint/eslint) from 8.10.0 to 8.11.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.10.0...v8.11.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 253b1eab70a93570eac27fae5fb604d122031c4f Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Mon Mar 14 00:07:27 2022 -0700 Edit project tags tooltip (#4613) * Updated command line options documentation * Changed min-width to width in the dialog-frame. * Removed the edit tags tooltip from tags. commit 9d900105ceebe947578367e463a2e0faedee448c Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Sun Mar 13 23:42:06 2022 -0700 Validation of all URLs in URL import (#4605) * Added validation for multiple urls. * Cleanup. * Removed code that disables blank URL rows. commit 864ac30b86a4051b994f9ba6e5fc1a8598f88963 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat Mar 12 07:59:26 2022 +0100 build(deps): bump maven-compiler-plugin from 3.10.0 to 3.10.1 (#4612) Bumps [maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.10.0 to 3.10.1. - [Release notes](https://github.com/apache/maven-compiler-plugin/releases) - [Commits](https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.10.0...maven-compiler-plugin-3.10.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-compiler-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 09f9621e2b0a2b0a6672f27821596738858ed3aa Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Mar 11 21:52:12 2022 +0100 build(deps): bump maven-dependency-plugin from 3.2.0 to 3.3.0 (#4611) Bumps [maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) from 3.2.0 to 3.3.0. - [Release notes](https://github.com/apache/maven-dependency-plugin/releases) - [Commits](https://github.com/apache/maven-dependency-plugin/compare/maven-dependency-plugin-3.2.0...maven-dependency-plugin-3.3.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-dependency-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 29fa9aa1e8e8cd1a70342a89d4a85b1129173c28 Merge: 74664832d 4fe7855b1 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Fri Mar 11 17:00:30 2022 +0100 Merge pull request #4610 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 4fe7855b1c82cc5c92ac208283b6dc3a330981c8 Author: Luca Martinelli <sannita@gmail.com> Date: Thu Mar 10 14:43:48 2022 +0000 Translated using Weblate (Italian) Currently translated at 62.2% (155 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/it/ commit a44c1db3f2c639c485e2ad4f500b528d84843b26 Author: Luca Martinelli <sannita@gmail.com> Date: Thu Mar 10 14:15:47 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (797 of 797 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit 74664832d1291a7dc25b156d75998c1501929786 Author: Thad Guidry <thadguidry@gmail.com> Date: Wed Mar 9 23:23:47 2022 -0600 Update memory allocation steps for Mac (#4604) commit 1ccdf5c12926ad3b7a1eecbaca40691a67aa948a Merge: ee3f71d05 894fc5ba9 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Wed Mar 9 17:41:49 2022 +0100 Merge pull request #4599 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 894fc5ba99d608a7f4231fd062d1834495a50e3b Merge: 6bc9846f1 ee3f71d05 Author: Hosted Weblate <hosted@weblate.org> Date: Wed Mar 9 16:09:36 2022 +0100 Merge remote-tracking branch 'origin/master' commit 6bc9846f1e0334a9a5928ee5b1ee90b2aa119c87 Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 9 14:10:47 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (46 of 46 strings) Translation: OpenRefine/gdata Translate-URL: https://hosted.weblate.org/projects/openrefine/gdata/it/ commit 84738c8854b42161b46e3b294ee8025e6263f814 Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 9 14:15:04 2022 +0000 Translated using Weblate (Italian) Currently translated at 91.9% (733 of 797 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit ee3f71d055e14549885340577405d36abd022141 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Wed Mar 9 16:09:13 2022 +0100 Remove codesigning while notarization does not work, for #4580 #4568 commit 66fdcdc2613c886e050122b36a1a5a1962f422f1 Merge: 5297061b7 022664d89 Author: Hosted Weblate <hosted@weblate.org> Date: Wed Mar 9 08:11:08 2022 +0100 Merge remote-tracking branch 'origin/master' commit 022664d894eddefa6958612027b8d3bf94340c41 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Mar 9 08:11:04 2022 +0100 build(deps): bump jackson.version from 2.13.1 to 2.13.2 (#4596) Bumps `jackson.version` from 2.13.1 to 2.13.2. Updates `jackson-databind` from 2.13.1 to 2.13.2 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Updates `jackson-annotations` from 2.13.1 to 2.13.2 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Updates `jackson-core` from 2.13.1 to 2.13.2 - [Release notes](https://github.com/FasterXML/jackson-core/releases) - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.13.1...jackson-core-2.13.2) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-annotations dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 5297061b7a8872a29c15af55468e16688d74cc3f Merge: 33c772257 b79cb56ed Author: Hosted Weblate <hosted@weblate.org> Date: Wed Mar 9 08:07:53 2022 +0100 Merge remote-tracking branch 'origin/master' commit b79cb56ed72bc58be621a56ffb2ca3e6011bbfaa Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 8 23:07:47 2022 -0800 Rename column popup (#4597) * Replaced rename column browser popup with regular dialog. Closes #4590. * Updated test for rename column and made ok and cancel buttons use localized text. * Added Autofocus for input box. commit 33c7722576cdc023578a37952b0b281b997509e4 Author: Luca Martinelli <sannita@gmail.com> Date: Tue Mar 8 19:51:32 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/it/ commit d49237381db8e7a32e254b430eef2e27b0881d42 Author: Isao Matsunami <isao.matsunami@gmail.com> Date: Tue Mar 8 05:58:40 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (797 of 797 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ja/ commit 943bf3721173f642d819d0d647c95bd83aaee884 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 8 20:07:47 2022 +0100 build(deps): bump mockito-core from 4.3.1 to 4.4.0 (#4598) Bumps [mockito-core](https://github.com/mockito/mockito) from 4.3.1 to 4.4.0. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v4.3.1...v4.4.0) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit b9f9beee857fa78dc987ae8611a2f397ca1093fd Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Mon Mar 7 01:19:41 2022 -0800 Menu items ellipsis (#4591) * Issue #4585 added ellipsis to menu items and updated translation files and JavaScript files * Added /single labels for the common-transform options so menu-edit-cells won't display ellipsis. Cleanup. * Removed ellipsis from the necessary menu items. commit 7aafca318794b12deec8541774d4865ccdefde54 Merge: c225ef9b3 21b4e33c2 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Sun Mar 6 19:27:35 2022 +0100 Merge pull request #4595 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 21b4e33c2d2b90fa95a5ab340ee916c819caad0e Author: M…
commit d6a3e8465bc05bf90a45f3144c2c53f841bf0845 Author: Binita Kumari <78761614+Binita-tech@users.noreply.github.com> Date: Sat Apr 16 01:31:01 2022 +0530 Improved browser launch in Linux distribution (#4706) * fixes #2640 commit 0573be98f488121ea80e79e3cc548ac69bca5b0f Author: Elroy Kanye <elroykanye@gmail.com> Date: Fri Apr 15 19:48:33 2022 +0100 Enhance random number function (#4672) Closes #3143. commit 4e5414fc50804f461239aaeb2f6ec07238b71957 Author: Babi B <babibyoolah@gmail.com> Date: Fri Apr 15 11:06:22 2022 +0100 Improve clustering method documentation; make it skimmable (#4718) * made clustering method document skimmable * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * take out hierarchy, add links to document * took out unnecessary image files * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * added links within the document * capitalization Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * capitalized subheadings * corrected grammatical error * capitalization Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> commit c9c958366a0a306531b6e3880d9b92e2a8d4cc27 Merge: f8fb2ff4c aa777f70b Author: Hosted Weblate <hosted@weblate.org> Date: Fri Apr 15 10:33:18 2022 +0200 Merge branch 'origin/master' into Weblate. commit aa777f70bbbc6b195faa42f07e249f2c44a9efc9 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Wed Apr 13 18:49:34 2022 +0000 Translated using Weblate (Dutch) Currently translated at 55.2% (450 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/nl/ commit f8fb2ff4c031b7889671272cbf7748b73128d122 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Fri Apr 15 10:33:10 2022 +0200 Add specific UI to edit different entity types in Wikibase manifest (#4681) * Distinguish between edits on items and on mediainfo entities with a proper class hierarchy * Introduce class hierarchy for entity edit expressions, to distinguish between various entity types * Update frontend after separation of entities types into different classes * Linting * Fix detection of deleted statements commit b2b3a663472f03365e07ab4c36d1ffa31dd658af Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Apr 15 09:19:09 2022 +0200 build(deps): bump async from 2.6.3 to 2.6.4 in /docs (#4763) Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. - [Release notes](https://github.com/caolan/async/releases) - [Changelog](https://github.com/caolan/async/blob/v2.6.4/CHANGELOG.md) - [Commits](https://github.com/caolan/async/compare/v2.6.3...v2.6.4) --- updated-dependencies: - dependency-name: async dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit d36fab8a86806f8ce3e902549a06bb5049d9ae2f Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Apr 14 23:56:05 2022 -0700 Updated underscore dependency. (#4762) commit dba2b8b1311ce58e98f88d767726955ab098e38b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Apr 13 20:52:39 2022 +0200 build(deps): bump wdtk.version from 0.13.1 to 0.13.2 (#4753) Bumps `wdtk.version` from 0.13.1 to 0.13.2. Updates `wdtk-wikibaseapi` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) Updates `wdtk-datamodel` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) Updates `wdtk-util` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) --- updated-dependencies: - dependency-name: org.wikidata.wdtk:wdtk-wikibaseapi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.wikidata.wdtk:wdtk-datamodel dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.wikidata.wdtk:wdtk-util dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 952cb453080e60b0784049fea6975657c41caee4 Author: Babi B <babibyoolah@gmail.com> Date: Wed Apr 13 15:37:51 2022 +0100 Technical documentation for clustering (#4719) commit 1dcda3c63b24f25afe0a5156eb74cd909901808b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Apr 13 11:02:25 2022 +0200 build(deps): bump async from 3.2.0 to 3.2.3 in /main/tests/cypress (#4750) Bumps [async](https://github.com/caolan/async) from 3.2.0 to 3.2.3. - [Release notes](https://github.com/caolan/async/releases) - [Changelog](https://github.com/caolan/async/blob/master/CHANGELOG.md) - [Commits](https://github.com/caolan/async/compare/v3.2.0...v3.2.3) --- updated-dependencies: - dependency-name: async dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit a9832d25d219c0dc24621bf3f4c8b7bcea77724f Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Wed Apr 13 03:38:19 2022 -0400 Update running.md (#4749) * Update running.md Changing the JVM preferences (arguments) to a table display Space in a JSON array * Also modify in current docs Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 6ac025189dcfd5ec47d19a72ef035546d96ff62b Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Wed Apr 13 00:28:07 2022 -0700 Fixed snapshot builds (attempt 2) (#4748) * Added npm install to snapshot workflow. * Moved npm install command up, and added npm install for the mac build. commit 6b9387f04d8effaa49358677735ee1a4354fb78a Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 23:47:35 2022 +0200 build(deps): bump google-http-client-jackson2 from 1.41.6 to 1.41.7 (#4746) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.6 to 1.41.7. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.6...v1.41.7) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 81de887e34a75d4f744f6b822d9183a84805a5eb Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 23:46:39 2022 +0200 build(deps): bump cypress from 9.5.3 to 9.5.4 in /main/tests/cypress (#4747) Bumps [cypress](https://github.com/cypress-io/cypress) from 9.5.3 to 9.5.4. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - [Commits](https://github.com/cypress-io/cypress/compare/v9.5.3...v9.5.4) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit ce79221f12d33196d0d35a6150d9e29aa76a1e6f Author: MAGEMBE SHARIF <48015736+sherrif10@users.noreply.github.com> Date: Tue Apr 12 19:29:32 2022 +0300 InterruptedException Ignored When Stopping the Servlet (#4734) Fixes #4694. Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 386e1d90428e83cfbaef921753cfbc1c5d46435b Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 14:25:29 2022 +0000 Translated using Weblate (Dutch) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/nl/ commit bd844b224bbf3a78ee41fed6e5e4b90fc69ee56f Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:39:46 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 5.0% (41 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ml/ commit c00c85c7dce66d57c437f19366ed52843ff4c35a Author: Adithya K <adithyak04@gmail.com> Date: Mon Apr 11 13:54:01 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 7.2% (18 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/ml/ commit 1f6625dd7af0689aa54014fed8b6fbc3ead717f1 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:52:26 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 7.2% (18 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/ml/ commit a73b830c95ff412b2fbcbdf0bb7ce26f7ed6834c Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 15:49:22 2022 +0000 Translated using Weblate (Dutch) Currently translated at 53.8% (134 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nl/ commit 4c06a25aaea97587cd8f21e46b15446c12ee60cf Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 13:55:27 2022 +0000 Translated using Weblate (Dutch) Currently translated at 54.8% (447 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/nl/ commit 778a8c42f3e683d9fc8d049148f0516b8212ef60 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 20:04:52 2022 +0000 Translated using Weblate (Norwegian Bokmål) Currently translated at 64.6% (161 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nb_NO/ commit 5b2c9ef3b26823a014e5498e2652db6e858a1a42 Author: MAGEMBE SHARIF <48015736+sherrif10@users.noreply.github.com> Date: Tue Apr 12 13:22:27 2022 +0300 Add Headers Lincense to the project code base (#4736) commit 88c46768dfa796441a62b050cc35b39cb955de15 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 09:51:40 2022 +0200 build(deps-dev): bump eslint in /main/tests/cypress (#4740) Bumps [eslint](https://github.com/eslint/eslint) from 8.12.0 to 8.13.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.12.0...v8.13.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit d0b22c3197840fc35bc92dfd804c82693dfc4a88 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Apr 12 00:07:13 2022 -0700 Added npm install to snapshot workflow. (#4742) commit 8c074ae5a9908519e2f3a4ee7db1b2c8c44b0211 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 11 21:21:03 2022 +0200 build(deps): bump actions/setup-node from 3.1.0 to 3.1.1 (#4739) Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.1.0 to 3.1.1. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.1.0...v3.1.1) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 75f446cfaed00a33cf06d6ee19242b37a92d49a2 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 16:18:07 2022 +0200 Added translation using Weblate (Dutch) commit e31ec961a6c62af4bbd4cd1a816bc32ff8a361d2 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:37:44 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 0.7% (6 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ml/ commit ae12b1396ad13931936eb5532c32f194986b7298 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:22:11 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 44.4% (28 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/ml/ commit 72a0f9f95bca8cd3a4d293cb7f30c095057e8920 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Mon Apr 11 05:43:08 2022 -0700 build(webapp): bump jquery-ui from 1.12.1 to 1.13.1 (#4713) * Upgraded jquery-ui from 1.12.1 to 1.13.1. * Set the defaultCommandTimeout in cypress.json and removed the nodeVersion option which is obsolete and no longer supported. * Fixed a flaky test. commit 6cbced4144964d33205fb775a3b6211fb2e2c001 Author: Elroy Kanye <elroykanye@gmail.com> Date: Mon Apr 11 12:11:10 2022 +0100 set division operator call to return NaN on 0/0 (#4689) * set division operator call to return NaN on 0/0 * adjusted formatting - OperatorCallExpr * add tests for 0/0 division commit 99e357870b3720a3ce6ca9d3c71e4bf9db27363e Merge: 0b7f4302f 8282b727f Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 10:21:31 2022 -0400 Merge pull request #4732 from OpenRefine/antoine2711-contributing-3 Update contributing.md commit 8282b727f762edd6d5dd38150a0cf07e4cf688c8 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 10:09:40 2022 -0400 Update contributing.md Fixing malformed links. commit 0b7f4302f9b1af7e857eae5cd674eaac6935d016 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 09:46:22 2022 -0400 Update contributing.md (#4731) Few mistakes and a link to #maintainer-guidelines commit cc4c2c414cb3a8a66a147bdf5d66965e378c61f8 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 06:31:26 2022 -0400 Update contributing.md for Functional Tests (#4726) * Update contributing.md Changes for Functional Tests. Also, more affirmative about Java test case. * Update docs/versioned_docs/version-3.5/technical-reference/contributing.md * Update contributing.md Changes for Functional Tests. Also, more affirmative about Java test case. * Update docs/docs/technical-reference/contributing.md Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 432f02338d10f75cacc899e47cfe753f1a2b6c14 Merge: 1b02bf452 b64f203cd Author: Hosted Weblate <hosted@weblate.org> Date: Sun Apr 10 10:56:49 2022 +0200 Merge branch 'origin/master' into Weblate. commit 1b02bf45282577a4c968117e5b4b3731f4f32529 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun Apr 10 10:56:43 2022 +0200 build(deps): bump clojure from 1.11.0 to 1.11.1 (#4699) Bumps [clojure](https://github.com/clojure/clojure) from 1.11.0 to 1.11.1. - [Release notes](https://github.com/clojure/clojure/releases) - [Changelog](https://github.com/clojure/clojure/blob/master/changes.md) - [Commits](https://github.com/clojure/clojure/compare/clojure-1.11.0...clojure-1.11.1) --- updated-dependencies: - dependency-name: org.clojure:clojure dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit b64f203cd989b0dc87979045d780d1973ce0a85a Author: 3ole <ole-s@mailbox.org> Date: Fri Apr 8 19:34:47 2022 +0000 Translated using Weblate (German) Currently translated at 99.3% (810 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/de/ commit f82da95708aa4ca46ac96590d2cd3d6dc6378428 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Sun Apr 10 01:09:44 2022 -0700 Improved error handling for pow and exp (#4701) * Removed unneeded null checks from math functions, added test for math functions, and added error messages for pow and exp. * Cleanup. * Cleanup/reformatting. * Cleanup/reformatting. commit e3ac29e59163ca08867d0583c1523258e9521cc8 Author: Thad Guidry <thadguidry@gmail.com> Date: Sun Apr 10 03:05:31 2022 -0500 Clear up some ambiguity in Reconciling with unique ids (#4711) * Clear up some ambiguity in Reconciling with unique ids Adds clarity with a better term of "known ids". * Also improve current docs commit 652575ab6334d5d926d1d4db729b29638778a0f1 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 03:32:05 2022 -0400 Update contributing.md for assignments and Programs (Outreachy & GSoC) (#4725) * Update contributing.md Update contributing to add the notion of Issue assignements. * Update docs/versioned_docs/version-3.5/technical-reference/contributing.md Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 34961169b22a79699fbdf22492c2f78b678df32f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun Apr 10 08:57:22 2022 +0200 build(deps): bump actions/setup-java from 2 to 3 (#4720) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 2 to 3. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/setup-java dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0ba3b924377f051c734c99cb1d8c05b5f5d231a9 Merge: 3d6960912 a20d4f5fd Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Fri Apr 8 10:16:48 2022 +0200 Merge pull request #4714 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit a20d4f5fd5fffaaba8a18db79e7e003e6652a642 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Fri Apr 8 02:07:47 2022 +0000 Translated using Weblate (French) Currently translated at 100.0% (249 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/fr/ commit 5e58df1e89bbabd1b727a3d53ae2269167c09a6c Author: S H <higa432@gmail.com> Date: Fri Apr 8 01:06:26 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/ja/ commit fdd0f11f57ebfc496ec5521327a2eea39cde96fb Author: Isao Matsunami <isao.matsunami@gmail.com> Date: Thu Apr 7 17:18:33 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (815 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ja/ commit 3d6960912f418e4bbee089771b7c9aae3d2177df Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 20:15:42 2022 +0200 build(deps): bump google-http-client-jackson2 from 1.41.5 to 1.41.6 (#4712) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.5 to 1.41.6. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.5...v1.41.6) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit cf52c501db08c464bb6424478b55ce4685ec250c Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 20:13:51 2022 +0200 build(deps): bump jacoco-maven-plugin from 0.8.7 to 0.8.8 (#4700) Bumps [jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.7 to 0.8.8. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.7...v0.8.8) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 35e54fa7ee8fc299dbf245b1e6453e9c852cabdc Author: ComgLq24 <84132969+ComgLq24@users.noreply.github.com> Date: Fri Apr 8 02:12:01 2022 +0800 fix handling oft empty ODS files (#4709) commit f0489975665c535f69d071651f47e9f15a30f717 Author: Elroy Kanye <elroykanye@gmail.com> Date: Thu Apr 7 19:04:52 2022 +0100 update link to get testng (#4688) commit a5e1f358f1ce42619361225969ab75bf5ed1cc00 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 17:42:11 2022 +0200 build(deps): bump maven-clean-plugin from 3.1.0 to 3.2.0 (#4698) Bumps [maven-clean-plugin](https://github.com/apache/maven-clean-plugin) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/apache/maven-clean-plugin/releases) - [Commits](https://github.com/apache/maven-clean-plugin/compare/maven-clean-plugin-3.1.0...maven-clean-plugin-3.2.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-clean-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit f31ac9e205a30a2e9902fb5d75910fcc44e4fbc7 Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Thu Apr 7 18:27:25 2022 +0300 "Reconcile > Use values as identifiers" does not reconcile #4655 #4664 (#4666) * Notification when selecting service * Notice moved to body * fixes 3172-Added a period to the notification message commit 9c5bde002e44e0fee4f7f124ad58d93eb7f57b52 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Apr 7 08:09:25 2022 -0700 Added encoding fix for Commands. (#4710) commit bb765b42b321f35c99b99582bb07b8330cd4954e Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Tue Apr 5 20:56:01 2022 +0300 Fixes #4081 Unreleased Resource: Streams (#4691) * Fixes #4081-Closed the stream resource * #4081-Closed the stream resource after receiving byte[] commit ac1f9eab243a5797b9c339ff93d1441a44478854 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 5 11:50:17 2022 +0200 build(deps-dev): bump eslint in /main/tests/cypress (#4649) Bumps [eslint](https://github.com/eslint/eslint) from 8.11.0 to 8.12.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.11.0...v8.12.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit ff991e57dc4bfcd40a2b7bfb1164240624118c7e Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Tue Apr 5 11:25:23 2022 +0300 Fixes #2316 "Match other cells with same content" keeps appearing as the default choice #2316 (#4687) * Store user preference * Removed updating of DOM on closing recon match dialog , updated global variable name * Fixes #2316-Simplified if else expression commit 78b906540d9a8e90209ad6779c46fe8dfa9bcd7f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 5 10:13:48 2022 +0200 build(deps-dev): bump prettier in /main/tests/cypress (#4696) Bumps [prettier](https://github.com/prettier/prettier) from 2.6.1 to 2.6.2. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.6.1...2.6.2) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 6474416b55a1151a5b32c6a17aa3eb9f2ebd0408 Author: Binita Kumari <78761614+Binita-tech@users.noreply.github.com> Date: Tue Apr 5 13:41:59 2022 +0530 Improvement of grel docs (#4654) commit e80889c42815c8a110e225ed7c7fa3748b9808df Author: Cece <45926850+SIXIN-LI@users.noreply.github.com> Date: Sat Apr 2 22:08:55 2022 -0700 fix OpenRefine#4656 - clarify location of workspace (#4663) commit f09b13636c7aac625bb3fbeaec2e3eacae34eb04 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sun Apr 3 07:08:09 2022 +0200 Add main/webapp/modules/core/3rdparty/ to .gitignore (#4665) commit 46517df86ccc42dca7ad4724be95bd7d0086ec3a Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sun Apr 3 07:07:28 2022 +0200 Add mention of com.google.refine.Refine to our developer docs (#4680) * Update build-test-run.md * Update build-test-run.md commit b5c522eab6ba0eabed5087122820ddad75c6ee80 Author: Shelomi Silva <50749107+shelomi99@users.noreply.github.com> Date: Sun Apr 3 10:35:34 2022 +0530 [SQL Exporter] Substitute invalid characters in column names with underscore (#1940) (#4685) * [SQL Exporter] Substitute invalid characters in column names with underscore (#1940) * Add test case to validate SQL export column names with special characters commit 1ed4aaba92564f395c0a91c12c40725455abcc42 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat Apr 2 13:18:40 2022 +0200 build(deps): bump actions/setup-node from 3.0.0 to 3.1.0 (#4683) Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.0.0 to 3.1.0. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.0.0...v3.1.0) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 7ab6eed6deddf344d5d56ae1aae232de9863d91b Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Fri Apr 1 02:14:07 2022 -0700 Added missing HTML tags. (#4678) commit 440b03b4748219b92b05777b383e1a4b47449674 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Fri Apr 1 02:08:32 2022 -0700 Fixed broken link in wikidata dialog. (#4679) commit 3bf4635f1706dabb70d9a3a5c3ab544564b87b69 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 31 01:30:05 2022 -0700 Changed 'Unselect' and 'De-select' to 'Deselect' and 'Unselect all' to 'Deselect all' (#4671) commit 8c7a6b5eedf774ad1dab5ed1d6cd394b19d862fa Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 31 01:24:51 2022 -0700 Fixed alignment in wikibase dialogs. (#4674) commit a762ce90c766fa03af08178ecd515f136f49be99 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 31 01:22:15 2022 -0700 Removed 4px border from dialogs, and added a header for the dialog in All Columns > Transform... (#4668) commit 499ce64c160bbd3e87fc6f5baef11fe2812dca2b Author: Shriya <93962518+shriyasankhyan@users.noreply.github.com> Date: Wed Mar 30 23:02:09 2022 +0530 Grammatical Error (#4667) commit 4e0cfe5d6c0dc7c0ab704549a647deb307da5548 Author: Cece <45926850+SIXIN-LI@users.noreply.github.com> Date: Wed Mar 30 00:22:19 2022 -0700 update Maven version to 3.8.5 (#4653) fixes #4644 commit c18a362b7a4098a9a7fb0de32c6c93d1667d13e7 Author: Elroy Kanye <elroykanye@gmail.com> Date: Wed Mar 30 08:19:41 2022 +0100 fixes #4640 added example of Regex usage to desc of replace() (#4641) * fixes #4640 added example of Regex usage to desc of replace() * match grel function description with example from docs commit 5bfae756836cb95d8ff75964cf5625ba1872b94b Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Wed Mar 30 00:09:48 2022 -0700 Wikibase dialog buttons (#4630) * Moved login buttons to the dialog footer in relevant dialogs. * Changed back to submit event. Cleanup. commit 2d4e382652ec894ebc28b57b133ce62ce859ff81 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 29 23:38:21 2022 -0700 Fixed dialog headers. (#4661) commit b47d250e6369bd1fc98cce1a054e8092702a7d9b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 21:56:17 2022 +0200 build(deps): bump cypress from 9.5.2 to 9.5.3 in /main/tests/cypress (#4660) Bumps [cypress](https://github.com/cypress-io/cypress) from 9.5.2 to 9.5.3. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - [Commits](https://github.com/cypress-io/cypress/compare/v9.5.2...v9.5.3) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 054a3459257d4ecbcbc7956f58a24fdc4cffa93b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 21:53:50 2022 +0200 build(deps): bump maven-shade-plugin from 3.2.4 to 3.3.0 (#4658) Bumps [maven-shade-plugin](https://github.com/apache/maven-shade-plugin) from 3.2.4 to 3.3.0. - [Release notes](https://github.com/apache/maven-shade-plugin/releases) - [Commits](https://github.com/apache/maven-shade-plugin/compare/maven-shade-plugin-3.2.4...maven-shade-plugin-3.3.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-shade-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 4ef8a273f579eb96888458ce5d9b47764af2fb7c Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 21:38:36 2022 +0200 build(deps): bump google-api-services-sheets (#4659) Bumps google-api-services-sheets from v4-rev20220308-1.32.1 to v4-rev20220322-1.32.1. --- updated-dependencies: - dependency-name: com.google.apis:google-api-services-sheets dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 2dafb62d4fd4de539acf1fdd54c541ad2dea062d Author: Raphael Das Gupta <github.com@raphael.dasgupta.ch> Date: Tue Mar 29 16:00:09 2022 +0200 fix typo in "reconciliation" (#4657) * fix typo in "reconciliation" * Port to 3.6 docs Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 3cbb5b143df3caa6e50d5493a34cee3f12cbcf77 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 29 01:23:32 2022 -0700 Redirect to wiki for Google Export options (#4635) * Added redirect to wiki for Google Export options if credentials are undefined. * Remove check for host, only rely on CLIENT_ID and CLIENT_SECRET being empty Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 1ef305152ffe755c207a342488d94fe17b953518 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 29 01:22:12 2022 -0700 Removed colons from labels that don't need them (#4643) * Removed : and ... from labels that don't need them * Updated tests and removed trailing whitespace. * Cleanup. Closes #4639 commit dddced56e1ac744d0674d9e5a157135cce452d05 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 09:56:57 2022 +0200 build(deps): bump plist from 3.0.4 to 3.0.5 in /main/tests/cypress (#4650) Bumps [plist](https://github.com/TooTallNate/node-plist) from 3.0.4 to 3.0.5. - [Release notes](https://github.com/TooTallNate/node-plist/releases) - [Changelog](https://github.com/TooTallNate/plist.js/blob/master/History.md) - [Commits](https://github.com/TooTallNate/node-plist/commits) --- updated-dependencies: - dependency-name: plist dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 6d26e1b931c92c8e52efe753f532c7cb73d4b461 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Mar 28 21:42:58 2022 +0200 build(deps): bump jmh.version from 1.34 to 1.35 (#4647) Bumps `jmh.version` from 1.34 to 1.35. Updates `jmh-core` from 1.34 to 1.35 Updates `jmh-generator-annprocess` from 1.34 to 1.35 --- updated-dependencies: - dependency-name: org.openjdk.jmh:jmh-core dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.openjdk.jmh:jmh-generator-annprocess dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit fad3c21e4f177ef22088c0c7aa9a391a2e2d6627 Author: Elroy Kanye <elroykanye@gmail.com> Date: Mon Mar 28 06:17:21 2022 +0100 fixes #3133 modify default return of call() for ToString to state for Number format (#4642) commit 342f5c3fe249681f243bcbe7b5e667ed8830b94c Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Mon Mar 28 07:05:49 2022 +0200 Add npm instructions to 3.5 release It was not actually required in 3.5 but that is what the website is currently showing and we have a flock of Outreachy applicants trying to setup the project. commit 083c7feba3b84d97ec884f3c2b38b6f1f0249640 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Mar 25 21:07:51 2022 +0100 build(deps-dev): bump prettier in /main/tests/cypress (#4638) Bumps [prettier](https://github.com/prettier/prettier) from 2.6.0 to 2.6.1. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.6.0...2.6.1) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 9394514967e998d2c97a63a01a1d901854f1a5de Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Mar 25 21:07:18 2022 +0100 build(deps): bump google-http-client-jackson2 from 1.41.4 to 1.41.5 (#4637) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.4 to 1.41.5. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.4...v1.41.5) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 1169c2e26db5fcdf8f666d5fd912f936e7978e85 Author: khadijm <88087734+khadijm@users.noreply.github.com> Date: Fri Mar 25 09:55:46 2022 +0100 disable spellcheck on input text type (#4636) Closes #3004. commit 2e84edfab19885f6d1a72e9a6b0844d78b46fd42 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 24 17:10:50 2022 +0100 build(deps): bump minimist from 1.2.5 to 1.2.6 in /docs (#4634) Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) --- updated-dependencies: - dependency-name: minimist dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 5c07bc39917d19a9c69d800a53d75c813291591a Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 24 17:10:25 2022 +0100 build(deps): bump minimist from 1.2.5 to 1.2.6 in /main/tests/cypress (#4633) Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) --- updated-dependencies: - dependency-name: minimist dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 39f72d74e099a3ab5a42a63d4216de6e7d85cfd6 Merge: aeb0bb619 ca6dcafc9 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Thu Mar 24 14:30:43 2022 +0100 Merge pull request #4632 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit ca6dcafc9dca6f340c42cf83cb173899c12a5e7f Merge: 04cc2931c aeb0bb619 Author: Hosted Weblate <hosted@weblate.org> Date: Thu Mar 24 12:58:29 2022 +0100 Merge remote-tracking branch 'origin/master' commit 04cc2931c335aaa30f3a91144cc4ea201b866795 Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 07:27:27 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 3.6% (9 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/zh_Hans/ commit 690f32732011b6db5a87d909f8d89c3e8ef8c79d Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 07:04:15 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (46 of 46 strings) Translation: OpenRefine/gdata Translate-URL: https://hosted.weblate.org/projects/openrefine/gdata/zh_Hans/ commit 20baed02df650b3eb16e1e9f9d721568b646c81c Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 05:51:29 2022 +0000 Translated using Weblate (Chinese (Traditional)) Currently translated at 9.3% (75 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/zh_Hant/ commit 8a07f1fb266ae00939dcf93a8d48bd0e4df3cf2d Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 06:52:33 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/zh_Hans/ commit bf243cdfb916d8ccc6012b2c0528efa3c2f291ba Author: Aftabuzzaman <Leemon432@gmail.com> Date: Mon Mar 21 22:44:34 2022 +0000 Translated using Weblate (Bengali) Currently translated at 10.0% (80 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/bn/ commit 73d3ba3a6cf506e5a1eb1a0c97b787e28cf77547 Author: MarcoDiazGarcia <marco.diaz.garcia@mni.thm.de> Date: Sat Mar 19 09:43:42 2022 +0000 Translated using Weblate (German) Currently translated at 90.6% (725 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/de/ commit 7328056def1b6f942fc5975cf2c46c6bc8e7ac11 Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 06:02:27 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 78.7% (630 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/zh_Hans/ commit aeb0bb619aec17333f9182bc531f4d642294c6ec Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 24 04:58:14 2022 -0700 Frontend dependency management part II (#4621) Part II for #2423. Partial fix for #3958. commit 463a2c4e7bca094af7b0a49a911c67df28e395ff Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 08:26:23 2022 +0100 Added translation using Weblate (Chinese (Simplified)) commit 264c9c09749488ec640f4018214a87ab92779677 Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 08:03:02 2022 +0100 Added translation using Weblate (Chinese (Simplified)) commit 2e388cfe3c6a46d3a1ef4abfce682712a5b26129 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 22 19:35:32 2022 +0100 build(deps): bump clojure from 1.10.3 to 1.11.0 (#4629) Bumps [clojure](https://github.com/clojure/clojure) from 1.10.3 to 1.11.0. - [Release notes](https://github.com/clojure/clojure/releases) - [Changelog](https://github.com/clojure/clojure/blob/master/changes.md) - [Commits](https://github.com/clojure/clojure/compare/clojure-1.10.3...clojure-1.11.0) --- updated-dependencies: - dependency-name: org.clojure:clojure dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 85b5ee495f1b384007c9116548f67bd59b4cd718 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 22 09:00:37 2022 +0100 build(deps): bump poi.version from 5.2.1 to 5.2.2 (#4627) Bumps `poi.version` from 5.2.1 to 5.2.2. Updates `poi` from 5.2.1 to 5.2.2 Updates `poi-ooxml` from 5.2.1 to 5.2.2 --- updated-dependencies: - dependency-name: org.apache.poi:poi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.apache.poi:poi-ooxml dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0d92f1de410d9c67cccb800969661fff23750e44 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 22 09:00:00 2022 +0100 build(deps): bump actions/cache from 2.1.7 to 3 (#4626) Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.7...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 98c1785edd3e7cd3b0185ab4e5a8beb130c3c6c4 Merge: 5d7720678 5d40f47e6 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Sat Mar 19 16:28:01 2022 +0100 Merge pull request #4620 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 5d40f47e61c3cea7dc4fc2ea840b1e456fd4d04d Merge: 705730c09 5d7720678 Author: Hosted Weblate <hosted@weblate.org> Date: Sat Mar 19 10:06:23 2022 +0100 Merge remote-tracking branch 'origin/master' commit 5d7720678d49139831e2b55ab4b0ec95560ff33c Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sat Mar 19 10:06:17 2022 +0100 Update Wikidata-Toolkit to 0.13.1 (#4594) commit 705730c09d950e656defd25f889d8426e6cdaf69 Merge: 134eda026 b50244e9c Author: Hosted Weblate <hosted@weblate.org> Date: Sat Mar 19 09:45:21 2022 +0100 Merge remote-tracking branch 'origin/master' commit b50244e9c614e9a7b7d581094bfe2b4f400a7f68 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sat Mar 19 09:45:15 2022 +0100 Set more restrictive file permissions on workspace.json. Fixes #4600. (#4601) commit 134eda026c17d44a780aa83157f22624019f3d0f Merge: b097aced8 2cbdd6867 Author: Hosted Weblate <hosted@weblate.org> Date: Sat Mar 19 09:07:19 2022 +0100 Merge remote-tracking branch 'origin/master' commit 2cbdd6867675466471d65944d9e40b14864985aa Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Sat Mar 19 01:07:13 2022 -0700 Added spacing between ok/cancel buttons. (#4623) commit b097aced8462317ebe539e9a8cf4b68ad053581e Author: G T <giuliotura@gmail.com> Date: Thu Mar 17 20:51:33 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (800 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit ebd3c8f39ee0367acbc1ff48ccb9c1cfae003aa8 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Wed Mar 16 18:47:17 2022 +0000 Translated using Weblate (Dutch) Currently translated at 46.9% (117 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nl/ commit 818a1362be612662d23f14bd36eea0433b6c97ee Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 16 13:30:51 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (249 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/it/ commit b3f533bcf1ffc78626ea107ad82d79a2786d068d Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 16 13:48:09 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (800 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit 7ccdce9ae2c37990d41fe035b81899f044e4ad5f Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Wed Mar 16 15:07:59 2022 +0000 Translated using Weblate (French) Currently translated at 99.5% (796 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/fr/ commit 442d80fa21c96cba5297356b161fc73fb85dadcb Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 17 08:41:32 2022 +0100 build(deps): bump google-api-services-sheets (#4616) Bumps google-api-services-sheets from v4-rev20220221-1.32.1 to v4-rev20220308-1.32.1. --- updated-dependencies: - dependency-name: com.google.apis:google-api-services-sheets dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0d0579a19c76b85e9b1aa7b601b6c8c22bfbb220 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 17 08:29:50 2022 +0100 build(deps-dev): bump prettier in /main/tests/cypress (#4619) Bumps [prettier](https://github.com/prettier/prettier) from 2.5.1 to 2.6.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.5.1...2.6.0) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 20c0e2f6c352100d00c627afc17abbac0495d1a2 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Wed Mar 16 07:08:47 2022 -0700 Frontend dependency management (#4618) * Added package.json. For #2423. commit 0526ab8ca1a1f8efbce5c13d94dec380bc0c8de0 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 15 23:08:03 2022 +0100 build(deps): bump cypress from 9.5.1 to 9.5.2 in /main/tests/cypress (#4617) Bumps [cypress](https://github.com/cypress-io/cypress) from 9.5.1 to 9.5.2. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - [Commits](https://github.com/cypress-io/cypress/compare/v9.5.1...v9.5.2) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 3f33363fecb84bb8cff5cd46150f4300a76007d5 Merge: b02c0fbdf 993abfffe Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Tue Mar 15 18:28:17 2022 +0100 Merge pull request #4615 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 993abfffe68adbe2b52af4677f572536f4795215 Merge: d969fa1e2 b02c0fbdf Author: Hosted Weblate <hosted@weblate.org> Date: Tue Mar 15 11:11:27 2022 +0100 Merge remote-tracking branch 'origin/master' commit d969fa1e2532063771dc8bc7520cc1a4b44be6da Author: Luca Martinelli <sannita@gmail.com> Date: Mon Mar 14 14:15:22 2022 +0000 Translated using Weblate (Italian) Currently translated at 88.3% (220 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/it/ commit 547fa91366496dc766282bdb28107ba540f4fd33 Author: Luca Martinelli <sannita@gmail.com> Date: Mon Mar 14 14:07:47 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (799 of 799 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit 73ce3cc86e02bf199155ee1fbbe57b450523158f Author: Eihel <ehmworms@hotmail.com> Date: Mon Mar 14 07:04:32 2022 +0000 Translated using Weblate (French) Currently translated at 99.6% (796 of 799 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/fr/ commit b02c0fbdf63a5854b96126fca12d4080a4acd734 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 15 03:11:20 2022 -0700 Add URL remove button (#4609) * Changed min-width to width in the dialog-frame. * Added a trashcan button to remove URL rows after the first row. * Made "Remove this row" tooltip localized text, cleanup. Closes #4606 commit 89eda70f88df55ef7614628b0049ab19a76a280d Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 15 11:08:51 2022 +0100 build(deps-dev): bump eslint in /main/tests/cypress (#4614) Bumps [eslint](https://github.com/eslint/eslint) from 8.10.0 to 8.11.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.10.0...v8.11.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 253b1eab70a93570eac27fae5fb604d122031c4f Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Mon Mar 14 00:07:27 2022 -0700 Edit project tags tooltip (#4613) * Updated command line options documentation * Changed min-width to width in the dialog-frame. * Removed the edit tags tooltip from tags. commit 9d900105ceebe947578367e463a2e0faedee448c Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Sun Mar 13 23:42:06 2022 -0700 Validation of all URLs in URL import (#4605) * Added validation for multiple urls. * Cleanup. * Removed code that disables blank URL rows. commit 864ac30b86a4051b994f9ba6e5fc1a8598f88963 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat Mar 12 07:59:26 2022 +0100 build(deps): bump maven-compiler-plugin from 3.10.0 to 3.10.1 (#4612) Bumps [maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.10.0 to 3.10.1. - [Release notes](https://github.com/apache/maven-compiler-plugin/releases) - [Commits](https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.10.0...maven-compiler-plugin-3.10.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-compiler-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 09f9621e2b0a2b0a6672f27821596738858ed3aa Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Mar 11 21:52:12 2022 +0100 build(deps): bump maven-dependency-plugin from 3.2.0 to 3.3.0 (#4611) Bumps [maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) from 3.2.0 to 3.3.0. - [Release notes](https://github.com/apache/maven-dependency-plugin/releases) - [Commits](https://github.com/apache/maven-dependency-plugin/compare/maven-dependency-plugin-3.2.0...maven-dependency-plugin-3.3.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-dependency-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 29fa9aa1e8e8cd1a70342a89d4a85b1129173c28 Merge: 74664832d 4fe7855b1 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Fri Mar 11 17:00:30 2022 +0100 Merge pull request #4610 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 4fe7855b1c82cc5c92ac208283b6dc3a330981c8 Author: Luca Martinelli <sannita@gmail.com> Date: Thu Mar 10 14:43:48 2022 +0000 Translated using Weblate (Italian) Currently translated at 62.2% (155 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/it/ commit a44c1db3f2c639c485e2ad4f500b528d84843b26 Author: Luca Martinelli <sannita@gmail.com> Date: Thu Mar 10 14:15:47 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (797 of 797 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit 74664832d1291a7dc25b156d75998c1501929786 Author: Thad Guidry <thadguidry@gmail.com> Date: Wed Mar 9 23:23:47 2022 -0600 Update memory allocation steps for Mac (#4604) commit 1ccdf5c12926ad3b7a1eecbaca40691a67aa948a Merge: ee3f71d05 894fc5ba9 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Wed Mar 9 17:41:49 2022 +0100 Merge pull request #4599 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 894fc5ba99d608a7f4231fd062d1834495a50e3b Merge: 6bc9846f1 ee3f71d05 Author: Hosted Weblate <hosted@weblate.org> Date: Wed Mar 9 16:09:36 2022 +0100 Merge remote-tracking branch 'origin/master' commit 6bc9846f1e0334a9a5928ee5b1ee90b2aa119c87 Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 9 14:10:47 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (46 of 46 strings) Translation: OpenRefine/gdata Translate-URL: https://hosted.weblate.org/projects/openrefine/gdata/it/ commit 84738c8854b42161b46e3b294ee8025e6263f814 Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 9 14:15:04 2022 +0000 Translated using Weblate (Italian) Currently translated at 91.9% (733 of 797 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit ee3f71d055e14549885340577405d36abd022141 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Wed Mar 9 16:09:13 2022 +0100 Remove codesigning while notarization does not work, for #4580 #4568 commit 66fdcdc2613c886e050122b36a1a5a1962f422f1 Merge: 5297061b7 022664d89 Author: Hosted Weblate <hosted@weblate.org> Date: Wed Mar 9 08:11:08 2022 +0100 Merge remote-tracking branch 'origin/master' commit 022664d894eddefa6958612027b8d3bf94340c41 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Mar 9 08:11:04 2022 +0100 build(deps): bump jackson.version from 2.13.1 to 2.13.2 (#4596) Bumps `jackson.version` from 2.13.1 to 2.13.2. Updates `jackson-databind` from 2.13.1 to 2.13.2 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Updates `jackson-annotations` from 2.13.1 to 2.13.2 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Updates `jackson-core` from 2.13.1 to 2.13.2 - [Release notes](https://github.com/FasterXML/jackson-core/releases) - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.13.1...jackson-core-2.13.2) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-annotations dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 5297061b7a8872a29c15af55468e16688d74cc3f Merge: 33c772257 b79cb56ed Author: Hosted Weblate <hosted@weblate.org> Date: Wed Mar 9 08:07:53 2022 +0100 Merge remote-tracking branch 'origin/master' commit b79cb56ed72bc58be621a56ffb2ca3e6011bbfaa Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 8 23:07:47 2022 -0800 Rename column popup (#4597) * Replaced rename column browser popup with regular dialog. Closes #4590. * Updated test for rename column and made ok and cancel buttons use localized text. * Added Autofocus for input box. commit 33c7722576cdc023578a37952b0b281b997509e4 Author: Luca Martinelli <sannita@gmail.com> Date: Tue Mar 8 19:51:32 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/it/ commit d49237381db8e7a32e254b430eef2e27b0881d42 Author: Isao Matsunami <isao.matsunami@gmail.com> Date: Tue Mar 8 05:58:40 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (797 of 797 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ja/ commit 943bf3721173f642d819d0d647c95bd83aaee884 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 8 20:07:47 2022 +0100 build(deps): bump mockito-core from 4.3.1 to 4.4.0 (#4598) Bumps [mockito-core](https://github.com/mockito/mockito) from 4.3.1 to 4.4.0. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v4.3.1...v4.4.0) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit b9f9beee857fa78dc987ae8611a2f397ca1093fd Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Mon Mar 7 01:19:41 2022 -0800 Menu items ellipsis (#4591) * Issue #4585 added ellipsis to menu items and updated translation files and JavaScript files * Added /single labels for the common-transform options so menu-edit-cells won't display ellipsis. Cleanup. * Removed ellipsis from the necessary menu items. commit 7aafca318794b12deec8541774d4865ccdefde54 Merge: c225ef9b3 21b4e33c2 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Sun Mar 6 19:27:35 2022 +0100 Merge pull request #4595 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 21b4e33c2d2b90fa95a5ab340ee916c819caad0e Author: M…
commit d6a3e8465bc05bf90a45f3144c2c53f841bf0845 Author: Binita Kumari <78761614+Binita-tech@users.noreply.github.com> Date: Sat Apr 16 01:31:01 2022 +0530 Improved browser launch in Linux distribution (#4706) * fixes #2640 commit 0573be98f488121ea80e79e3cc548ac69bca5b0f Author: Elroy Kanye <elroykanye@gmail.com> Date: Fri Apr 15 19:48:33 2022 +0100 Enhance random number function (#4672) Closes #3143. commit 4e5414fc50804f461239aaeb2f6ec07238b71957 Author: Babi B <babibyoolah@gmail.com> Date: Fri Apr 15 11:06:22 2022 +0100 Improve clustering method documentation; make it skimmable (#4718) * made clustering method document skimmable * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * take out hierarchy, add links to document * took out unnecessary image files * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * added links within the document * capitalization Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * capitalized subheadings * corrected grammatical error * capitalization Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> commit c9c958366a0a306531b6e3880d9b92e2a8d4cc27 Merge: f8fb2ff4c aa777f70b Author: Hosted Weblate <hosted@weblate.org> Date: Fri Apr 15 10:33:18 2022 +0200 Merge branch 'origin/master' into Weblate. commit aa777f70bbbc6b195faa42f07e249f2c44a9efc9 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Wed Apr 13 18:49:34 2022 +0000 Translated using Weblate (Dutch) Currently translated at 55.2% (450 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/nl/ commit f8fb2ff4c031b7889671272cbf7748b73128d122 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Fri Apr 15 10:33:10 2022 +0200 Add specific UI to edit different entity types in Wikibase manifest (#4681) * Distinguish between edits on items and on mediainfo entities with a proper class hierarchy * Introduce class hierarchy for entity edit expressions, to distinguish between various entity types * Update frontend after separation of entities types into different classes * Linting * Fix detection of deleted statements commit b2b3a663472f03365e07ab4c36d1ffa31dd658af Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Apr 15 09:19:09 2022 +0200 build(deps): bump async from 2.6.3 to 2.6.4 in /docs (#4763) Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. - [Release notes](https://github.com/caolan/async/releases) - [Changelog](https://github.com/caolan/async/blob/v2.6.4/CHANGELOG.md) - [Commits](https://github.com/caolan/async/compare/v2.6.3...v2.6.4) --- updated-dependencies: - dependency-name: async dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit d36fab8a86806f8ce3e902549a06bb5049d9ae2f Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Apr 14 23:56:05 2022 -0700 Updated underscore dependency. (#4762) commit dba2b8b1311ce58e98f88d767726955ab098e38b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Apr 13 20:52:39 2022 +0200 build(deps): bump wdtk.version from 0.13.1 to 0.13.2 (#4753) Bumps `wdtk.version` from 0.13.1 to 0.13.2. Updates `wdtk-wikibaseapi` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) Updates `wdtk-datamodel` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) Updates `wdtk-util` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) --- updated-dependencies: - dependency-name: org.wikidata.wdtk:wdtk-wikibaseapi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.wikidata.wdtk:wdtk-datamodel dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.wikidata.wdtk:wdtk-util dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 952cb453080e60b0784049fea6975657c41caee4 Author: Babi B <babibyoolah@gmail.com> Date: Wed Apr 13 15:37:51 2022 +0100 Technical documentation for clustering (#4719) commit 1dcda3c63b24f25afe0a5156eb74cd909901808b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Apr 13 11:02:25 2022 +0200 build(deps): bump async from 3.2.0 to 3.2.3 in /main/tests/cypress (#4750) Bumps [async](https://github.com/caolan/async) from 3.2.0 to 3.2.3. - [Release notes](https://github.com/caolan/async/releases) - [Changelog](https://github.com/caolan/async/blob/master/CHANGELOG.md) - [Commits](https://github.com/caolan/async/compare/v3.2.0...v3.2.3) --- updated-dependencies: - dependency-name: async dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit a9832d25d219c0dc24621bf3f4c8b7bcea77724f Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Wed Apr 13 03:38:19 2022 -0400 Update running.md (#4749) * Update running.md Changing the JVM preferences (arguments) to a table display Space in a JSON array * Also modify in current docs Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 6ac025189dcfd5ec47d19a72ef035546d96ff62b Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Wed Apr 13 00:28:07 2022 -0700 Fixed snapshot builds (attempt 2) (#4748) * Added npm install to snapshot workflow. * Moved npm install command up, and added npm install for the mac build. commit 6b9387f04d8effaa49358677735ee1a4354fb78a Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 23:47:35 2022 +0200 build(deps): bump google-http-client-jackson2 from 1.41.6 to 1.41.7 (#4746) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.6 to 1.41.7. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.6...v1.41.7) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 81de887e34a75d4f744f6b822d9183a84805a5eb Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 23:46:39 2022 +0200 build(deps): bump cypress from 9.5.3 to 9.5.4 in /main/tests/cypress (#4747) Bumps [cypress](https://github.com/cypress-io/cypress) from 9.5.3 to 9.5.4. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - [Commits](https://github.com/cypress-io/cypress/compare/v9.5.3...v9.5.4) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit ce79221f12d33196d0d35a6150d9e29aa76a1e6f Author: MAGEMBE SHARIF <48015736+sherrif10@users.noreply.github.com> Date: Tue Apr 12 19:29:32 2022 +0300 InterruptedException Ignored When Stopping the Servlet (#4734) Fixes #4694. Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 386e1d90428e83cfbaef921753cfbc1c5d46435b Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 14:25:29 2022 +0000 Translated using Weblate (Dutch) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/nl/ commit bd844b224bbf3a78ee41fed6e5e4b90fc69ee56f Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:39:46 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 5.0% (41 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ml/ commit c00c85c7dce66d57c437f19366ed52843ff4c35a Author: Adithya K <adithyak04@gmail.com> Date: Mon Apr 11 13:54:01 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 7.2% (18 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/ml/ commit 1f6625dd7af0689aa54014fed8b6fbc3ead717f1 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:52:26 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 7.2% (18 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/ml/ commit a73b830c95ff412b2fbcbdf0bb7ce26f7ed6834c Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 15:49:22 2022 +0000 Translated using Weblate (Dutch) Currently translated at 53.8% (134 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nl/ commit 4c06a25aaea97587cd8f21e46b15446c12ee60cf Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 13:55:27 2022 +0000 Translated using Weblate (Dutch) Currently translated at 54.8% (447 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/nl/ commit 778a8c42f3e683d9fc8d049148f0516b8212ef60 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 20:04:52 2022 +0000 Translated using Weblate (Norwegian Bokmål) Currently translated at 64.6% (161 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nb_NO/ commit 5b2c9ef3b26823a014e5498e2652db6e858a1a42 Author: MAGEMBE SHARIF <48015736+sherrif10@users.noreply.github.com> Date: Tue Apr 12 13:22:27 2022 +0300 Add Headers Lincense to the project code base (#4736) commit 88c46768dfa796441a62b050cc35b39cb955de15 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 09:51:40 2022 +0200 build(deps-dev): bump eslint in /main/tests/cypress (#4740) Bumps [eslint](https://github.com/eslint/eslint) from 8.12.0 to 8.13.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.12.0...v8.13.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit d0b22c3197840fc35bc92dfd804c82693dfc4a88 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Apr 12 00:07:13 2022 -0700 Added npm install to snapshot workflow. (#4742) commit 8c074ae5a9908519e2f3a4ee7db1b2c8c44b0211 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 11 21:21:03 2022 +0200 build(deps): bump actions/setup-node from 3.1.0 to 3.1.1 (#4739) Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.1.0 to 3.1.1. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.1.0...v3.1.1) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 75f446cfaed00a33cf06d6ee19242b37a92d49a2 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 16:18:07 2022 +0200 Added translation using Weblate (Dutch) commit e31ec961a6c62af4bbd4cd1a816bc32ff8a361d2 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:37:44 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 0.7% (6 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ml/ commit ae12b1396ad13931936eb5532c32f194986b7298 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:22:11 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 44.4% (28 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/ml/ commit 72a0f9f95bca8cd3a4d293cb7f30c095057e8920 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Mon Apr 11 05:43:08 2022 -0700 build(webapp): bump jquery-ui from 1.12.1 to 1.13.1 (#4713) * Upgraded jquery-ui from 1.12.1 to 1.13.1. * Set the defaultCommandTimeout in cypress.json and removed the nodeVersion option which is obsolete and no longer supported. * Fixed a flaky test. commit 6cbced4144964d33205fb775a3b6211fb2e2c001 Author: Elroy Kanye <elroykanye@gmail.com> Date: Mon Apr 11 12:11:10 2022 +0100 set division operator call to return NaN on 0/0 (#4689) * set division operator call to return NaN on 0/0 * adjusted formatting - OperatorCallExpr * add tests for 0/0 division commit 99e357870b3720a3ce6ca9d3c71e4bf9db27363e Merge: 0b7f4302f 8282b727f Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 10:21:31 2022 -0400 Merge pull request #4732 from OpenRefine/antoine2711-contributing-3 Update contributing.md commit 8282b727f762edd6d5dd38150a0cf07e4cf688c8 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 10:09:40 2022 -0400 Update contributing.md Fixing malformed links. commit 0b7f4302f9b1af7e857eae5cd674eaac6935d016 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 09:46:22 2022 -0400 Update contributing.md (#4731) Few mistakes and a link to #maintainer-guidelines commit cc4c2c414cb3a8a66a147bdf5d66965e378c61f8 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 06:31:26 2022 -0400 Update contributing.md for Functional Tests (#4726) * Update contributing.md Changes for Functional Tests. Also, more affirmative about Java test case. * Update docs/versioned_docs/version-3.5/technical-reference/contributing.md * Update contributing.md Changes for Functional Tests. Also, more affirmative about Java test case. * Update docs/docs/technical-reference/contributing.md Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 432f02338d10f75cacc899e47cfe753f1a2b6c14 Merge: 1b02bf452 b64f203cd Author: Hosted Weblate <hosted@weblate.org> Date: Sun Apr 10 10:56:49 2022 +0200 Merge branch 'origin/master' into Weblate. commit 1b02bf45282577a4c968117e5b4b3731f4f32529 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun Apr 10 10:56:43 2022 +0200 build(deps): bump clojure from 1.11.0 to 1.11.1 (#4699) Bumps [clojure](https://github.com/clojure/clojure) from 1.11.0 to 1.11.1. - [Release notes](https://github.com/clojure/clojure/releases) - [Changelog](https://github.com/clojure/clojure/blob/master/changes.md) - [Commits](https://github.com/clojure/clojure/compare/clojure-1.11.0...clojure-1.11.1) --- updated-dependencies: - dependency-name: org.clojure:clojure dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit b64f203cd989b0dc87979045d780d1973ce0a85a Author: 3ole <ole-s@mailbox.org> Date: Fri Apr 8 19:34:47 2022 +0000 Translated using Weblate (German) Currently translated at 99.3% (810 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/de/ commit f82da95708aa4ca46ac96590d2cd3d6dc6378428 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Sun Apr 10 01:09:44 2022 -0700 Improved error handling for pow and exp (#4701) * Removed unneeded null checks from math functions, added test for math functions, and added error messages for pow and exp. * Cleanup. * Cleanup/reformatting. * Cleanup/reformatting. commit e3ac29e59163ca08867d0583c1523258e9521cc8 Author: Thad Guidry <thadguidry@gmail.com> Date: Sun Apr 10 03:05:31 2022 -0500 Clear up some ambiguity in Reconciling with unique ids (#4711) * Clear up some ambiguity in Reconciling with unique ids Adds clarity with a better term of "known ids". * Also improve current docs commit 652575ab6334d5d926d1d4db729b29638778a0f1 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 03:32:05 2022 -0400 Update contributing.md for assignments and Programs (Outreachy & GSoC) (#4725) * Update contributing.md Update contributing to add the notion of Issue assignements. * Update docs/versioned_docs/version-3.5/technical-reference/contributing.md Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 34961169b22a79699fbdf22492c2f78b678df32f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun Apr 10 08:57:22 2022 +0200 build(deps): bump actions/setup-java from 2 to 3 (#4720) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 2 to 3. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/setup-java dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0ba3b924377f051c734c99cb1d8c05b5f5d231a9 Merge: 3d6960912 a20d4f5fd Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Fri Apr 8 10:16:48 2022 +0200 Merge pull request #4714 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit a20d4f5fd5fffaaba8a18db79e7e003e6652a642 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Fri Apr 8 02:07:47 2022 +0000 Translated using Weblate (French) Currently translated at 100.0% (249 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/fr/ commit 5e58df1e89bbabd1b727a3d53ae2269167c09a6c Author: S H <higa432@gmail.com> Date: Fri Apr 8 01:06:26 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/ja/ commit fdd0f11f57ebfc496ec5521327a2eea39cde96fb Author: Isao Matsunami <isao.matsunami@gmail.com> Date: Thu Apr 7 17:18:33 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (815 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ja/ commit 3d6960912f418e4bbee089771b7c9aae3d2177df Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 20:15:42 2022 +0200 build(deps): bump google-http-client-jackson2 from 1.41.5 to 1.41.6 (#4712) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.5 to 1.41.6. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.5...v1.41.6) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit cf52c501db08c464bb6424478b55ce4685ec250c Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 20:13:51 2022 +0200 build(deps): bump jacoco-maven-plugin from 0.8.7 to 0.8.8 (#4700) Bumps [jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.7 to 0.8.8. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.7...v0.8.8) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 35e54fa7ee8fc299dbf245b1e6453e9c852cabdc Author: ComgLq24 <84132969+ComgLq24@users.noreply.github.com> Date: Fri Apr 8 02:12:01 2022 +0800 fix handling oft empty ODS files (#4709) commit f0489975665c535f69d071651f47e9f15a30f717 Author: Elroy Kanye <elroykanye@gmail.com> Date: Thu Apr 7 19:04:52 2022 +0100 update link to get testng (#4688) commit a5e1f358f1ce42619361225969ab75bf5ed1cc00 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 17:42:11 2022 +0200 build(deps): bump maven-clean-plugin from 3.1.0 to 3.2.0 (#4698) Bumps [maven-clean-plugin](https://github.com/apache/maven-clean-plugin) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/apache/maven-clean-plugin/releases) - [Commits](https://github.com/apache/maven-clean-plugin/compare/maven-clean-plugin-3.1.0...maven-clean-plugin-3.2.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-clean-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit f31ac9e205a30a2e9902fb5d75910fcc44e4fbc7 Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Thu Apr 7 18:27:25 2022 +0300 "Reconcile > Use values as identifiers" does not reconcile #4655 #4664 (#4666) * Notification when selecting service * Notice moved to body * fixes 3172-Added a period to the notification message commit 9c5bde002e44e0fee4f7f124ad58d93eb7f57b52 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Apr 7 08:09:25 2022 -0700 Added encoding fix for Commands. (#4710) commit bb765b42b321f35c99b99582bb07b8330cd4954e Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Tue Apr 5 20:56:01 2022 +0300 Fixes #4081 Unreleased Resource: Streams (#4691) * Fixes #4081-Closed the stream resource * #4081-Closed the stream resource after receiving byte[] commit ac1f9eab243a5797b9c339ff93d1441a44478854 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 5 11:50:17 2022 +0200 build(deps-dev): bump eslint in /main/tests/cypress (#4649) Bumps [eslint](https://github.com/eslint/eslint) from 8.11.0 to 8.12.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.11.0...v8.12.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit ff991e57dc4bfcd40a2b7bfb1164240624118c7e Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Tue Apr 5 11:25:23 2022 +0300 Fixes #2316 "Match other cells with same content" keeps appearing as the default choice #2316 (#4687) * Store user preference * Removed updating of DOM on closing recon match dialog , updated global variable name * Fixes #2316-Simplified if else expression commit 78b906540d9a8e90209ad6779c46fe8dfa9bcd7f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 5 10:13:48 2022 +0200 build(deps-dev): bump prettier in /main/tests/cypress (#4696) Bumps [prettier](https://github.com/prettier/prettier) from 2.6.1 to 2.6.2. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.6.1...2.6.2) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 6474416b55a1151a5b32c6a17aa3eb9f2ebd0408 Author: Binita Kumari <78761614+Binita-tech@users.noreply.github.com> Date: Tue Apr 5 13:41:59 2022 +0530 Improvement of grel docs (#4654) commit e80889c42815c8a110e225ed7c7fa3748b9808df Author: Cece <45926850+SIXIN-LI@users.noreply.github.com> Date: Sat Apr 2 22:08:55 2022 -0700 fix OpenRefine#4656 - clarify location of workspace (#4663) commit f09b13636c7aac625bb3fbeaec2e3eacae34eb04 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sun Apr 3 07:08:09 2022 +0200 Add main/webapp/modules/core/3rdparty/ to .gitignore (#4665) commit 46517df86ccc42dca7ad4724be95bd7d0086ec3a Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sun Apr 3 07:07:28 2022 +0200 Add mention of com.google.refine.Refine to our developer docs (#4680) * Update build-test-run.md * Update build-test-run.md commit b5c522eab6ba0eabed5087122820ddad75c6ee80 Author: Shelomi Silva <50749107+shelomi99@users.noreply.github.com> Date: Sun Apr 3 10:35:34 2022 +0530 [SQL Exporter] Substitute invalid characters in column names with underscore (#1940) (#4685) * [SQL Exporter] Substitute invalid characters in column names with underscore (#1940) * Add test case to validate SQL export column names with special characters commit 1ed4aaba92564f395c0a91c12c40725455abcc42 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat Apr 2 13:18:40 2022 +0200 build(deps): bump actions/setup-node from 3.0.0 to 3.1.0 (#4683) Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.0.0 to 3.1.0. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.0.0...v3.1.0) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 7ab6eed6deddf344d5d56ae1aae232de9863d91b Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Fri Apr 1 02:14:07 2022 -0700 Added missing HTML tags. (#4678) commit 440b03b4748219b92b05777b383e1a4b47449674 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Fri Apr 1 02:08:32 2022 -0700 Fixed broken link in wikidata dialog. (#4679) commit 3bf4635f1706dabb70d9a3a5c3ab544564b87b69 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 31 01:30:05 2022 -0700 Changed 'Unselect' and 'De-select' to 'Deselect' and 'Unselect all' to 'Deselect all' (#4671) commit 8c7a6b5eedf774ad1dab5ed1d6cd394b19d862fa Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 31 01:24:51 2022 -0700 Fixed alignment in wikibase dialogs. (#4674) commit a762ce90c766fa03af08178ecd515f136f49be99 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 31 01:22:15 2022 -0700 Removed 4px border from dialogs, and added a header for the dialog in All Columns > Transform... (#4668) commit 499ce64c160bbd3e87fc6f5baef11fe2812dca2b Author: Shriya <93962518+shriyasankhyan@users.noreply.github.com> Date: Wed Mar 30 23:02:09 2022 +0530 Grammatical Error (#4667) commit 4e0cfe5d6c0dc7c0ab704549a647deb307da5548 Author: Cece <45926850+SIXIN-LI@users.noreply.github.com> Date: Wed Mar 30 00:22:19 2022 -0700 update Maven version to 3.8.5 (#4653) fixes #4644 commit c18a362b7a4098a9a7fb0de32c6c93d1667d13e7 Author: Elroy Kanye <elroykanye@gmail.com> Date: Wed Mar 30 08:19:41 2022 +0100 fixes #4640 added example of Regex usage to desc of replace() (#4641) * fixes #4640 added example of Regex usage to desc of replace() * match grel function description with example from docs commit 5bfae756836cb95d8ff75964cf5625ba1872b94b Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Wed Mar 30 00:09:48 2022 -0700 Wikibase dialog buttons (#4630) * Moved login buttons to the dialog footer in relevant dialogs. * Changed back to submit event. Cleanup. commit 2d4e382652ec894ebc28b57b133ce62ce859ff81 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 29 23:38:21 2022 -0700 Fixed dialog headers. (#4661) commit b47d250e6369bd1fc98cce1a054e8092702a7d9b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 21:56:17 2022 +0200 build(deps): bump cypress from 9.5.2 to 9.5.3 in /main/tests/cypress (#4660) Bumps [cypress](https://github.com/cypress-io/cypress) from 9.5.2 to 9.5.3. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - [Commits](https://github.com/cypress-io/cypress/compare/v9.5.2...v9.5.3) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 054a3459257d4ecbcbc7956f58a24fdc4cffa93b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 21:53:50 2022 +0200 build(deps): bump maven-shade-plugin from 3.2.4 to 3.3.0 (#4658) Bumps [maven-shade-plugin](https://github.com/apache/maven-shade-plugin) from 3.2.4 to 3.3.0. - [Release notes](https://github.com/apache/maven-shade-plugin/releases) - [Commits](https://github.com/apache/maven-shade-plugin/compare/maven-shade-plugin-3.2.4...maven-shade-plugin-3.3.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-shade-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 4ef8a273f579eb96888458ce5d9b47764af2fb7c Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 21:38:36 2022 +0200 build(deps): bump google-api-services-sheets (#4659) Bumps google-api-services-sheets from v4-rev20220308-1.32.1 to v4-rev20220322-1.32.1. --- updated-dependencies: - dependency-name: com.google.apis:google-api-services-sheets dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 2dafb62d4fd4de539acf1fdd54c541ad2dea062d Author: Raphael Das Gupta <github.com@raphael.dasgupta.ch> Date: Tue Mar 29 16:00:09 2022 +0200 fix typo in "reconciliation" (#4657) * fix typo in "reconciliation" * Port to 3.6 docs Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 3cbb5b143df3caa6e50d5493a34cee3f12cbcf77 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 29 01:23:32 2022 -0700 Redirect to wiki for Google Export options (#4635) * Added redirect to wiki for Google Export options if credentials are undefined. * Remove check for host, only rely on CLIENT_ID and CLIENT_SECRET being empty Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 1ef305152ffe755c207a342488d94fe17b953518 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 29 01:22:12 2022 -0700 Removed colons from labels that don't need them (#4643) * Removed : and ... from labels that don't need them * Updated tests and removed trailing whitespace. * Cleanup. Closes #4639 commit dddced56e1ac744d0674d9e5a157135cce452d05 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 09:56:57 2022 +0200 build(deps): bump plist from 3.0.4 to 3.0.5 in /main/tests/cypress (#4650) Bumps [plist](https://github.com/TooTallNate/node-plist) from 3.0.4 to 3.0.5. - [Release notes](https://github.com/TooTallNate/node-plist/releases) - [Changelog](https://github.com/TooTallNate/plist.js/blob/master/History.md) - [Commits](https://github.com/TooTallNate/node-plist/commits) --- updated-dependencies: - dependency-name: plist dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 6d26e1b931c92c8e52efe753f532c7cb73d4b461 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Mar 28 21:42:58 2022 +0200 build(deps): bump jmh.version from 1.34 to 1.35 (#4647) Bumps `jmh.version` from 1.34 to 1.35. Updates `jmh-core` from 1.34 to 1.35 Updates `jmh-generator-annprocess` from 1.34 to 1.35 --- updated-dependencies: - dependency-name: org.openjdk.jmh:jmh-core dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.openjdk.jmh:jmh-generator-annprocess dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit fad3c21e4f177ef22088c0c7aa9a391a2e2d6627 Author: Elroy Kanye <elroykanye@gmail.com> Date: Mon Mar 28 06:17:21 2022 +0100 fixes #3133 modify default return of call() for ToString to state for Number format (#4642) commit 342f5c3fe249681f243bcbe7b5e667ed8830b94c Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Mon Mar 28 07:05:49 2022 +0200 Add npm instructions to 3.5 release It was not actually required in 3.5 but that is what the website is currently showing and we have a flock of Outreachy applicants trying to setup the project. commit 083c7feba3b84d97ec884f3c2b38b6f1f0249640 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Mar 25 21:07:51 2022 +0100 build(deps-dev): bump prettier in /main/tests/cypress (#4638) Bumps [prettier](https://github.com/prettier/prettier) from 2.6.0 to 2.6.1. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.6.0...2.6.1) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 9394514967e998d2c97a63a01a1d901854f1a5de Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Mar 25 21:07:18 2022 +0100 build(deps): bump google-http-client-jackson2 from 1.41.4 to 1.41.5 (#4637) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.4 to 1.41.5. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.4...v1.41.5) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 1169c2e26db5fcdf8f666d5fd912f936e7978e85 Author: khadijm <88087734+khadijm@users.noreply.github.com> Date: Fri Mar 25 09:55:46 2022 +0100 disable spellcheck on input text type (#4636) Closes #3004. commit 2e84edfab19885f6d1a72e9a6b0844d78b46fd42 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 24 17:10:50 2022 +0100 build(deps): bump minimist from 1.2.5 to 1.2.6 in /docs (#4634) Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) --- updated-dependencies: - dependency-name: minimist dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 5c07bc39917d19a9c69d800a53d75c813291591a Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 24 17:10:25 2022 +0100 build(deps): bump minimist from 1.2.5 to 1.2.6 in /main/tests/cypress (#4633) Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) --- updated-dependencies: - dependency-name: minimist dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 39f72d74e099a3ab5a42a63d4216de6e7d85cfd6 Merge: aeb0bb619 ca6dcafc9 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Thu Mar 24 14:30:43 2022 +0100 Merge pull request #4632 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit ca6dcafc9dca6f340c42cf83cb173899c12a5e7f Merge: 04cc2931c aeb0bb619 Author: Hosted Weblate <hosted@weblate.org> Date: Thu Mar 24 12:58:29 2022 +0100 Merge remote-tracking branch 'origin/master' commit 04cc2931c335aaa30f3a91144cc4ea201b866795 Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 07:27:27 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 3.6% (9 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/zh_Hans/ commit 690f32732011b6db5a87d909f8d89c3e8ef8c79d Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 07:04:15 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (46 of 46 strings) Translation: OpenRefine/gdata Translate-URL: https://hosted.weblate.org/projects/openrefine/gdata/zh_Hans/ commit 20baed02df650b3eb16e1e9f9d721568b646c81c Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 05:51:29 2022 +0000 Translated using Weblate (Chinese (Traditional)) Currently translated at 9.3% (75 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/zh_Hant/ commit 8a07f1fb266ae00939dcf93a8d48bd0e4df3cf2d Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 06:52:33 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/zh_Hans/ commit bf243cdfb916d8ccc6012b2c0528efa3c2f291ba Author: Aftabuzzaman <Leemon432@gmail.com> Date: Mon Mar 21 22:44:34 2022 +0000 Translated using Weblate (Bengali) Currently translated at 10.0% (80 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/bn/ commit 73d3ba3a6cf506e5a1eb1a0c97b787e28cf77547 Author: MarcoDiazGarcia <marco.diaz.garcia@mni.thm.de> Date: Sat Mar 19 09:43:42 2022 +0000 Translated using Weblate (German) Currently translated at 90.6% (725 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/de/ commit 7328056def1b6f942fc5975cf2c46c6bc8e7ac11 Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 06:02:27 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 78.7% (630 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/zh_Hans/ commit aeb0bb619aec17333f9182bc531f4d642294c6ec Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 24 04:58:14 2022 -0700 Frontend dependency management part II (#4621) Part II for #2423. Partial fix for #3958. commit 463a2c4e7bca094af7b0a49a911c67df28e395ff Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 08:26:23 2022 +0100 Added translation using Weblate (Chinese (Simplified)) commit 264c9c09749488ec640f4018214a87ab92779677 Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 08:03:02 2022 +0100 Added translation using Weblate (Chinese (Simplified)) commit 2e388cfe3c6a46d3a1ef4abfce682712a5b26129 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 22 19:35:32 2022 +0100 build(deps): bump clojure from 1.10.3 to 1.11.0 (#4629) Bumps [clojure](https://github.com/clojure/clojure) from 1.10.3 to 1.11.0. - [Release notes](https://github.com/clojure/clojure/releases) - [Changelog](https://github.com/clojure/clojure/blob/master/changes.md) - [Commits](https://github.com/clojure/clojure/compare/clojure-1.10.3...clojure-1.11.0) --- updated-dependencies: - dependency-name: org.clojure:clojure dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 85b5ee495f1b384007c9116548f67bd59b4cd718 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 22 09:00:37 2022 +0100 build(deps): bump poi.version from 5.2.1 to 5.2.2 (#4627) Bumps `poi.version` from 5.2.1 to 5.2.2. Updates `poi` from 5.2.1 to 5.2.2 Updates `poi-ooxml` from 5.2.1 to 5.2.2 --- updated-dependencies: - dependency-name: org.apache.poi:poi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.apache.poi:poi-ooxml dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0d92f1de410d9c67cccb800969661fff23750e44 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 22 09:00:00 2022 +0100 build(deps): bump actions/cache from 2.1.7 to 3 (#4626) Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.7...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 98c1785edd3e7cd3b0185ab4e5a8beb130c3c6c4 Merge: 5d7720678 5d40f47e6 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Sat Mar 19 16:28:01 2022 +0100 Merge pull request #4620 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 5d40f47e61c3cea7dc4fc2ea840b1e456fd4d04d Merge: 705730c09 5d7720678 Author: Hosted Weblate <hosted@weblate.org> Date: Sat Mar 19 10:06:23 2022 +0100 Merge remote-tracking branch 'origin/master' commit 5d7720678d49139831e2b55ab4b0ec95560ff33c Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sat Mar 19 10:06:17 2022 +0100 Update Wikidata-Toolkit to 0.13.1 (#4594) commit 705730c09d950e656defd25f889d8426e6cdaf69 Merge: 134eda026 b50244e9c Author: Hosted Weblate <hosted@weblate.org> Date: Sat Mar 19 09:45:21 2022 +0100 Merge remote-tracking branch 'origin/master' commit b50244e9c614e9a7b7d581094bfe2b4f400a7f68 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sat Mar 19 09:45:15 2022 +0100 Set more restrictive file permissions on workspace.json. Fixes #4600. (#4601) commit 134eda026c17d44a780aa83157f22624019f3d0f Merge: b097aced8 2cbdd6867 Author: Hosted Weblate <hosted@weblate.org> Date: Sat Mar 19 09:07:19 2022 +0100 Merge remote-tracking branch 'origin/master' commit 2cbdd6867675466471d65944d9e40b14864985aa Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Sat Mar 19 01:07:13 2022 -0700 Added spacing between ok/cancel buttons. (#4623) commit b097aced8462317ebe539e9a8cf4b68ad053581e Author: G T <giuliotura@gmail.com> Date: Thu Mar 17 20:51:33 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (800 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit ebd3c8f39ee0367acbc1ff48ccb9c1cfae003aa8 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Wed Mar 16 18:47:17 2022 +0000 Translated using Weblate (Dutch) Currently translated at 46.9% (117 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nl/ commit 818a1362be612662d23f14bd36eea0433b6c97ee Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 16 13:30:51 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (249 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/it/ commit b3f533bcf1ffc78626ea107ad82d79a2786d068d Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 16 13:48:09 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (800 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit 7ccdce9ae2c37990d41fe035b81899f044e4ad5f Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Wed Mar 16 15:07:59 2022 +0000 Translated using Weblate (French) Currently translated at 99.5% (796 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/fr/ commit 442d80fa21c96cba5297356b161fc73fb85dadcb Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 17 08:41:32 2022 +0100 build(deps): bump google-api-services-sheets (#4616) Bumps google-api-services-sheets from v4-rev20220221-1.32.1 to v4-rev20220308-1.32.1. --- updated-dependencies: - dependency-name: com.google.apis:google-api-services-sheets dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0d0579a19c76b85e9b1aa7b601b6c8c22bfbb220 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 17 08:29:50 2022 +0100 build(deps-dev): bump prettier in /main/tests/cypress (#4619) Bumps [prettier](https://github.com/prettier/prettier) from 2.5.1 to 2.6.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.5.1...2.6.0) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 20c0e2f6c352100d00c627afc17abbac0495d1a2 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Wed Mar 16 07:08:47 2022 -0700 Frontend dependency management (#4618) * Added package.json. For #2423. commit 0526ab8ca1a1f8efbce5c13d94dec380bc0c8de0 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 15 23:08:03 2022 +0100 build(deps): bump cypress from 9.5.1 to 9.5.2 in /main/tests/cypress (#4617) Bumps [cypress](https://github.com/cypress-io/cypress) from 9.5.1 to 9.5.2. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - [Commits](https://github.com/cypress-io/cypress/compare/v9.5.1...v9.5.2) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 3f33363fecb84bb8cff5cd46150f4300a76007d5 Merge: b02c0fbdf 993abfffe Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Tue Mar 15 18:28:17 2022 +0100 Merge pull request #4615 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 993abfffe68adbe2b52af4677f572536f4795215 Merge: d969fa1e2 b02c0fbdf Author: Hosted Weblate <hosted@weblate.org> Date: Tue Mar 15 11:11:27 2022 +0100 Merge remote-tracking branch 'origin/master' commit d969fa1e2532063771dc8bc7520cc1a4b44be6da Author: Luca Martinelli <sannita@gmail.com> Date: Mon Mar 14 14:15:22 2022 +0000 Translated using Weblate (Italian) Currently translated at 88.3% (220 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/it/ commit 547fa91366496dc766282bdb28107ba540f4fd33 Author: Luca Martinelli <sannita@gmail.com> Date: Mon Mar 14 14:07:47 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (799 of 799 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit 73ce3cc86e02bf199155ee1fbbe57b450523158f Author: Eihel <ehmworms@hotmail.com> Date: Mon Mar 14 07:04:32 2022 +0000 Translated using Weblate (French) Currently translated at 99.6% (796 of 799 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/fr/ commit b02c0fbdf63a5854b96126fca12d4080a4acd734 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 15 03:11:20 2022 -0700 Add URL remove button (#4609) * Changed min-width to width in the dialog-frame. * Added a trashcan button to remove URL rows after the first row. * Made "Remove this row" tooltip localized text, cleanup. Closes #4606 commit 89eda70f88df55ef7614628b0049ab19a76a280d Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 15 11:08:51 2022 +0100 build(deps-dev): bump eslint in /main/tests/cypress (#4614) Bumps [eslint](https://github.com/eslint/eslint) from 8.10.0 to 8.11.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.10.0...v8.11.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 253b1eab70a93570eac27fae5fb604d122031c4f Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Mon Mar 14 00:07:27 2022 -0700 Edit project tags tooltip (#4613) * Updated command line options documentation * Changed min-width to width in the dialog-frame. * Removed the edit tags tooltip from tags. commit 9d900105ceebe947578367e463a2e0faedee448c Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Sun Mar 13 23:42:06 2022 -0700 Validation of all URLs in URL import (#4605) * Added validation for multiple urls. * Cleanup. * Removed code that disables blank URL rows. commit 864ac30b86a4051b994f9ba6e5fc1a8598f88963 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat Mar 12 07:59:26 2022 +0100 build(deps): bump maven-compiler-plugin from 3.10.0 to 3.10.1 (#4612) Bumps [maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.10.0 to 3.10.1. - [Release notes](https://github.com/apache/maven-compiler-plugin/releases) - [Commits](https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.10.0...maven-compiler-plugin-3.10.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-compiler-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 09f9621e2b0a2b0a6672f27821596738858ed3aa Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Mar 11 21:52:12 2022 +0100 build(deps): bump maven-dependency-plugin from 3.2.0 to 3.3.0 (#4611) Bumps [maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) from 3.2.0 to 3.3.0. - [Release notes](https://github.com/apache/maven-dependency-plugin/releases) - [Commits](https://github.com/apache/maven-dependency-plugin/compare/maven-dependency-plugin-3.2.0...maven-dependency-plugin-3.3.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-dependency-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 29fa9aa1e8e8cd1a70342a89d4a85b1129173c28 Merge: 74664832d 4fe7855b1 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Fri Mar 11 17:00:30 2022 +0100 Merge pull request #4610 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 4fe7855b1c82cc5c92ac208283b6dc3a330981c8 Author: Luca Martinelli <sannita@gmail.com> Date: Thu Mar 10 14:43:48 2022 +0000 Translated using Weblate (Italian) Currently translated at 62.2% (155 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/it/ commit a44c1db3f2c639c485e2ad4f500b528d84843b26 Author: Luca Martinelli <sannita@gmail.com> Date: Thu Mar 10 14:15:47 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (797 of 797 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit 74664832d1291a7dc25b156d75998c1501929786 Author: Thad Guidry <thadguidry@gmail.com> Date: Wed Mar 9 23:23:47 2022 -0600 Update memory allocation steps for Mac (#4604) commit 1ccdf5c12926ad3b7a1eecbaca40691a67aa948a Merge: ee3f71d05 894fc5ba9 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Wed Mar 9 17:41:49 2022 +0100 Merge pull request #4599 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 894fc5ba99d608a7f4231fd062d1834495a50e3b Merge: 6bc9846f1 ee3f71d05 Author: Hosted Weblate <hosted@weblate.org> Date: Wed Mar 9 16:09:36 2022 +0100 Merge remote-tracking branch 'origin/master' commit 6bc9846f1e0334a9a5928ee5b1ee90b2aa119c87 Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 9 14:10:47 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (46 of 46 strings) Translation: OpenRefine/gdata Translate-URL: https://hosted.weblate.org/projects/openrefine/gdata/it/ commit 84738c8854b42161b46e3b294ee8025e6263f814 Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 9 14:15:04 2022 +0000 Translated using Weblate (Italian) Currently translated at 91.9% (733 of 797 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit ee3f71d055e14549885340577405d36abd022141 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Wed Mar 9 16:09:13 2022 +0100 Remove codesigning while notarization does not work, for #4580 #4568 commit 66fdcdc2613c886e050122b36a1a5a1962f422f1 Merge: 5297061b7 022664d89 Author: Hosted Weblate <hosted@weblate.org> Date: Wed Mar 9 08:11:08 2022 +0100 Merge remote-tracking branch 'origin/master' commit 022664d894eddefa6958612027b8d3bf94340c41 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Mar 9 08:11:04 2022 +0100 build(deps): bump jackson.version from 2.13.1 to 2.13.2 (#4596) Bumps `jackson.version` from 2.13.1 to 2.13.2. Updates `jackson-databind` from 2.13.1 to 2.13.2 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Updates `jackson-annotations` from 2.13.1 to 2.13.2 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Updates `jackson-core` from 2.13.1 to 2.13.2 - [Release notes](https://github.com/FasterXML/jackson-core/releases) - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.13.1...jackson-core-2.13.2) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-annotations dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 5297061b7a8872a29c15af55468e16688d74cc3f Merge: 33c772257 b79cb56ed Author: Hosted Weblate <hosted@weblate.org> Date: Wed Mar 9 08:07:53 2022 +0100 Merge remote-tracking branch 'origin/master' commit b79cb56ed72bc58be621a56ffb2ca3e6011bbfaa Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 8 23:07:47 2022 -0800 Rename column popup (#4597) * Replaced rename column browser popup with regular dialog. Closes #4590. * Updated test for rename column and made ok and cancel buttons use localized text. * Added Autofocus for input box. commit 33c7722576cdc023578a37952b0b281b997509e4 Author: Luca Martinelli <sannita@gmail.com> Date: Tue Mar 8 19:51:32 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/it/ commit d49237381db8e7a32e254b430eef2e27b0881d42 Author: Isao Matsunami <isao.matsunami@gmail.com> Date: Tue Mar 8 05:58:40 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (797 of 797 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ja/ commit 943bf3721173f642d819d0d647c95bd83aaee884 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 8 20:07:47 2022 +0100 build(deps): bump mockito-core from 4.3.1 to 4.4.0 (#4598) Bumps [mockito-core](https://github.com/mockito/mockito) from 4.3.1 to 4.4.0. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v4.3.1...v4.4.0) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit b9f9beee857fa78dc987ae8611a2f397ca1093fd Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Mon Mar 7 01:19:41 2022 -0800 Menu items ellipsis (#4591) * Issue #4585 added ellipsis to menu items and updated translation files and JavaScript files * Added /single labels for the common-transform options so menu-edit-cells won't display ellipsis. Cleanup. * Removed ellipsis from the necessary menu items. commit 7aafca318794b12deec8541774d4865ccdefde54 Merge: c225ef9b3 21b4e33c2 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Sun Mar 6 19:27:35 2022 +0100 Merge pull request #4595 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 21b4e33c2d2b90fa95a5ab340ee916c819caad0e Author: M…
commit d6a3e8465bc05bf90a45f3144c2c53f841bf0845 Author: Binita Kumari <78761614+Binita-tech@users.noreply.github.com> Date: Sat Apr 16 01:31:01 2022 +0530 Improved browser launch in Linux distribution (#4706) * fixes #2640 commit 0573be98f488121ea80e79e3cc548ac69bca5b0f Author: Elroy Kanye <elroykanye@gmail.com> Date: Fri Apr 15 19:48:33 2022 +0100 Enhance random number function (#4672) Closes #3143. commit 4e5414fc50804f461239aaeb2f6ec07238b71957 Author: Babi B <babibyoolah@gmail.com> Date: Fri Apr 15 11:06:22 2022 +0100 Improve clustering method documentation; make it skimmable (#4718) * made clustering method document skimmable * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * take out hierarchy, add links to document * took out unnecessary image files * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * added links within the document * capitalization Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * capitalized subheadings * corrected grammatical error * capitalization Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> commit c9c958366a0a306531b6e3880d9b92e2a8d4cc27 Merge: f8fb2ff4c aa777f70b Author: Hosted Weblate <hosted@weblate.org> Date: Fri Apr 15 10:33:18 2022 +0200 Merge branch 'origin/master' into Weblate. commit aa777f70bbbc6b195faa42f07e249f2c44a9efc9 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Wed Apr 13 18:49:34 2022 +0000 Translated using Weblate (Dutch) Currently translated at 55.2% (450 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/nl/ commit f8fb2ff4c031b7889671272cbf7748b73128d122 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Fri Apr 15 10:33:10 2022 +0200 Add specific UI to edit different entity types in Wikibase manifest (#4681) * Distinguish between edits on items and on mediainfo entities with a proper class hierarchy * Introduce class hierarchy for entity edit expressions, to distinguish between various entity types * Update frontend after separation of entities types into different classes * Linting * Fix detection of deleted statements commit b2b3a663472f03365e07ab4c36d1ffa31dd658af Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Apr 15 09:19:09 2022 +0200 build(deps): bump async from 2.6.3 to 2.6.4 in /docs (#4763) Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. - [Release notes](https://github.com/caolan/async/releases) - [Changelog](https://github.com/caolan/async/blob/v2.6.4/CHANGELOG.md) - [Commits](https://github.com/caolan/async/compare/v2.6.3...v2.6.4) --- updated-dependencies: - dependency-name: async dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit d36fab8a86806f8ce3e902549a06bb5049d9ae2f Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Apr 14 23:56:05 2022 -0700 Updated underscore dependency. (#4762) commit dba2b8b1311ce58e98f88d767726955ab098e38b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Apr 13 20:52:39 2022 +0200 build(deps): bump wdtk.version from 0.13.1 to 0.13.2 (#4753) Bumps `wdtk.version` from 0.13.1 to 0.13.2. Updates `wdtk-wikibaseapi` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) Updates `wdtk-datamodel` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) Updates `wdtk-util` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) --- updated-dependencies: - dependency-name: org.wikidata.wdtk:wdtk-wikibaseapi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.wikidata.wdtk:wdtk-datamodel dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.wikidata.wdtk:wdtk-util dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 952cb453080e60b0784049fea6975657c41caee4 Author: Babi B <babibyoolah@gmail.com> Date: Wed Apr 13 15:37:51 2022 +0100 Technical documentation for clustering (#4719) commit 1dcda3c63b24f25afe0a5156eb74cd909901808b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Apr 13 11:02:25 2022 +0200 build(deps): bump async from 3.2.0 to 3.2.3 in /main/tests/cypress (#4750) Bumps [async](https://github.com/caolan/async) from 3.2.0 to 3.2.3. - [Release notes](https://github.com/caolan/async/releases) - [Changelog](https://github.com/caolan/async/blob/master/CHANGELOG.md) - [Commits](https://github.com/caolan/async/compare/v3.2.0...v3.2.3) --- updated-dependencies: - dependency-name: async dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit a9832d25d219c0dc24621bf3f4c8b7bcea77724f Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Wed Apr 13 03:38:19 2022 -0400 Update running.md (#4749) * Update running.md Changing the JVM preferences (arguments) to a table display Space in a JSON array * Also modify in current docs Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 6ac025189dcfd5ec47d19a72ef035546d96ff62b Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Wed Apr 13 00:28:07 2022 -0700 Fixed snapshot builds (attempt 2) (#4748) * Added npm install to snapshot workflow. * Moved npm install command up, and added npm install for the mac build. commit 6b9387f04d8effaa49358677735ee1a4354fb78a Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 23:47:35 2022 +0200 build(deps): bump google-http-client-jackson2 from 1.41.6 to 1.41.7 (#4746) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.6 to 1.41.7. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.6...v1.41.7) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 81de887e34a75d4f744f6b822d9183a84805a5eb Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 23:46:39 2022 +0200 build(deps): bump cypress from 9.5.3 to 9.5.4 in /main/tests/cypress (#4747) Bumps [cypress](https://github.com/cypress-io/cypress) from 9.5.3 to 9.5.4. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - [Commits](https://github.com/cypress-io/cypress/compare/v9.5.3...v9.5.4) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit ce79221f12d33196d0d35a6150d9e29aa76a1e6f Author: MAGEMBE SHARIF <48015736+sherrif10@users.noreply.github.com> Date: Tue Apr 12 19:29:32 2022 +0300 InterruptedException Ignored When Stopping the Servlet (#4734) Fixes #4694. Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 386e1d90428e83cfbaef921753cfbc1c5d46435b Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 14:25:29 2022 +0000 Translated using Weblate (Dutch) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/nl/ commit bd844b224bbf3a78ee41fed6e5e4b90fc69ee56f Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:39:46 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 5.0% (41 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ml/ commit c00c85c7dce66d57c437f19366ed52843ff4c35a Author: Adithya K <adithyak04@gmail.com> Date: Mon Apr 11 13:54:01 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 7.2% (18 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/ml/ commit 1f6625dd7af0689aa54014fed8b6fbc3ead717f1 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:52:26 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 7.2% (18 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/ml/ commit a73b830c95ff412b2fbcbdf0bb7ce26f7ed6834c Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 15:49:22 2022 +0000 Translated using Weblate (Dutch) Currently translated at 53.8% (134 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nl/ commit 4c06a25aaea97587cd8f21e46b15446c12ee60cf Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 13:55:27 2022 +0000 Translated using Weblate (Dutch) Currently translated at 54.8% (447 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/nl/ commit 778a8c42f3e683d9fc8d049148f0516b8212ef60 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 20:04:52 2022 +0000 Translated using Weblate (Norwegian Bokmål) Currently translated at 64.6% (161 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nb_NO/ commit 5b2c9ef3b26823a014e5498e2652db6e858a1a42 Author: MAGEMBE SHARIF <48015736+sherrif10@users.noreply.github.com> Date: Tue Apr 12 13:22:27 2022 +0300 Add Headers Lincense to the project code base (#4736) commit 88c46768dfa796441a62b050cc35b39cb955de15 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 09:51:40 2022 +0200 build(deps-dev): bump eslint in /main/tests/cypress (#4740) Bumps [eslint](https://github.com/eslint/eslint) from 8.12.0 to 8.13.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.12.0...v8.13.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit d0b22c3197840fc35bc92dfd804c82693dfc4a88 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Apr 12 00:07:13 2022 -0700 Added npm install to snapshot workflow. (#4742) commit 8c074ae5a9908519e2f3a4ee7db1b2c8c44b0211 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 11 21:21:03 2022 +0200 build(deps): bump actions/setup-node from 3.1.0 to 3.1.1 (#4739) Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.1.0 to 3.1.1. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.1.0...v3.1.1) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 75f446cfaed00a33cf06d6ee19242b37a92d49a2 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 16:18:07 2022 +0200 Added translation using Weblate (Dutch) commit e31ec961a6c62af4bbd4cd1a816bc32ff8a361d2 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:37:44 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 0.7% (6 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ml/ commit ae12b1396ad13931936eb5532c32f194986b7298 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:22:11 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 44.4% (28 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/ml/ commit 72a0f9f95bca8cd3a4d293cb7f30c095057e8920 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Mon Apr 11 05:43:08 2022 -0700 build(webapp): bump jquery-ui from 1.12.1 to 1.13.1 (#4713) * Upgraded jquery-ui from 1.12.1 to 1.13.1. * Set the defaultCommandTimeout in cypress.json and removed the nodeVersion option which is obsolete and no longer supported. * Fixed a flaky test. commit 6cbced4144964d33205fb775a3b6211fb2e2c001 Author: Elroy Kanye <elroykanye@gmail.com> Date: Mon Apr 11 12:11:10 2022 +0100 set division operator call to return NaN on 0/0 (#4689) * set division operator call to return NaN on 0/0 * adjusted formatting - OperatorCallExpr * add tests for 0/0 division commit 99e357870b3720a3ce6ca9d3c71e4bf9db27363e Merge: 0b7f4302f 8282b727f Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 10:21:31 2022 -0400 Merge pull request #4732 from OpenRefine/antoine2711-contributing-3 Update contributing.md commit 8282b727f762edd6d5dd38150a0cf07e4cf688c8 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 10:09:40 2022 -0400 Update contributing.md Fixing malformed links. commit 0b7f4302f9b1af7e857eae5cd674eaac6935d016 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 09:46:22 2022 -0400 Update contributing.md (#4731) Few mistakes and a link to #maintainer-guidelines commit cc4c2c414cb3a8a66a147bdf5d66965e378c61f8 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 06:31:26 2022 -0400 Update contributing.md for Functional Tests (#4726) * Update contributing.md Changes for Functional Tests. Also, more affirmative about Java test case. * Update docs/versioned_docs/version-3.5/technical-reference/contributing.md * Update contributing.md Changes for Functional Tests. Also, more affirmative about Java test case. * Update docs/docs/technical-reference/contributing.md Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 432f02338d10f75cacc899e47cfe753f1a2b6c14 Merge: 1b02bf452 b64f203cd Author: Hosted Weblate <hosted@weblate.org> Date: Sun Apr 10 10:56:49 2022 +0200 Merge branch 'origin/master' into Weblate. commit 1b02bf45282577a4c968117e5b4b3731f4f32529 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun Apr 10 10:56:43 2022 +0200 build(deps): bump clojure from 1.11.0 to 1.11.1 (#4699) Bumps [clojure](https://github.com/clojure/clojure) from 1.11.0 to 1.11.1. - [Release notes](https://github.com/clojure/clojure/releases) - [Changelog](https://github.com/clojure/clojure/blob/master/changes.md) - [Commits](https://github.com/clojure/clojure/compare/clojure-1.11.0...clojure-1.11.1) --- updated-dependencies: - dependency-name: org.clojure:clojure dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit b64f203cd989b0dc87979045d780d1973ce0a85a Author: 3ole <ole-s@mailbox.org> Date: Fri Apr 8 19:34:47 2022 +0000 Translated using Weblate (German) Currently translated at 99.3% (810 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/de/ commit f82da95708aa4ca46ac96590d2cd3d6dc6378428 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Sun Apr 10 01:09:44 2022 -0700 Improved error handling for pow and exp (#4701) * Removed unneeded null checks from math functions, added test for math functions, and added error messages for pow and exp. * Cleanup. * Cleanup/reformatting. * Cleanup/reformatting. commit e3ac29e59163ca08867d0583c1523258e9521cc8 Author: Thad Guidry <thadguidry@gmail.com> Date: Sun Apr 10 03:05:31 2022 -0500 Clear up some ambiguity in Reconciling with unique ids (#4711) * Clear up some ambiguity in Reconciling with unique ids Adds clarity with a better term of "known ids". * Also improve current docs commit 652575ab6334d5d926d1d4db729b29638778a0f1 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 03:32:05 2022 -0400 Update contributing.md for assignments and Programs (Outreachy & GSoC) (#4725) * Update contributing.md Update contributing to add the notion of Issue assignements. * Update docs/versioned_docs/version-3.5/technical-reference/contributing.md Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 34961169b22a79699fbdf22492c2f78b678df32f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun Apr 10 08:57:22 2022 +0200 build(deps): bump actions/setup-java from 2 to 3 (#4720) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 2 to 3. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/setup-java dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0ba3b924377f051c734c99cb1d8c05b5f5d231a9 Merge: 3d6960912 a20d4f5fd Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Fri Apr 8 10:16:48 2022 +0200 Merge pull request #4714 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit a20d4f5fd5fffaaba8a18db79e7e003e6652a642 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Fri Apr 8 02:07:47 2022 +0000 Translated using Weblate (French) Currently translated at 100.0% (249 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/fr/ commit 5e58df1e89bbabd1b727a3d53ae2269167c09a6c Author: S H <higa432@gmail.com> Date: Fri Apr 8 01:06:26 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/ja/ commit fdd0f11f57ebfc496ec5521327a2eea39cde96fb Author: Isao Matsunami <isao.matsunami@gmail.com> Date: Thu Apr 7 17:18:33 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (815 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ja/ commit 3d6960912f418e4bbee089771b7c9aae3d2177df Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 20:15:42 2022 +0200 build(deps): bump google-http-client-jackson2 from 1.41.5 to 1.41.6 (#4712) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.5 to 1.41.6. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.5...v1.41.6) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit cf52c501db08c464bb6424478b55ce4685ec250c Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 20:13:51 2022 +0200 build(deps): bump jacoco-maven-plugin from 0.8.7 to 0.8.8 (#4700) Bumps [jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.7 to 0.8.8. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.7...v0.8.8) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 35e54fa7ee8fc299dbf245b1e6453e9c852cabdc Author: ComgLq24 <84132969+ComgLq24@users.noreply.github.com> Date: Fri Apr 8 02:12:01 2022 +0800 fix handling oft empty ODS files (#4709) commit f0489975665c535f69d071651f47e9f15a30f717 Author: Elroy Kanye <elroykanye@gmail.com> Date: Thu Apr 7 19:04:52 2022 +0100 update link to get testng (#4688) commit a5e1f358f1ce42619361225969ab75bf5ed1cc00 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 17:42:11 2022 +0200 build(deps): bump maven-clean-plugin from 3.1.0 to 3.2.0 (#4698) Bumps [maven-clean-plugin](https://github.com/apache/maven-clean-plugin) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/apache/maven-clean-plugin/releases) - [Commits](https://github.com/apache/maven-clean-plugin/compare/maven-clean-plugin-3.1.0...maven-clean-plugin-3.2.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-clean-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit f31ac9e205a30a2e9902fb5d75910fcc44e4fbc7 Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Thu Apr 7 18:27:25 2022 +0300 "Reconcile > Use values as identifiers" does not reconcile #4655 #4664 (#4666) * Notification when selecting service * Notice moved to body * fixes 3172-Added a period to the notification message commit 9c5bde002e44e0fee4f7f124ad58d93eb7f57b52 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Apr 7 08:09:25 2022 -0700 Added encoding fix for Commands. (#4710) commit bb765b42b321f35c99b99582bb07b8330cd4954e Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Tue Apr 5 20:56:01 2022 +0300 Fixes #4081 Unreleased Resource: Streams (#4691) * Fixes #4081-Closed the stream resource * #4081-Closed the stream resource after receiving byte[] commit ac1f9eab243a5797b9c339ff93d1441a44478854 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 5 11:50:17 2022 +0200 build(deps-dev): bump eslint in /main/tests/cypress (#4649) Bumps [eslint](https://github.com/eslint/eslint) from 8.11.0 to 8.12.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.11.0...v8.12.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit ff991e57dc4bfcd40a2b7bfb1164240624118c7e Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Tue Apr 5 11:25:23 2022 +0300 Fixes #2316 "Match other cells with same content" keeps appearing as the default choice #2316 (#4687) * Store user preference * Removed updating of DOM on closing recon match dialog , updated global variable name * Fixes #2316-Simplified if else expression commit 78b906540d9a8e90209ad6779c46fe8dfa9bcd7f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 5 10:13:48 2022 +0200 build(deps-dev): bump prettier in /main/tests/cypress (#4696) Bumps [prettier](https://github.com/prettier/prettier) from 2.6.1 to 2.6.2. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.6.1...2.6.2) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 6474416b55a1151a5b32c6a17aa3eb9f2ebd0408 Author: Binita Kumari <78761614+Binita-tech@users.noreply.github.com> Date: Tue Apr 5 13:41:59 2022 +0530 Improvement of grel docs (#4654) commit e80889c42815c8a110e225ed7c7fa3748b9808df Author: Cece <45926850+SIXIN-LI@users.noreply.github.com> Date: Sat Apr 2 22:08:55 2022 -0700 fix OpenRefine#4656 - clarify location of workspace (#4663) commit f09b13636c7aac625bb3fbeaec2e3eacae34eb04 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sun Apr 3 07:08:09 2022 +0200 Add main/webapp/modules/core/3rdparty/ to .gitignore (#4665) commit 46517df86ccc42dca7ad4724be95bd7d0086ec3a Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sun Apr 3 07:07:28 2022 +0200 Add mention of com.google.refine.Refine to our developer docs (#4680) * Update build-test-run.md * Update build-test-run.md commit b5c522eab6ba0eabed5087122820ddad75c6ee80 Author: Shelomi Silva <50749107+shelomi99@users.noreply.github.com> Date: Sun Apr 3 10:35:34 2022 +0530 [SQL Exporter] Substitute invalid characters in column names with underscore (#1940) (#4685) * [SQL Exporter] Substitute invalid characters in column names with underscore (#1940) * Add test case to validate SQL export column names with special characters commit 1ed4aaba92564f395c0a91c12c40725455abcc42 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat Apr 2 13:18:40 2022 +0200 build(deps): bump actions/setup-node from 3.0.0 to 3.1.0 (#4683) Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.0.0 to 3.1.0. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.0.0...v3.1.0) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 7ab6eed6deddf344d5d56ae1aae232de9863d91b Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Fri Apr 1 02:14:07 2022 -0700 Added missing HTML tags. (#4678) commit 440b03b4748219b92b05777b383e1a4b47449674 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Fri Apr 1 02:08:32 2022 -0700 Fixed broken link in wikidata dialog. (#4679) commit 3bf4635f1706dabb70d9a3a5c3ab544564b87b69 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 31 01:30:05 2022 -0700 Changed 'Unselect' and 'De-select' to 'Deselect' and 'Unselect all' to 'Deselect all' (#4671) commit 8c7a6b5eedf774ad1dab5ed1d6cd394b19d862fa Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 31 01:24:51 2022 -0700 Fixed alignment in wikibase dialogs. (#4674) commit a762ce90c766fa03af08178ecd515f136f49be99 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 31 01:22:15 2022 -0700 Removed 4px border from dialogs, and added a header for the dialog in All Columns > Transform... (#4668) commit 499ce64c160bbd3e87fc6f5baef11fe2812dca2b Author: Shriya <93962518+shriyasankhyan@users.noreply.github.com> Date: Wed Mar 30 23:02:09 2022 +0530 Grammatical Error (#4667) commit 4e0cfe5d6c0dc7c0ab704549a647deb307da5548 Author: Cece <45926850+SIXIN-LI@users.noreply.github.com> Date: Wed Mar 30 00:22:19 2022 -0700 update Maven version to 3.8.5 (#4653) fixes #4644 commit c18a362b7a4098a9a7fb0de32c6c93d1667d13e7 Author: Elroy Kanye <elroykanye@gmail.com> Date: Wed Mar 30 08:19:41 2022 +0100 fixes #4640 added example of Regex usage to desc of replace() (#4641) * fixes #4640 added example of Regex usage to desc of replace() * match grel function description with example from docs commit 5bfae756836cb95d8ff75964cf5625ba1872b94b Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Wed Mar 30 00:09:48 2022 -0700 Wikibase dialog buttons (#4630) * Moved login buttons to the dialog footer in relevant dialogs. * Changed back to submit event. Cleanup. commit 2d4e382652ec894ebc28b57b133ce62ce859ff81 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 29 23:38:21 2022 -0700 Fixed dialog headers. (#4661) commit b47d250e6369bd1fc98cce1a054e8092702a7d9b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 21:56:17 2022 +0200 build(deps): bump cypress from 9.5.2 to 9.5.3 in /main/tests/cypress (#4660) Bumps [cypress](https://github.com/cypress-io/cypress) from 9.5.2 to 9.5.3. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - [Commits](https://github.com/cypress-io/cypress/compare/v9.5.2...v9.5.3) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 054a3459257d4ecbcbc7956f58a24fdc4cffa93b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 21:53:50 2022 +0200 build(deps): bump maven-shade-plugin from 3.2.4 to 3.3.0 (#4658) Bumps [maven-shade-plugin](https://github.com/apache/maven-shade-plugin) from 3.2.4 to 3.3.0. - [Release notes](https://github.com/apache/maven-shade-plugin/releases) - [Commits](https://github.com/apache/maven-shade-plugin/compare/maven-shade-plugin-3.2.4...maven-shade-plugin-3.3.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-shade-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 4ef8a273f579eb96888458ce5d9b47764af2fb7c Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 21:38:36 2022 +0200 build(deps): bump google-api-services-sheets (#4659) Bumps google-api-services-sheets from v4-rev20220308-1.32.1 to v4-rev20220322-1.32.1. --- updated-dependencies: - dependency-name: com.google.apis:google-api-services-sheets dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 2dafb62d4fd4de539acf1fdd54c541ad2dea062d Author: Raphael Das Gupta <github.com@raphael.dasgupta.ch> Date: Tue Mar 29 16:00:09 2022 +0200 fix typo in "reconciliation" (#4657) * fix typo in "reconciliation" * Port to 3.6 docs Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 3cbb5b143df3caa6e50d5493a34cee3f12cbcf77 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 29 01:23:32 2022 -0700 Redirect to wiki for Google Export options (#4635) * Added redirect to wiki for Google Export options if credentials are undefined. * Remove check for host, only rely on CLIENT_ID and CLIENT_SECRET being empty Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 1ef305152ffe755c207a342488d94fe17b953518 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 29 01:22:12 2022 -0700 Removed colons from labels that don't need them (#4643) * Removed : and ... from labels that don't need them * Updated tests and removed trailing whitespace. * Cleanup. Closes #4639 commit dddced56e1ac744d0674d9e5a157135cce452d05 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 29 09:56:57 2022 +0200 build(deps): bump plist from 3.0.4 to 3.0.5 in /main/tests/cypress (#4650) Bumps [plist](https://github.com/TooTallNate/node-plist) from 3.0.4 to 3.0.5. - [Release notes](https://github.com/TooTallNate/node-plist/releases) - [Changelog](https://github.com/TooTallNate/plist.js/blob/master/History.md) - [Commits](https://github.com/TooTallNate/node-plist/commits) --- updated-dependencies: - dependency-name: plist dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 6d26e1b931c92c8e52efe753f532c7cb73d4b461 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Mar 28 21:42:58 2022 +0200 build(deps): bump jmh.version from 1.34 to 1.35 (#4647) Bumps `jmh.version` from 1.34 to 1.35. Updates `jmh-core` from 1.34 to 1.35 Updates `jmh-generator-annprocess` from 1.34 to 1.35 --- updated-dependencies: - dependency-name: org.openjdk.jmh:jmh-core dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.openjdk.jmh:jmh-generator-annprocess dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit fad3c21e4f177ef22088c0c7aa9a391a2e2d6627 Author: Elroy Kanye <elroykanye@gmail.com> Date: Mon Mar 28 06:17:21 2022 +0100 fixes #3133 modify default return of call() for ToString to state for Number format (#4642) commit 342f5c3fe249681f243bcbe7b5e667ed8830b94c Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Mon Mar 28 07:05:49 2022 +0200 Add npm instructions to 3.5 release It was not actually required in 3.5 but that is what the website is currently showing and we have a flock of Outreachy applicants trying to setup the project. commit 083c7feba3b84d97ec884f3c2b38b6f1f0249640 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Mar 25 21:07:51 2022 +0100 build(deps-dev): bump prettier in /main/tests/cypress (#4638) Bumps [prettier](https://github.com/prettier/prettier) from 2.6.0 to 2.6.1. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.6.0...2.6.1) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 9394514967e998d2c97a63a01a1d901854f1a5de Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Mar 25 21:07:18 2022 +0100 build(deps): bump google-http-client-jackson2 from 1.41.4 to 1.41.5 (#4637) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.4 to 1.41.5. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.4...v1.41.5) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 1169c2e26db5fcdf8f666d5fd912f936e7978e85 Author: khadijm <88087734+khadijm@users.noreply.github.com> Date: Fri Mar 25 09:55:46 2022 +0100 disable spellcheck on input text type (#4636) Closes #3004. commit 2e84edfab19885f6d1a72e9a6b0844d78b46fd42 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 24 17:10:50 2022 +0100 build(deps): bump minimist from 1.2.5 to 1.2.6 in /docs (#4634) Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) --- updated-dependencies: - dependency-name: minimist dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 5c07bc39917d19a9c69d800a53d75c813291591a Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 24 17:10:25 2022 +0100 build(deps): bump minimist from 1.2.5 to 1.2.6 in /main/tests/cypress (#4633) Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) --- updated-dependencies: - dependency-name: minimist dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 39f72d74e099a3ab5a42a63d4216de6e7d85cfd6 Merge: aeb0bb619 ca6dcafc9 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Thu Mar 24 14:30:43 2022 +0100 Merge pull request #4632 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit ca6dcafc9dca6f340c42cf83cb173899c12a5e7f Merge: 04cc2931c aeb0bb619 Author: Hosted Weblate <hosted@weblate.org> Date: Thu Mar 24 12:58:29 2022 +0100 Merge remote-tracking branch 'origin/master' commit 04cc2931c335aaa30f3a91144cc4ea201b866795 Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 07:27:27 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 3.6% (9 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/zh_Hans/ commit 690f32732011b6db5a87d909f8d89c3e8ef8c79d Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 07:04:15 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (46 of 46 strings) Translation: OpenRefine/gdata Translate-URL: https://hosted.weblate.org/projects/openrefine/gdata/zh_Hans/ commit 20baed02df650b3eb16e1e9f9d721568b646c81c Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 05:51:29 2022 +0000 Translated using Weblate (Chinese (Traditional)) Currently translated at 9.3% (75 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/zh_Hant/ commit 8a07f1fb266ae00939dcf93a8d48bd0e4df3cf2d Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 06:52:33 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/zh_Hans/ commit bf243cdfb916d8ccc6012b2c0528efa3c2f291ba Author: Aftabuzzaman <Leemon432@gmail.com> Date: Mon Mar 21 22:44:34 2022 +0000 Translated using Weblate (Bengali) Currently translated at 10.0% (80 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/bn/ commit 73d3ba3a6cf506e5a1eb1a0c97b787e28cf77547 Author: MarcoDiazGarcia <marco.diaz.garcia@mni.thm.de> Date: Sat Mar 19 09:43:42 2022 +0000 Translated using Weblate (German) Currently translated at 90.6% (725 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/de/ commit 7328056def1b6f942fc5975cf2c46c6bc8e7ac11 Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 06:02:27 2022 +0000 Translated using Weblate (Chinese (Simplified)) Currently translated at 78.7% (630 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/zh_Hans/ commit aeb0bb619aec17333f9182bc531f4d642294c6ec Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Mar 24 04:58:14 2022 -0700 Frontend dependency management part II (#4621) Part II for #2423. Partial fix for #3958. commit 463a2c4e7bca094af7b0a49a911c67df28e395ff Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 08:26:23 2022 +0100 Added translation using Weblate (Chinese (Simplified)) commit 264c9c09749488ec640f4018214a87ab92779677 Author: Wendi Zhou <sketchidea@outlook.com> Date: Thu Mar 24 08:03:02 2022 +0100 Added translation using Weblate (Chinese (Simplified)) commit 2e388cfe3c6a46d3a1ef4abfce682712a5b26129 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 22 19:35:32 2022 +0100 build(deps): bump clojure from 1.10.3 to 1.11.0 (#4629) Bumps [clojure](https://github.com/clojure/clojure) from 1.10.3 to 1.11.0. - [Release notes](https://github.com/clojure/clojure/releases) - [Changelog](https://github.com/clojure/clojure/blob/master/changes.md) - [Commits](https://github.com/clojure/clojure/compare/clojure-1.10.3...clojure-1.11.0) --- updated-dependencies: - dependency-name: org.clojure:clojure dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 85b5ee495f1b384007c9116548f67bd59b4cd718 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 22 09:00:37 2022 +0100 build(deps): bump poi.version from 5.2.1 to 5.2.2 (#4627) Bumps `poi.version` from 5.2.1 to 5.2.2. Updates `poi` from 5.2.1 to 5.2.2 Updates `poi-ooxml` from 5.2.1 to 5.2.2 --- updated-dependencies: - dependency-name: org.apache.poi:poi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.apache.poi:poi-ooxml dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0d92f1de410d9c67cccb800969661fff23750e44 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 22 09:00:00 2022 +0100 build(deps): bump actions/cache from 2.1.7 to 3 (#4626) Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.7...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 98c1785edd3e7cd3b0185ab4e5a8beb130c3c6c4 Merge: 5d7720678 5d40f47e6 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Sat Mar 19 16:28:01 2022 +0100 Merge pull request #4620 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 5d40f47e61c3cea7dc4fc2ea840b1e456fd4d04d Merge: 705730c09 5d7720678 Author: Hosted Weblate <hosted@weblate.org> Date: Sat Mar 19 10:06:23 2022 +0100 Merge remote-tracking branch 'origin/master' commit 5d7720678d49139831e2b55ab4b0ec95560ff33c Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sat Mar 19 10:06:17 2022 +0100 Update Wikidata-Toolkit to 0.13.1 (#4594) commit 705730c09d950e656defd25f889d8426e6cdaf69 Merge: 134eda026 b50244e9c Author: Hosted Weblate <hosted@weblate.org> Date: Sat Mar 19 09:45:21 2022 +0100 Merge remote-tracking branch 'origin/master' commit b50244e9c614e9a7b7d581094bfe2b4f400a7f68 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Sat Mar 19 09:45:15 2022 +0100 Set more restrictive file permissions on workspace.json. Fixes #4600. (#4601) commit 134eda026c17d44a780aa83157f22624019f3d0f Merge: b097aced8 2cbdd6867 Author: Hosted Weblate <hosted@weblate.org> Date: Sat Mar 19 09:07:19 2022 +0100 Merge remote-tracking branch 'origin/master' commit 2cbdd6867675466471d65944d9e40b14864985aa Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Sat Mar 19 01:07:13 2022 -0700 Added spacing between ok/cancel buttons. (#4623) commit b097aced8462317ebe539e9a8cf4b68ad053581e Author: G T <giuliotura@gmail.com> Date: Thu Mar 17 20:51:33 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (800 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit ebd3c8f39ee0367acbc1ff48ccb9c1cfae003aa8 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Wed Mar 16 18:47:17 2022 +0000 Translated using Weblate (Dutch) Currently translated at 46.9% (117 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nl/ commit 818a1362be612662d23f14bd36eea0433b6c97ee Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 16 13:30:51 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (249 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/it/ commit b3f533bcf1ffc78626ea107ad82d79a2786d068d Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 16 13:48:09 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (800 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit 7ccdce9ae2c37990d41fe035b81899f044e4ad5f Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Wed Mar 16 15:07:59 2022 +0000 Translated using Weblate (French) Currently translated at 99.5% (796 of 800 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/fr/ commit 442d80fa21c96cba5297356b161fc73fb85dadcb Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 17 08:41:32 2022 +0100 build(deps): bump google-api-services-sheets (#4616) Bumps google-api-services-sheets from v4-rev20220221-1.32.1 to v4-rev20220308-1.32.1. --- updated-dependencies: - dependency-name: com.google.apis:google-api-services-sheets dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0d0579a19c76b85e9b1aa7b601b6c8c22bfbb220 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 17 08:29:50 2022 +0100 build(deps-dev): bump prettier in /main/tests/cypress (#4619) Bumps [prettier](https://github.com/prettier/prettier) from 2.5.1 to 2.6.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.5.1...2.6.0) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 20c0e2f6c352100d00c627afc17abbac0495d1a2 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Wed Mar 16 07:08:47 2022 -0700 Frontend dependency management (#4618) * Added package.json. For #2423. commit 0526ab8ca1a1f8efbce5c13d94dec380bc0c8de0 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 15 23:08:03 2022 +0100 build(deps): bump cypress from 9.5.1 to 9.5.2 in /main/tests/cypress (#4617) Bumps [cypress](https://github.com/cypress-io/cypress) from 9.5.1 to 9.5.2. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - [Commits](https://github.com/cypress-io/cypress/compare/v9.5.1...v9.5.2) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 3f33363fecb84bb8cff5cd46150f4300a76007d5 Merge: b02c0fbdf 993abfffe Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Tue Mar 15 18:28:17 2022 +0100 Merge pull request #4615 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 993abfffe68adbe2b52af4677f572536f4795215 Merge: d969fa1e2 b02c0fbdf Author: Hosted Weblate <hosted@weblate.org> Date: Tue Mar 15 11:11:27 2022 +0100 Merge remote-tracking branch 'origin/master' commit d969fa1e2532063771dc8bc7520cc1a4b44be6da Author: Luca Martinelli <sannita@gmail.com> Date: Mon Mar 14 14:15:22 2022 +0000 Translated using Weblate (Italian) Currently translated at 88.3% (220 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/it/ commit 547fa91366496dc766282bdb28107ba540f4fd33 Author: Luca Martinelli <sannita@gmail.com> Date: Mon Mar 14 14:07:47 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (799 of 799 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit 73ce3cc86e02bf199155ee1fbbe57b450523158f Author: Eihel <ehmworms@hotmail.com> Date: Mon Mar 14 07:04:32 2022 +0000 Translated using Weblate (French) Currently translated at 99.6% (796 of 799 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/fr/ commit b02c0fbdf63a5854b96126fca12d4080a4acd734 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 15 03:11:20 2022 -0700 Add URL remove button (#4609) * Changed min-width to width in the dialog-frame. * Added a trashcan button to remove URL rows after the first row. * Made "Remove this row" tooltip localized text, cleanup. Closes #4606 commit 89eda70f88df55ef7614628b0049ab19a76a280d Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 15 11:08:51 2022 +0100 build(deps-dev): bump eslint in /main/tests/cypress (#4614) Bumps [eslint](https://github.com/eslint/eslint) from 8.10.0 to 8.11.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.10.0...v8.11.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 253b1eab70a93570eac27fae5fb604d122031c4f Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Mon Mar 14 00:07:27 2022 -0700 Edit project tags tooltip (#4613) * Updated command line options documentation * Changed min-width to width in the dialog-frame. * Removed the edit tags tooltip from tags. commit 9d900105ceebe947578367e463a2e0faedee448c Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Sun Mar 13 23:42:06 2022 -0700 Validation of all URLs in URL import (#4605) * Added validation for multiple urls. * Cleanup. * Removed code that disables blank URL rows. commit 864ac30b86a4051b994f9ba6e5fc1a8598f88963 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat Mar 12 07:59:26 2022 +0100 build(deps): bump maven-compiler-plugin from 3.10.0 to 3.10.1 (#4612) Bumps [maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.10.0 to 3.10.1. - [Release notes](https://github.com/apache/maven-compiler-plugin/releases) - [Commits](https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.10.0...maven-compiler-plugin-3.10.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-compiler-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 09f9621e2b0a2b0a6672f27821596738858ed3aa Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Mar 11 21:52:12 2022 +0100 build(deps): bump maven-dependency-plugin from 3.2.0 to 3.3.0 (#4611) Bumps [maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) from 3.2.0 to 3.3.0. - [Release notes](https://github.com/apache/maven-dependency-plugin/releases) - [Commits](https://github.com/apache/maven-dependency-plugin/compare/maven-dependency-plugin-3.2.0...maven-dependency-plugin-3.3.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-dependency-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 29fa9aa1e8e8cd1a70342a89d4a85b1129173c28 Merge: 74664832d 4fe7855b1 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Fri Mar 11 17:00:30 2022 +0100 Merge pull request #4610 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 4fe7855b1c82cc5c92ac208283b6dc3a330981c8 Author: Luca Martinelli <sannita@gmail.com> Date: Thu Mar 10 14:43:48 2022 +0000 Translated using Weblate (Italian) Currently translated at 62.2% (155 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/it/ commit a44c1db3f2c639c485e2ad4f500b528d84843b26 Author: Luca Martinelli <sannita@gmail.com> Date: Thu Mar 10 14:15:47 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (797 of 797 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit 74664832d1291a7dc25b156d75998c1501929786 Author: Thad Guidry <thadguidry@gmail.com> Date: Wed Mar 9 23:23:47 2022 -0600 Update memory allocation steps for Mac (#4604) commit 1ccdf5c12926ad3b7a1eecbaca40691a67aa948a Merge: ee3f71d05 894fc5ba9 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Wed Mar 9 17:41:49 2022 +0100 Merge pull request #4599 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 894fc5ba99d608a7f4231fd062d1834495a50e3b Merge: 6bc9846f1 ee3f71d05 Author: Hosted Weblate <hosted@weblate.org> Date: Wed Mar 9 16:09:36 2022 +0100 Merge remote-tracking branch 'origin/master' commit 6bc9846f1e0334a9a5928ee5b1ee90b2aa119c87 Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 9 14:10:47 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (46 of 46 strings) Translation: OpenRefine/gdata Translate-URL: https://hosted.weblate.org/projects/openrefine/gdata/it/ commit 84738c8854b42161b46e3b294ee8025e6263f814 Author: Luca Martinelli <sannita@gmail.com> Date: Wed Mar 9 14:15:04 2022 +0000 Translated using Weblate (Italian) Currently translated at 91.9% (733 of 797 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/it/ commit ee3f71d055e14549885340577405d36abd022141 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Wed Mar 9 16:09:13 2022 +0100 Remove codesigning while notarization does not work, for #4580 #4568 commit 66fdcdc2613c886e050122b36a1a5a1962f422f1 Merge: 5297061b7 022664d89 Author: Hosted Weblate <hosted@weblate.org> Date: Wed Mar 9 08:11:08 2022 +0100 Merge remote-tracking branch 'origin/master' commit 022664d894eddefa6958612027b8d3bf94340c41 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Mar 9 08:11:04 2022 +0100 build(deps): bump jackson.version from 2.13.1 to 2.13.2 (#4596) Bumps `jackson.version` from 2.13.1 to 2.13.2. Updates `jackson-databind` from 2.13.1 to 2.13.2 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Updates `jackson-annotations` from 2.13.1 to 2.13.2 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Updates `jackson-core` from 2.13.1 to 2.13.2 - [Release notes](https://github.com/FasterXML/jackson-core/releases) - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.13.1...jackson-core-2.13.2) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-annotations dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 5297061b7a8872a29c15af55468e16688d74cc3f Merge: 33c772257 b79cb56ed Author: Hosted Weblate <hosted@weblate.org> Date: Wed Mar 9 08:07:53 2022 +0100 Merge remote-tracking branch 'origin/master' commit b79cb56ed72bc58be621a56ffb2ca3e6011bbfaa Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Mar 8 23:07:47 2022 -0800 Rename column popup (#4597) * Replaced rename column browser popup with regular dialog. Closes #4590. * Updated test for rename column and made ok and cancel buttons use localized text. * Added Autofocus for input box. commit 33c7722576cdc023578a37952b0b281b997509e4 Author: Luca Martinelli <sannita@gmail.com> Date: Tue Mar 8 19:51:32 2022 +0000 Translated using Weblate (Italian) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/it/ commit d49237381db8e7a32e254b430eef2e27b0881d42 Author: Isao Matsunami <isao.matsunami@gmail.com> Date: Tue Mar 8 05:58:40 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (797 of 797 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ja/ commit 943bf3721173f642d819d0d647c95bd83aaee884 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 8 20:07:47 2022 +0100 build(deps): bump mockito-core from 4.3.1 to 4.4.0 (#4598) Bumps [mockito-core](https://github.com/mockito/mockito) from 4.3.1 to 4.4.0. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v4.3.1...v4.4.0) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit b9f9beee857fa78dc987ae8611a2f397ca1093fd Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Mon Mar 7 01:19:41 2022 -0800 Menu items ellipsis (#4591) * Issue #4585 added ellipsis to menu items and updated translation files and JavaScript files * Added /single labels for the common-transform options so menu-edit-cells won't display ellipsis. Cleanup. * Removed ellipsis from the necessary menu items. commit 7aafca318794b12deec8541774d4865ccdefde54 Merge: c225ef9b3 21b4e33c2 Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Sun Mar 6 19:27:35 2022 +0100 Merge pull request #4595 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit 21b4e33c2d2b90fa95a5ab340ee916c819caad0e Author: M…
commit d6a3e8465bc05bf90a45f3144c2c53f841bf0845 Author: Binita Kumari <78761614+Binita-tech@users.noreply.github.com> Date: Sat Apr 16 01:31:01 2022 +0530 Improved browser launch in Linux distribution (#4706) * fixes #2640 commit 0573be98f488121ea80e79e3cc548ac69bca5b0f Author: Elroy Kanye <elroykanye@gmail.com> Date: Fri Apr 15 19:48:33 2022 +0100 Enhance random number function (#4672) Closes #3143. commit 4e5414fc50804f461239aaeb2f6ec07238b71957 Author: Babi B <babibyoolah@gmail.com> Date: Fri Apr 15 11:06:22 2022 +0100 Improve clustering method documentation; make it skimmable (#4718) * made clustering method document skimmable * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * take out hierarchy, add links to document * took out unnecessary image files * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * added links within the document * capitalization Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * Update docs/docs/manual/cellediting.md Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> * capitalized subheadings * corrected grammatical error * capitalization Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> Co-authored-by: Antoine Beaubien <antoine@beaubien.qc.ca> commit c9c958366a0a306531b6e3880d9b92e2a8d4cc27 Merge: f8fb2ff4c aa777f70b Author: Hosted Weblate <hosted@weblate.org> Date: Fri Apr 15 10:33:18 2022 +0200 Merge branch 'origin/master' into Weblate. commit aa777f70bbbc6b195faa42f07e249f2c44a9efc9 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Wed Apr 13 18:49:34 2022 +0000 Translated using Weblate (Dutch) Currently translated at 55.2% (450 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/nl/ commit f8fb2ff4c031b7889671272cbf7748b73128d122 Author: Antonin Delpeuch <antonin@delpeuch.eu> Date: Fri Apr 15 10:33:10 2022 +0200 Add specific UI to edit different entity types in Wikibase manifest (#4681) * Distinguish between edits on items and on mediainfo entities with a proper class hierarchy * Introduce class hierarchy for entity edit expressions, to distinguish between various entity types * Update frontend after separation of entities types into different classes * Linting * Fix detection of deleted statements commit b2b3a663472f03365e07ab4c36d1ffa31dd658af Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri Apr 15 09:19:09 2022 +0200 build(deps): bump async from 2.6.3 to 2.6.4 in /docs (#4763) Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. - [Release notes](https://github.com/caolan/async/releases) - [Changelog](https://github.com/caolan/async/blob/v2.6.4/CHANGELOG.md) - [Commits](https://github.com/caolan/async/compare/v2.6.3...v2.6.4) --- updated-dependencies: - dependency-name: async dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit d36fab8a86806f8ce3e902549a06bb5049d9ae2f Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Apr 14 23:56:05 2022 -0700 Updated underscore dependency. (#4762) commit dba2b8b1311ce58e98f88d767726955ab098e38b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Apr 13 20:52:39 2022 +0200 build(deps): bump wdtk.version from 0.13.1 to 0.13.2 (#4753) Bumps `wdtk.version` from 0.13.1 to 0.13.2. Updates `wdtk-wikibaseapi` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) Updates `wdtk-datamodel` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) Updates `wdtk-util` from 0.13.1 to 0.13.2 - [Release notes](https://github.com/Wikidata/Wikidata-Toolkit/releases) - [Changelog](https://github.com/Wikidata/Wikidata-Toolkit/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/Wikidata/Wikidata-Toolkit/compare/v0.13.1...0.13.2) --- updated-dependencies: - dependency-name: org.wikidata.wdtk:wdtk-wikibaseapi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.wikidata.wdtk:wdtk-datamodel dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.wikidata.wdtk:wdtk-util dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 952cb453080e60b0784049fea6975657c41caee4 Author: Babi B <babibyoolah@gmail.com> Date: Wed Apr 13 15:37:51 2022 +0100 Technical documentation for clustering (#4719) commit 1dcda3c63b24f25afe0a5156eb74cd909901808b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Apr 13 11:02:25 2022 +0200 build(deps): bump async from 3.2.0 to 3.2.3 in /main/tests/cypress (#4750) Bumps [async](https://github.com/caolan/async) from 3.2.0 to 3.2.3. - [Release notes](https://github.com/caolan/async/releases) - [Changelog](https://github.com/caolan/async/blob/master/CHANGELOG.md) - [Commits](https://github.com/caolan/async/compare/v3.2.0...v3.2.3) --- updated-dependencies: - dependency-name: async dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit a9832d25d219c0dc24621bf3f4c8b7bcea77724f Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Wed Apr 13 03:38:19 2022 -0400 Update running.md (#4749) * Update running.md Changing the JVM preferences (arguments) to a table display Space in a JSON array * Also modify in current docs Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 6ac025189dcfd5ec47d19a72ef035546d96ff62b Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Wed Apr 13 00:28:07 2022 -0700 Fixed snapshot builds (attempt 2) (#4748) * Added npm install to snapshot workflow. * Moved npm install command up, and added npm install for the mac build. commit 6b9387f04d8effaa49358677735ee1a4354fb78a Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 23:47:35 2022 +0200 build(deps): bump google-http-client-jackson2 from 1.41.6 to 1.41.7 (#4746) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.6 to 1.41.7. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.6...v1.41.7) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 81de887e34a75d4f744f6b822d9183a84805a5eb Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 23:46:39 2022 +0200 build(deps): bump cypress from 9.5.3 to 9.5.4 in /main/tests/cypress (#4747) Bumps [cypress](https://github.com/cypress-io/cypress) from 9.5.3 to 9.5.4. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - [Commits](https://github.com/cypress-io/cypress/compare/v9.5.3...v9.5.4) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit ce79221f12d33196d0d35a6150d9e29aa76a1e6f Author: MAGEMBE SHARIF <48015736+sherrif10@users.noreply.github.com> Date: Tue Apr 12 19:29:32 2022 +0300 InterruptedException Ignored When Stopping the Servlet (#4734) Fixes #4694. Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 386e1d90428e83cfbaef921753cfbc1c5d46435b Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 14:25:29 2022 +0000 Translated using Weblate (Dutch) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/nl/ commit bd844b224bbf3a78ee41fed6e5e4b90fc69ee56f Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:39:46 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 5.0% (41 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ml/ commit c00c85c7dce66d57c437f19366ed52843ff4c35a Author: Adithya K <adithyak04@gmail.com> Date: Mon Apr 11 13:54:01 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 7.2% (18 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/ml/ commit 1f6625dd7af0689aa54014fed8b6fbc3ead717f1 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:52:26 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 7.2% (18 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/ml/ commit a73b830c95ff412b2fbcbdf0bb7ce26f7ed6834c Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 15:49:22 2022 +0000 Translated using Weblate (Dutch) Currently translated at 53.8% (134 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nl/ commit 4c06a25aaea97587cd8f21e46b15446c12ee60cf Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 13:55:27 2022 +0000 Translated using Weblate (Dutch) Currently translated at 54.8% (447 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/nl/ commit 778a8c42f3e683d9fc8d049148f0516b8212ef60 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 20:04:52 2022 +0000 Translated using Weblate (Norwegian Bokmål) Currently translated at 64.6% (161 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/nb_NO/ commit 5b2c9ef3b26823a014e5498e2652db6e858a1a42 Author: MAGEMBE SHARIF <48015736+sherrif10@users.noreply.github.com> Date: Tue Apr 12 13:22:27 2022 +0300 Add Headers Lincense to the project code base (#4736) commit 88c46768dfa796441a62b050cc35b39cb955de15 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 12 09:51:40 2022 +0200 build(deps-dev): bump eslint in /main/tests/cypress (#4740) Bumps [eslint](https://github.com/eslint/eslint) from 8.12.0 to 8.13.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.12.0...v8.13.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit d0b22c3197840fc35bc92dfd804c82693dfc4a88 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Tue Apr 12 00:07:13 2022 -0700 Added npm install to snapshot workflow. (#4742) commit 8c074ae5a9908519e2f3a4ee7db1b2c8c44b0211 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 11 21:21:03 2022 +0200 build(deps): bump actions/setup-node from 3.1.0 to 3.1.1 (#4739) Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.1.0 to 3.1.1. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.1.0...v3.1.1) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 75f446cfaed00a33cf06d6ee19242b37a92d49a2 Author: Sandra Fauconnier <sandra.fauconnier@gmail.com> Date: Mon Apr 11 16:18:07 2022 +0200 Added translation using Weblate (Dutch) commit e31ec961a6c62af4bbd4cd1a816bc32ff8a361d2 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:37:44 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 0.7% (6 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ml/ commit ae12b1396ad13931936eb5532c32f194986b7298 Author: Gnoeee <jinoytommanjaly@gmail.com> Date: Mon Apr 11 13:22:11 2022 +0000 Translated using Weblate (Malayalam) Currently translated at 44.4% (28 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/ml/ commit 72a0f9f95bca8cd3a4d293cb7f30c095057e8920 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Mon Apr 11 05:43:08 2022 -0700 build(webapp): bump jquery-ui from 1.12.1 to 1.13.1 (#4713) * Upgraded jquery-ui from 1.12.1 to 1.13.1. * Set the defaultCommandTimeout in cypress.json and removed the nodeVersion option which is obsolete and no longer supported. * Fixed a flaky test. commit 6cbced4144964d33205fb775a3b6211fb2e2c001 Author: Elroy Kanye <elroykanye@gmail.com> Date: Mon Apr 11 12:11:10 2022 +0100 set division operator call to return NaN on 0/0 (#4689) * set division operator call to return NaN on 0/0 * adjusted formatting - OperatorCallExpr * add tests for 0/0 division commit 99e357870b3720a3ce6ca9d3c71e4bf9db27363e Merge: 0b7f4302f 8282b727f Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 10:21:31 2022 -0400 Merge pull request #4732 from OpenRefine/antoine2711-contributing-3 Update contributing.md commit 8282b727f762edd6d5dd38150a0cf07e4cf688c8 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 10:09:40 2022 -0400 Update contributing.md Fixing malformed links. commit 0b7f4302f9b1af7e857eae5cd674eaac6935d016 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 09:46:22 2022 -0400 Update contributing.md (#4731) Few mistakes and a link to #maintainer-guidelines commit cc4c2c414cb3a8a66a147bdf5d66965e378c61f8 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 06:31:26 2022 -0400 Update contributing.md for Functional Tests (#4726) * Update contributing.md Changes for Functional Tests. Also, more affirmative about Java test case. * Update docs/versioned_docs/version-3.5/technical-reference/contributing.md * Update contributing.md Changes for Functional Tests. Also, more affirmative about Java test case. * Update docs/docs/technical-reference/contributing.md Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 432f02338d10f75cacc899e47cfe753f1a2b6c14 Merge: 1b02bf452 b64f203cd Author: Hosted Weblate <hosted@weblate.org> Date: Sun Apr 10 10:56:49 2022 +0200 Merge branch 'origin/master' into Weblate. commit 1b02bf45282577a4c968117e5b4b3731f4f32529 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun Apr 10 10:56:43 2022 +0200 build(deps): bump clojure from 1.11.0 to 1.11.1 (#4699) Bumps [clojure](https://github.com/clojure/clojure) from 1.11.0 to 1.11.1. - [Release notes](https://github.com/clojure/clojure/releases) - [Changelog](https://github.com/clojure/clojure/blob/master/changes.md) - [Commits](https://github.com/clojure/clojure/compare/clojure-1.11.0...clojure-1.11.1) --- updated-dependencies: - dependency-name: org.clojure:clojure dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit b64f203cd989b0dc87979045d780d1973ce0a85a Author: 3ole <ole-s@mailbox.org> Date: Fri Apr 8 19:34:47 2022 +0000 Translated using Weblate (German) Currently translated at 99.3% (810 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/de/ commit f82da95708aa4ca46ac96590d2cd3d6dc6378428 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Sun Apr 10 01:09:44 2022 -0700 Improved error handling for pow and exp (#4701) * Removed unneeded null checks from math functions, added test for math functions, and added error messages for pow and exp. * Cleanup. * Cleanup/reformatting. * Cleanup/reformatting. commit e3ac29e59163ca08867d0583c1523258e9521cc8 Author: Thad Guidry <thadguidry@gmail.com> Date: Sun Apr 10 03:05:31 2022 -0500 Clear up some ambiguity in Reconciling with unique ids (#4711) * Clear up some ambiguity in Reconciling with unique ids Adds clarity with a better term of "known ids". * Also improve current docs commit 652575ab6334d5d926d1d4db729b29638778a0f1 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Sun Apr 10 03:32:05 2022 -0400 Update contributing.md for assignments and Programs (Outreachy & GSoC) (#4725) * Update contributing.md Update contributing to add the notion of Issue assignements. * Update docs/versioned_docs/version-3.5/technical-reference/contributing.md Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu> commit 34961169b22a79699fbdf22492c2f78b678df32f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun Apr 10 08:57:22 2022 +0200 build(deps): bump actions/setup-java from 2 to 3 (#4720) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 2 to 3. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/setup-java dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0ba3b924377f051c734c99cb1d8c05b5f5d231a9 Merge: 3d6960912 a20d4f5fd Author: Sandra Fauconnier <9881645+trnstlntk@users.noreply.github.com> Date: Fri Apr 8 10:16:48 2022 +0200 Merge pull request #4714 from weblate/weblate-openrefine-translations Translations update from Hosted Weblate commit a20d4f5fd5fffaaba8a18db79e7e003e6652a642 Author: Antoine Beaubien <antoine@beaubien.qc.ca> Date: Fri Apr 8 02:07:47 2022 +0000 Translated using Weblate (French) Currently translated at 100.0% (249 of 249 strings) Translation: OpenRefine/wikidata Translate-URL: https://hosted.weblate.org/projects/openrefine/wikidata/fr/ commit 5e58df1e89bbabd1b727a3d53ae2269167c09a6c Author: S H <higa432@gmail.com> Date: Fri Apr 8 01:06:26 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (63 of 63 strings) Translation: OpenRefine/database Translate-URL: https://hosted.weblate.org/projects/openrefine/database/ja/ commit fdd0f11f57ebfc496ec5521327a2eea39cde96fb Author: Isao Matsunami <isao.matsunami@gmail.com> Date: Thu Apr 7 17:18:33 2022 +0000 Translated using Weblate (Japanese) Currently translated at 100.0% (815 of 815 strings) Translation: OpenRefine/Translations Translate-URL: https://hosted.weblate.org/projects/openrefine/translations/ja/ commit 3d6960912f418e4bbee089771b7c9aae3d2177df Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 20:15:42 2022 +0200 build(deps): bump google-http-client-jackson2 from 1.41.5 to 1.41.6 (#4712) Bumps [google-http-client-jackson2](https://github.com/googleapis/google-http-java-client) from 1.41.5 to 1.41.6. - [Release notes](https://github.com/googleapis/google-http-java-client/releases) - [Changelog](https://github.com/googleapis/google-http-java-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-http-java-client/compare/v1.41.5...v1.41.6) --- updated-dependencies: - dependency-name: com.google.http-client:google-http-client-jackson2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit cf52c501db08c464bb6424478b55ce4685ec250c Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 20:13:51 2022 +0200 build(deps): bump jacoco-maven-plugin from 0.8.7 to 0.8.8 (#4700) Bumps [jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.7 to 0.8.8. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.7...v0.8.8) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 35e54fa7ee8fc299dbf245b1e6453e9c852cabdc Author: ComgLq24 <84132969+ComgLq24@users.noreply.github.com> Date: Fri Apr 8 02:12:01 2022 +0800 fix handling oft empty ODS files (#4709) commit f0489975665c535f69d071651f47e9f15a30f717 Author: Elroy Kanye <elroykanye@gmail.com> Date: Thu Apr 7 19:04:52 2022 +0100 update link to get testng (#4688) commit a5e1f358f1ce42619361225969ab75bf5ed1cc00 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 7 17:42:11 2022 +0200 build(deps): bump maven-clean-plugin from 3.1.0 to 3.2.0 (#4698) Bumps [maven-clean-plugin](https://github.com/apache/maven-clean-plugin) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/apache/maven-clean-plugin/releases) - [Commits](https://github.com/apache/maven-clean-plugin/compare/maven-clean-plugin-3.1.0...maven-clean-plugin-3.2.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-clean-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit f31ac9e205a30a2e9902fb5d75910fcc44e4fbc7 Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Thu Apr 7 18:27:25 2022 +0300 "Reconcile > Use values as identifiers" does not reconcile #4655 #4664 (#4666) * Notification when selecting service * Notice moved to body * fixes 3172-Added a period to the notification message commit 9c5bde002e44e0fee4f7f124ad58d93eb7f57b52 Author: elebitzero <42903164+elebitzero@users.noreply.github.com> Date: Thu Apr 7 08:09:25 2022 -0700 Added encoding fix for Commands. (#4710) commit bb765b42b321f35c99b99582bb07b8330cd4954e Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Tue Apr 5 20:56:01 2022 +0300 Fixes #4081 Unreleased Resource: Streams (#4691) * Fixes #4081-Closed the stream resource * #4081-Closed the stream resource after receiving byte[] commit ac1f9eab243a5797b9c339ff93d1441a44478854 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 5 11:50:17 2022 +0200 build(deps-dev): bump eslint in /main/tests/cypress (#4649) Bumps [eslint](https://github.com/eslint/eslint) from 8.11.0 to 8.12.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.11.0...v8.12.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit ff991e57dc4bfcd40a2b7bfb1164240624118c7e Author: WaltonG <52596583+WaltonG@users.noreply.github.com> Date: Tue Apr 5 11:25:23 2022 +0300 Fixes #2316 "Match other cells with same content" keeps appearing as the default choice #2316 (#4687) * Store user preference * Removed updating of DOM on closing recon match dialog , updated global variable name * Fixes #2316-Simplified if else expression commit 78b906540d9a8e90209ad6779c46fe8dfa9bcd7f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Apr 5 10:13:48 2022 +0200 build(deps-dev): bump prettier in /main/tests/cypress (#4696) Bumps [prettier](https://github.com/prettier/prettier) from 2.6.1 to 2.6.2. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.6.1...2.6.2) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 6474416b55a1151a5b32c6a17aa3eb9f2ebd0408 Author: Binita Kumari <78761614+Binita-tech@users.noreply.github.com> Date: Tue Apr 5 13:41:59 2022 +0530 Improvement of grel docs (#4654) commit e80889c4281
Some of the menu items don't have an ellipsis but should because they open a popup, file explorer, or new window.
The following options need ellipsis:
All->Edit all columns->Transform
All->Edit all columns->Trim leading and trailing whitespace
All->Edit all columns->Collapse consecutive whitespace
All->Edit all columns->Unescape HTML entities
All->Edit all columns->Replace smart quotes with ASCII
All->Edit all columns->To titlecase
All->Edit all columns->To uppercase
All->Edit all columns->To lowercase
All->Edit all columns->To number
All->Edit all columns->To date
All->Edit all columns->To text
All->Edit all columns->To null
All->Edit all columns->To empty string
Column->Facet->Custom text facet on column
Column->Facet->Custom numeric facet on column
Column->Facet->Scatterplot facet
Column->Edit cells->Replace
Column->Edit Column->Add column by fetching URLs based on column X
Column->Edit Column->Add column based on column X
Column->Edit Column->Split column X into several columns
Column->Edit Column->Join columns
Column->Edit Column->Rename this column
Column->Transpose->Transpose cells across columns into rows...
Column->Transpose->Transpose cells in rows into columns...
Column->Transpose->Columnize by key/value columns...
Column->Reconcile->Start reconciling
Column->Reconcile->Use values as identifiers
Column->Reconcile->Add entity identifiers column
Export->Google Sheets
Export->Wikibase schema
Wikibase->Select Wikibase instance
Wikibase->Manage Wikibase account
Wikibase->Import schema
Wikibase->Upload edits to Wikibase
Proposed solution
Add ellipsis to the necessary menu items.
The text was updated successfully, but these errors were encountered: