shopify-cli 2.33.0 → 2.33.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/Gemfile.lock +1 -1
- data/RELEASING.md +20 -1
- data/lib/shopify_cli/theme/syncer/checksums.rb +6 -0
- data/lib/shopify_cli/theme/syncer.rb +2 -0
- data/lib/shopify_cli/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b36bc404542b0e83792be77e63389a35c2d28d453390b6f5de47b83e18e104ca
|
|
4
|
+
data.tar.gz: 6ceadf801362de66172f8b59d3d39c7cf608a419f08c5ede5eef2d8143092b57
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae5a1f3ba940cdd89f0edb5ee914b53d1269238fdabc7d25bc5b43754825b74cbc2134cd5835194a4438e5be27e1f861227550bff4c9156e1de6cef9574e1b1a
|
|
7
|
+
data.tar.gz: 48e9d6c4477ae2a441d56e3cb4554aded9fe8829726c2b72ab5d51224908f340ed67153905242b5d90b5166034f0cff1d38d7f29d8c8340f8222251f804c5510
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@ From version 2.6.0, the sections in this file adhere to the [keep a changelog](h
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## Version 2.33.1 - 2023-01-09
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
* [#2706](https://github.com/Shopify/shopify-cli/pull/2706): Delete checksum after file deletion
|
|
9
|
+
|
|
5
10
|
## Version 2.33.0 - 2022-12-19
|
|
6
11
|
|
|
7
12
|
### Added
|
data/Gemfile.lock
CHANGED
data/RELEASING.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
## Releasing Shopify CLI
|
|
2
2
|
|
|
3
|
+
This page contains instructions for CLI 2.0. If you are looking for instructions for CLI 3.0, please visit the [CLI 3.0 documentation](https://github.com/Shopify/cli/blob/main/docs/release.md).
|
|
4
|
+
|
|
5
|
+
### Automated process
|
|
6
|
+
|
|
7
|
+
We release the CLI with a series of Rake tasks run locally, interspersed with PR-based checkpoints. The steps are:
|
|
8
|
+
|
|
9
|
+
1. `export GITHUB_ACCESS_TOKEN=$(dev github print-auth | grep Password | awk '{print $NF}')`
|
|
10
|
+
2. `rake "release:prepare[2.x.x]"` (where 2.x.x is the version being released)
|
|
11
|
+
3. PR to shopify-cli will open in your browser. Sanity-check and merge.
|
|
12
|
+
4. Trigger [Shipit](https://shipit.shopify.io/shopify/shopify-cli/rubygems) on your version commit to release on RubyGems
|
|
13
|
+
5. `rake release:package`
|
|
14
|
+
6. Homebrew PR will open in your browser. Sanity-check and merge.
|
|
15
|
+
7. Release will also be opened in your browser, check that it includes debian and rpm files.
|
|
16
|
+
8. Go through all the [PRs labeled with includes-post-release-steps](https://github.com/Shopify/shopify-cli/issues?q=label%3Aincludes-post-release-steps+is%3Aclosed) and follow the post-release steps described in those PRs. Delete the labels afterward.
|
|
17
|
+
|
|
18
|
+
In case the automation goes wrong, try with the manual instructions.
|
|
19
|
+
|
|
20
|
+
### Manual process
|
|
21
|
+
|
|
3
22
|
1. Check the Semantic Versioning page for info on how to version the new release: http://semver.org
|
|
4
23
|
2. Make sure you're on the most recent `main`
|
|
5
24
|
```
|
|
@@ -50,4 +69,4 @@
|
|
|
50
69
|
* upload the `.deb` and `.rpm` files from `packaging/builds/X.Y.Z/` (generated in step 9)
|
|
51
70
|
* if it's a pre-release version, select the "This is a pre-release" checkbox
|
|
52
71
|
* and click "Publish release".
|
|
53
|
-
15. Go through all the PR [labeled with `includes-post-release-steps`](https://github.com/Shopify/shopify-cli/labels/includes-post-release-steps) and follow the post-release steps described in those PRs. Delete the labels afterward.
|
|
72
|
+
15. Go through all the PR [labeled with `includes-post-release-steps`](https://github.com/Shopify/shopify-cli/labels/includes-post-release-steps) and follow the post-release steps described in those PRs. Delete the labels afterward.
|
data/lib/shopify_cli/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: shopify-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.33.
|
|
4
|
+
version: 2.33.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shopify
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-01-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|