Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Update atree inlining cadence v1.0 feature branch #3438

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
e2267bc
Import contracts as references
SupunS Jun 11, 2024
ecebf4b
Merge branch 'master' of https://github.com/onflow/cadence into supun…
SupunS Jun 11, 2024
7f390a4
Fix tests
SupunS Jun 11, 2024
93ad6bc
fix JSON output
turbolent Jun 11, 2024
a3820cd
Add more test
SupunS Jun 12, 2024
954745f
Merge pull request #3413 from onflow/bastian/fix-parse-to-json
turbolent Jun 12, 2024
34e4a43
improve parsing of commit from Go's pseudo-version
turbolent Jun 12, 2024
048b508
Merge pull request #3418 from onflow/bastian/improve-update-tool-5
turbolent Jun 12, 2024
7df56d6
Create staged-contracts-report-2024-06-12T13-03-00Z-testnet.md
zhangchiqing Jun 13, 2024
fea7fc7
add json
zhangchiqing Jun 13, 2024
a1199d6
Merge pull request #3420 from onflow/zhangchiqing-patch-1
turbolent Jun 13, 2024
6c4ff51
ensure contracts cannot be borrowed with an authorization
turbolent Jun 13, 2024
5557e42
Merge pull request #3421 from onflow/bastian/forbid-authorized-contra…
turbolent Jun 13, 2024
71e344f
Simplify nil-coalescing checking
SupunS Jun 7, 2024
93d7fc2
Merge pull request #3423 from onflow/supun/port-239-master
SupunS Jun 13, 2024
f69da85
Lazily load imported variables
SupunS Jun 14, 2024
e8d4368
handle parameterized types
turbolent Jun 14, 2024
b441192
improve InclusiveRange type
turbolent Jun 14, 2024
a5fcf93
Merge pull request #3425 from onflow/bastian/improve-dump-builtin-types
turbolent Jun 17, 2024
d2704dd
Merge pull request #3426 from onflow/bastian/improve-inclusive-range-…
turbolent Jun 17, 2024
5b25656
flowkit Cadence 1.0 support is now on main
turbolent Jun 18, 2024
db695f0
Merge pull request #3427 from onflow/bastian/update-update-tool-config
turbolent Jun 18, 2024
35ff861
Update staged-contracts-report-2024-06-12T13-03-00Z-testnet.md
vishalchangrani Jun 18, 2024
08b53de
Merge pull request #3429 from onflow/vishal/add_rest_endpoint
turbolent Jun 18, 2024
c847afb
add command to dump all hard keywords
turbolent Jun 19, 2024
f1bd4fc
remove access to field slices from composite and interface types
turbolent Jun 20, 2024
79951aa
lint
turbolent Jun 20, 2024
ea17f39
Merge pull request #3431 from onflow/bastian/dump-hard-keywords
turbolent Jun 20, 2024
96b089f
adding report for Testnet migration on June 19
j1010001 Jun 20, 2024
6b8e1de
Merge pull request #3433 from onflow/jan/add-migrations-data
turbolent Jun 20, 2024
e126e2b
Cadence 1.0 feature branches in flixkit and flow-cli got merged
turbolent Jun 20, 2024
360a7fe
fix typos
turbolent Jun 20, 2024
fedf8e4
panic for unreachable case
turbolent Jun 20, 2024
0f695d7
fix Flow CLI setup and command
turbolent Jun 20, 2024
57a46f8
Merge pull request #3435 from onflow/bastian/update-update-tool-config-2
turbolent Jun 20, 2024
3af6c8a
Merge branch 'master' into bastian/2952-remove-type-fields-access
turbolent Jun 20, 2024
a1b1e4e
Merge pull request #3417 from onflow/supun/contract-mutability
SupunS Jun 24, 2024
b69fa58
Merge pull request #3432 from onflow/bastian/2952-remove-type-fields-…
turbolent Jun 24, 2024
8b45e45
v1.0.0-preview.35
turbolent Jun 24, 2024
ad625dd
Merge tag 'v1.0.0-preview.35' into bastian/update-atree-inlining-cade…
turbolent Jun 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
cache: true

- name: Install Flow CLI
run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" -- v1.5.0
run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)"

- name: Build
run: make -j8 build
Expand All @@ -49,7 +49,7 @@ jobs:
run: make ci

- name: Cadence Testing Framework
run: cd runtime/stdlib/contracts && flow test --cover --covercode="contracts" crypto_test.cdc
run: cd runtime/stdlib/contracts && flow-c1 test --cover --covercode="contracts" crypto_test.cdc

- name: Upload coverage report
uses: codecov/codecov-action@v2
Expand Down
Loading
Loading