-
Notifications
You must be signed in to change notification settings - Fork 447
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into rjb/update-decentralization-roadmap
- Loading branch information
Showing
327 changed files
with
8,805 additions
and
8,591 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Validate Docs PR comments | ||
on: | ||
issue_comment: | ||
types: [created] | ||
paths: | ||
- docs/developer-docs/ | ||
|
||
jobs: | ||
check_comment: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- uses: actions/github-script@v6 | ||
if: contains(github.event.comment.body, 'I agree that I have run the commands and code included in this PR and have confirmed their accuracy and functionality.') | ||
with: | ||
script: | | ||
const comments = require('./.github/workflows/scripts/comments.js'); | ||
await comments.create(context, github, `PR content has been validated by a reviewer.`); | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Tag Docs PRs | ||
on: | ||
pull_request: | ||
paths: | ||
- docs/developer-docs/** | ||
jobs: | ||
docs-tag: | ||
name: Tag PR with documentation | ||
if: ${{ github.event_name == 'pull_request' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Tag PR with documentation | ||
run: | | ||
gh pr edit ${{ github.event.pull_request.number }} --add-label documentation | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,3 +29,5 @@ stats.py | |
unlighthouse.config.ts | ||
# Local Netlify folder | ||
.netlify | ||
roadmap.json | ||
roadmap.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
title: Developer weekly update November 20, 2024 | ||
description: This week, we have tooling updates for PocketIC, dfx, and Motoko. | ||
tags: [Devs] | ||
image: /img/blog/dev-update-blog-nov-20.jpg | ||
--- | ||
|
||
# Developer weekly update November 20, 2024 | ||
|
||
![November 20 2024](../../static/img/blog/dev-update-blog-nov-20.jpg) | ||
|
||
Hello developers, and welcome to this week's developer weekly update! This week, we have tooling updates for PocketIC, dfx, and Motoko. Let's get started! | ||
|
||
## PocketIC 7.0.0 | ||
|
||
A new version of PocketIC has been released! This version is packed with new features, including: | ||
|
||
- Windows support for using the Rust library natively on Windows if Windows Subsystem for Linux (WSL) is installed. | ||
|
||
- New server endpoint: `/instances/<instance_id>/_/topology` | ||
|
||
- New Rust library module for using the management canister: `pocket_ic::management_canister`. | ||
|
||
- Bitcoin integration support via the management canister. | ||
|
||
[Read more on the forum](https://forum.dfinity.org/t/pocketic-version-7-0-0-bitcoin-integration-and-windows-support/37344). | ||
|
||
## `dfx v0.24.2` | ||
|
||
The latest version of `dfx` has been released this past week. This release includes new features such as: | ||
|
||
- All commands will use the `DFX_NETWORK` environment variable by default if it is set. The `--network` flag will take precedence if provided. | ||
|
||
- `dfx generate` honors the `--network` flag. | ||
|
||
- Support for the canister log allowed viewer list. | ||
|
||
[Read the full release notes](https://github.com/dfinity/sdk/releases/tag/0.24.2). | ||
|
||
## Motoko v0.13.2 | ||
|
||
The most recent version of Motoko enables an actor's self identifier to be available in the top-level block, allowing functions to refer to self from the initializer. | ||
|
||
[Read the full release notes](https://github.com/dfinity/motoko/releases/tag/0.13.2). | ||
|
||
That'll wrap up this week. Tune back in next week for more developer updates! | ||
|
||
-DFINITY |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
title: Developer weekly update November 27, 2024 | ||
description: This week we have two community projects to showcase, Toolkit and Linkpin, and a reminder about developer office hours in the ICP Discord. | ||
tags: [Devs] | ||
image: /img/blog/dev-update-blog-nov-27.jpg | ||
--- | ||
|
||
# Developer weekly update November 27, 2024 | ||
|
||
![November 27 2024](../../static/img/blog/dev-update-blog-nov-27.jpg) | ||
|
||
Hello developers, and welcome to this week's developer weekly update! This week we have two community projects to showcase, Toolkit and Linkpin, and a reminder about developer office hours in the ICP Discord. Let's get started! | ||
|
||
## Toolkit | ||
|
||
Toolkit is a dapp management platform with an initial focus on providing tooling for Service Nervous System (SNS) projects. It is designed to simplify dapp development, deployment, scaling, and collaboration. It provides tools to interact with SNS treasuries, mechanisms, and proposals. Developers can also use Toolkit to experiment with dapp governance and management. | ||
|
||
[Learn more about Toolkit](https://docs.ic-toolkit.app/docs/intro). | ||
|
||
## Linkpin | ||
|
||
Linkpin is an onchain bookmark manager, enabling you to login with Internet Identity, save a URL as a bookmark, and then reference that bookmark at a later time. Bookmarks can be managed by alphabetical order, number of clicks, or the last time you visited them. Linkpin utilizes ICP for all data storage and uses a backend written in Motoko. | ||
|
||
Linkpin is open source and fully customizable. Check out the code on [GitHub](https://github.com/tagoso/linkpin) for more information. | ||
|
||
## Developer office hours | ||
|
||
Every Wednesday, the ICP Discord server hosts two office hour sessions: 9 AM CET (8 AM UTC) and 10:30 AM PST (18:30 UTC). Each office hour is hosted in a drop-in style, enabling you to drop into the conversation as you please. | ||
|
||
Join the ICP Developer Discord: https://discord.internetcomputer.org/ | ||
|
||
That'll wrap up this week. Tune back in next week for more developer updates! | ||
|
||
-DFINITY |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.