Skip to content

Commit

Permalink
updated at 2024-03-18T09:14:35-04:00
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfitz committed Mar 18, 2024
1 parent e6d0730 commit 699e406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core
Submodule core updated 62 files
+2 −2 .github/CONTRIBUTING.md
+21 −2 README.md
+17 −7 app/client/aclui/AccessRules.ts
+1 −4 app/client/aclui/PermissionsWidget.ts
+6 −1 app/client/apiconsole.ts
+259 −0 app/client/boot.ts
+5 −0 app/client/components/Forms/Editor.ts
+8 −4 app/client/components/Forms/FormView.ts
+1 −0 app/client/components/Forms/Paragraph.ts
+15 −8 app/client/components/GristDoc.ts
+2 −2 app/client/lib/dispose.js
+16 −3 app/client/models/AppModel.ts
+6 −6 app/client/ui/ColumnFilterMenu.ts
+47 −33 app/client/ui/DateRangeOptions.ts
+8 −4 app/client/ui/GridViewMenus.ts
+1 −1 app/client/ui/GristTooltips.ts
+3 −3 app/client/ui/MakeCopyMenu.ts
+2 −1 app/client/ui/WelcomeCoachingCall.ts
+5 −3 app/client/ui/createAppPage.ts
+3 −3 app/client/ui/errorPages.ts
+21 −1 app/common/ACLPermissions.ts
+8 −2 app/common/ACLRuleCollection.ts
+22 −0 app/common/BootProbe.ts
+24 −7 app/common/gristUrls.ts
+1 −1 app/common/orgNameUtils.ts
+1 −1 app/plugin/GristTable.ts
+2 −2 app/server/lib/Authorizer.ts
+185 −0 app/server/lib/BootProbes.ts
+27 −13 app/server/lib/DocApi.ts
+2 −6 app/server/lib/DocWorker.ts
+21 −5 app/server/lib/ExternalStorage.ts
+53 −0 app/server/lib/FlexServer.ts
+2 −0 app/server/lib/GristServer.ts
+4 −12 app/server/lib/requestUtils.ts
+17 −5 app/server/lib/sendAppPage.ts
+3 −0 app/server/mergedServerMain.ts
+1 −0 buildtools/webpack.config.js
+148 −0 documentation/disposal.md
+218 −0 documentation/grist-data-format.md
+42 −0 documentation/migrations.md
+53 −0 documentation/urls.md
+1 −1 package.json
+1 −1 sandbox/grist/schema.py
+15 −0 static/boot.html
+13 −1 static/locales/de.client.json
+13 −1 static/locales/en.client.json
+13 −1 static/locales/es.client.json
+18 −16 static/locales/fr.client.json
+79 −24 static/locales/ja.client.json
+13 −1 static/locales/pt_BR.client.json
+35 −2 static/locales/ru.client.json
+13 −1 static/locales/sl.client.json
+852 −0 static/swagger-ui-dark.css
+3 −0 test/chai-as-promised.js
+13 −2 test/common/ACLPermissions.ts
+52 −0 test/nbrowser/Boot.ts
+19 −0 test/nbrowser/DuplicateDocument.ts
+31 −30 test/nbrowser/GridViewNewColumnMenu.ts
+67 −1 test/nbrowser/testUtils.ts
+0 −17 test/server/lib/DocApi.ts
+298 −274 test/server/lib/HostedStorageManager.ts
+0 −1 test/server/lib/helpers/TestServer.ts

0 comments on commit 699e406

Please sign in to comment.