Nx
Enterprise
Nx
Overview
Sign in / Sign up
Open main menu
Nx
GitHub
Select a tab
Overview
Runs
Analytics
Nx
GitHub
Overview
Runs
Analytics
Loading workspace stats
Loading workspace insights...
Statistics interval
7 days
30 days
Latest CI Pipeline Executions
Filter range
Sort by
Sort by
Start time
Sort ascending
Sort descending
Filter
Filter exact branch match
Exact
Select status
Succeeded
master
bfaa91bb fix(nx-dev): update nextjs internal-link-checker to include astro urls (#33045) blog and marketing pages will still link to astro docs, so depend on the astro sitemap to check all links available to be used. NOTE: the specific header links (url fragments) are skipped for pages that come from astro docs (prefixed with /docs) due to not having a simple way to create these lists without parsing all the build html files out and that's not the part we really care about confirmed working https://github.com/nrwl/nx/pull/33042 and https://github.com/nrwl/nx/pull/33036 which are blocked until this change merges Fixes DOC-264
6 days ago
by mandarini
Succeeded
master
9bccff91 chore(repo): update nx to 21.5.1-beta.5 (#32631) Updating Nx from 21.5.1-beta.3 to 21.5.1-beta.5
1 month ago
by mandarini
Succeeded
master
7ec6f4e7 docs(misc): update styling for plugin registry cards (#32563) This PR updates the cards on `/docs/plugin-registry` for the new Astro docs. <img width="830" height="286" alt="image" src="https://github.com/user-attachments/assets/942e6764-3f7f-4986-85a1-3b6c603078c6" /> With the PR changes it looks like this: (dark theme) <img width="897" height="811" alt="image" src="https://github.com/user-attachments/assets/06ed3045-d0f2-4c5c-88bd-eb39b0dd7b0b" /> (light theme) <img width="803" height="811" alt="image" src="https://github.com/user-attachments/assets/7347402c-0829-450d-b85d-5b0b0b541b9c" /> **Changes:** - Use `<div>` rather than cards so we can match production styles more closely - Customize the badge colors to match existing production Fixes #DOC-172
1 month ago
by mandarini
Succeeded
master
f34b5ef7 fix(graph): project details navigating for new taskGraph and tasks with default configuration on UI (#32510) - fix some remnants on old navigation pattern for task graph in PDV - fix an issue where UI only has `target` and `project` but backend returns TaskGraph with default configuration
2 months ago
by mandarini
Succeeded
master
493d6233 chore(repo): add lourw as gradle reviewer (#32537) <!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
2 months ago
by mandarini
Succeeded
master
9401ae3d fix(nx-dev): re-enable contact form (#32493) Re-enable the hubspot script for our contact forms.
2 months ago
by mandarini
Succeeded
master
885a3d51 fix(core): use black for all fg elements when in light theme (#32415) ## Current Behavior We use dark gray for a secondary fg color, but when dimmed and in certain terminals its not easy to read for light mode ## Expected Behavior We've struggled with getting this pallet right for a while, while we continue working on it we'll just set it to all black ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
2 months ago
by mandarini
Succeeded
master
fcfb5abd chore(nx-dev): update all docs references to the gradle plugin (#32373) Changes references of the gradle plugin to "the Nx plugin for Gradle"
2 months ago
by mandarini
Succeeded
master
86858e26 docs(nx-dev): add index pages with auto-generated directory cards and proper sidebar configuration (#32348) ## Current Behavior The astro-docs structure lacks index pages for directory navigation, making it difficult for users to discover and navigate between related content sections. Additionally, some index pages were missing the proper sidebar configuration to hide them from the navigation. ## Expected Behavior With these changes, all directories in astro-docs now have proper index.mdoc files that: - Display auto-generated cards for subdirectory navigation using the `{% indexpagecards %}` component - Are hidden from the sidebar navigation with `sidebar: hidden: true` - Provide clear entry points for discovering related content The changes include: - Added index.mdoc files for all technology, concept, guide, and reference directories - Implemented proper case handling for directory names (e.g., "Guides" ā "guides") - Enhanced the IndexPageCards component to work with .mdoc files - Ensured consistent sidebar configuration across all index pages š¤ Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude <noreply@anthropic.com>
2 months ago
by mandarini
Succeeded
master
014e775b chore(docs): bump graph version to fix nx-dev graph (#32273) Bump `@nx/graph` version with the fix for `nx-dev`. This only happens for pages with multiple project graphs because the internal `ProjectGraphClient` assumes a singleton.
2 months ago
by mandarini
Succeeded
master
166a0501 docs(repo): add plugin registry to new docs site (#32183) add basic registry page at /plugin-registry Note: most of this work was aimed at getting the content to the page, we can come back to making the plugin registry page prettier and have more functionality in future PRs  resolves: DOC-71
2 months ago
by mandarini
Succeeded
master
b88664fb feat(misc): update repo to 21.4.0-beta.4 (#32180) ### Changes Update repo to use `21.4.0-beta.4`
3 months ago
by mandarini
Succeeded
master
b9bfeeb1 fix(release): use top-level releaseTagPattern as the default for release groups (#32154) ## Current Behavior When using `nx release` with Docker projects, the `release.releaseTagPattern` defined at the root level is not inherited by release groups. Users must explicitly specify the `releaseTagPattern` at both the root level AND within `release.groups.<group>.releaseTagPattern` for it to work correctly when using 'independent' releases. Example configuration that doesn't work as expected: ```json { "release": { "releaseTagPattern": "release/{projectName}/{version}", "groups": { "apps": { "projectsRelationship": "independent", // releaseTagPattern is not inherited here } } } } ``` ## Expected Behavior The `release.releaseTagPattern` should be automatically inherited by group configurations, following the same inheritance pattern as other release configuration properties. Users should only need to specify the pattern once at the root level unless they want to override it for specific groups. With this fix, the above configuration will work correctly, and the docker releases will use the `release/{projectName}/{version}` pattern for git tags. ## Related Issue(s) Fixes #
3 months ago
by mandarini
Succeeded
master
64897b7e feat(docker): add docker plugin (#31634) ## Current Behavior We do not currently have a plugin for docker to infer targets such as - build - run ## Expected Behavior The Docker Plugin should remain agnostic between tech stacks, but should allow for the containerization of projects. It should support initially the ability to build and run images by inferring targets on projects that contain a Dockerfile. `nx release` should be expanded to support releasing Docker images to registries
3 months ago
by mandarini
Succeeded
master
b7c1c0ed docs(misc): remove unused tutorialkit code (#32053) This PR removes the tutorialkit code since it was never made public, and we had issues with it. We'll reassess the tutorials at a later date. Removing the code solves some of the "critical" alerts from the repo. e.g. https://github.com/nrwl/nx/security/dependabot/863 --- Also, some of the unused components from our landing pages are removed. They have references to `/tutorials/gradle` that we had planned but never did, and they were just copy and pasted by AI. - Delete nx-dev/ui-gradle/src/resource.tsx (https://nx-dev-git-docs-remove-tutorialkit-nrwl.vercel.app/java) - Delete nx-dev/ui-react/src/resource.tsx (https://nx-dev-git-docs-remove-tutorialkit-nrwl.vercel.app/react) - Delete nx-dev/ui-react/src/webinar.tsx (https://nx-dev-git-docs-remove-tutorialkit-nrwl.vercel.app/react)
3 months ago
by mandarini
Succeeded
master
21c528e7 fix(jest): revert back to Jest 30 after synckit compatibility fix (#31984) ## Current Behavior Jest is currently pinned to version 29 due to compatibility issues with synckit@0.11.10 that caused TypeErrors in Jest tests. ## Expected Behavior With the synckit compatibility issue resolved in v0.11.11, Jest can be safely upgraded back to version 30, providing users with the latest Jest features and improvements. ## Related Issue(s) The underlying synckit compatibility issue has been fixed: https://github.com/un-ts/synckit/issues/252 This reverts the temporary downgrade that was applied in #31981. Fixes the Jest version regression by restoring Jest 30 support.
3 months ago
by mandarini
Previous page
Previous
Next
Next page