Skip to content
New issue

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

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

Already on GitHub? # to your account

Merge graphs package #100

Merged
merged 90 commits into from
May 23, 2023
Merged

Merge graphs package #100

merged 90 commits into from
May 23, 2023

Conversation

dcharkes
Copy link
Contributor

@dcharkes dcharkes commented May 23, 2023

Do NOT squash merge!

Reasons for merging into dart-lang/tools mono_repo:

Steps taken:

  1. Get git-filter-repo:
    newren $ git clone git@github.com:newren/git-filter-repo.git
  2. Add git-filter-repo to PATH.
  3. Fresh clone of repo that needs to be merged into a mono repo:
    dart-lang $ git clone git@github.com:dart-lang/graphs.git
  4. Destructively rewrite the history of the repository to be in pkgs/package_name:
    graphs $ git filter-repo --path-rename :pkgs/graphs/
  5. Destructively prefix all the tags:
    graphs $ git filter-repo --tag-rename :graphs-
  6. Replace paths and links in files.
    1. Badges: https://github.com/dart-lang/graphs/actions/workflows/ci.yml -> https://github.com/dart-lang/tools/actions/workflows/graphs.yml
    2. Remaining links, manually check if this does the right thing, otherwise insert steps above this step. https://github.com/dart-lang/graphs -> https://github.com/dart-lang/tools/tree/main/pkgs/graphs
  7. Migrate the GitHub workflow.
    1. Delete dependabot.yaml which is already in the target mono_repo.
    2. Rename file: pkgs/graphs/.github/workflows/ci.yml -> .github/workflows/graphs.yml
    3. Add paths to the on clauses in the GitHub workflow (example).
    4. Add defaults->run->working-directory to all jobs in the GitHub workflow (example).
  8. Commit with a detailed message.
  9. In the directory of the mono_repo, create a branch.
    tools $ git checkout -b merge-graphs-package
  10. Add a remote for the local clone of the moving package
    1. tools $ git remote add graphs_package /Users/dacoharkes/src/dart-lang/graphs/
    2. tools $ git fetch graphs_package
  11. Merge
    tools $ git merge --allow-unrelated-histories graphs_package/master -m "Merge package:graphs into shared tool repository"
  12. Copy the list of renamed tags into a comment on the PR.

Current step:

  1. Create a pull request and get it reviewed. Do not submit through the github UI, since it does not allow a fast forward merge.
    1. If there are changes required, back out and start over (it's OK to force push to the PR branch)

Steps to do:

  1. Disable squash-only in GitHub settings, and merge with a fast forward merge to the main branch, enable squash-only in GitHub settings.
  2. Push tags to github
  3. Follow up with a PR adding links to the top-level readme table.
  4. Add a commit to https://github.com/dart-lang/graphs/ with it's readme pointing to this repo
  5. Archive https://github.com/dart-lang/graphs/.

Tag names after renaming:

  • [new tag] graphs-v0.1.0 -> graphs-v0.1.0
  • [new tag] graphs-v0.1.1 -> graphs-v0.1.1
  • [new tag] graphs-v0.1.2 -> graphs-v0.1.2
  • [new tag] graphs-v0.1.2+1 -> graphs-v0.1.2+1
  • [new tag] graphs-v0.1.3 -> graphs-v0.1.3
  • [new tag] graphs-v0.1.3+1 -> graphs-v0.1.3+1
  • [new tag] graphs-v0.2.0 -> graphs-v0.2.0
  • [new tag] graphs-v1.0.0 -> graphs-v1.0.0
  • [new tag] graphs-v2.0.0 -> graphs-v2.0.0
  • [new tag] graphs-v2.1.0 -> graphs-v2.1.0
  • [new tag] graphs-v2.2.0 -> graphs-v2.2.0

natebosch and others added 30 commits December 4, 2017 11:13
While implementing crawlAsync I noticed some discrepancies:
- Use 'directed' rather than 'ordered' graph
- This is a reverse topological sort, not a topolocical sort
Implemented with no ordering guarantees since this is the simplest and
likely most performance.

Add an example crawing transitive imports since this matches our known
use case.
Workaround for dart-lang/sdk#31884 in the
dev.17.0 version of the SDK.
Also use `eagerError` and check for alrady closed streams to prune work
when there are errors.
- `dartfmt --fix` to drop optional `new`.
- Change example to use `whereType`.
- Update minimum SDK to one that has Dart 2 semantics by default.
- Test on stable.
- Update package:test dependency.
Looks like ~10% improvement with dart2js and a ~8% improvement on VM

Fixes dart-archive/graphs#25
dependabot bot and others added 9 commits January 3, 2023 11:04
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.1.0 to 3.2.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@93ea575...755da8c)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.3 to 1.4.
- [Release notes](https://github.com/dart-lang/setup-dart/releases)
- [Changelog](https://github.com/dart-lang/setup-dart/blob/main/CHANGELOG.md)
- [Commits](dart-lang/setup-dart@6a218f2...a57a6c0)

---
updated-dependencies:
- dependency-name: dart-lang/setup-dart
  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>
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.2.0 to 3.3.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@755da8c...ac59398)

---
updated-dependencies:
- dependency-name: actions/checkout
  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>
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.3.0 to 3.5.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@ac59398...8f4b7f8)

---
updated-dependencies:
- dependency-name: actions/checkout
  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>
Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.4.0 to 1.5.0.
- [Release notes](https://github.com/dart-lang/setup-dart/releases)
- [Changelog](https://github.com/dart-lang/setup-dart/blob/main/CHANGELOG.md)
- [Commits](dart-lang/setup-dart@a57a6c0...d6a63da)

---
updated-dependencies:
- dependency-name: dart-lang/setup-dart
  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>
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.0 to 3.5.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@8f4b7f8...8e5e7e5)

---
updated-dependencies:
- dependency-name: actions/checkout
  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>
This also makes topologicalSort() and stronglyConnectedComponents()
iterative rather than recursive, so transitiveClosure() is able to
operate on very large graphs.
Use `-` over `*` and avoid extra line breaks for consistency.
@dcharkes dcharkes requested review from devoncarew and natebosch May 23, 2023 08:49
@google-cla
Copy link

google-cla bot commented May 23, 2023

Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

View this failed invocation of the CLA check for more information.

For the most up to date status, view the checks section at the bottom of the pull request.

@github-actions github-actions bot added the type-infra A repository infrastructure change or enhancement label May 23, 2023
@github-actions
Copy link

github-actions bot commented May 23, 2023

Package publishing

Package Version Status Publish tag (post-merge)
package:unified_analytics 1.1.1 ready to publish unified_analytics-v1.1.1
package:cli_config 0.1.1 already published at pub.dev
package:graphs 2.3.0 already published at pub.dev

Documentation at https://github.com/dart-lang/ecosystem/wiki/Publishing-automation.

@dcharkes dcharkes force-pushed the merge-graphs-package branch from 69a48e4 to 56853d5 Compare May 23, 2023 09:29
dcharkes added 2 commits May 23, 2023 11:38
Commits have been rewritten with git-filter-repo to be inside pkgs/graphs/.
Tags have been rewritten with git-filter-repo to prefix graph-.

Migrated GitHub action workflow.

Updated `repository` config and README to use the anticipated URL.

Updated CHANGELOG to have ## headings.
@dcharkes dcharkes force-pushed the merge-graphs-package branch from 56853d5 to 4331e28 Compare May 23, 2023 09:39
Copy link
Member

@devoncarew devoncarew left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm for my part

(generally, I wonder if there's any way we can make very very sure that these package-merge PRs don't accidentally get merged in through the github UI)

@@ -0,0 +1,33 @@
Want to contribute? Great! First, read this page (including the small print at
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not necessary for this PR (can be done after its merged in), but we can delete this separate contributing file.

name: graphs
version: 2.3.0
description: Graph algorithms that operate on graphs in any representation
repository: https://github.com/dart-lang/tools/tree/main/pkgs/graphs
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Anytime we make changes to the pubspec file we really should rev the version. Generally, I'd say that we should merge this in unchanged, and then plan to come along later w/ a PR to the tools/ repo that updates this to the correct value and revs the pubspec version.

No concerns however w/o merging this in as is, we should just plan to rev the pubspec after the merge).

@dcharkes dcharkes merged commit 5629236 into main May 23, 2023
@dcharkes dcharkes deleted the merge-graphs-package branch May 23, 2023 17:42
@dcharkes
Copy link
Contributor Author

generally, I wonder if there's any way we can make very very sure that these package-merge PRs don't accidentally get merged in through the github UI

I have followed @stuartmorgan's suggestion on the doc to enable merge commits in the repo settings, then merge in the GitHub UI, and then turn that setting off again in the repo setings.

The result is two merge commits, one from the git merge of the two repos, one from GitHub itself, it doesn't do fast forward:

image

If I would have pushed to main instead, then main would now be at 4331e28.

This seems to have no effect on git blame etc.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
type-infra A repository infrastructure change or enhancement
Projects
None yet
Development

Successfully merging this pull request may close these issues.