aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/blog
Commit message (Collapse)AuthorAge
* Automatic code cleanup.Gravatar Googler2018-05-04
| | | | PiperOrigin-RevId: 195486836
* Remove support for -extra_checks:offGravatar cushon2017-07-07
| | | | | | | | | | it has been replaced by -XepDisableAllChecks, which disables all Error Prone checks instead of disabling the plugin. Disabling the plugin entirely breaks handling of other -Xep flags. RELNOTES[INC]: -extra_checks:off is no longer supported; use -XepDisableAllChecks instead PiperOrigin-RevId: 161127522
* Remove last remainign Bazel blog post.Gravatar steren2017-06-01
| | | | | | | The blog post is stored here: https://github.com/bazelbuild/bazel-blog/blob/master/_posts/2017-05-31-google-summer-of-code-2017.md RELNOTES: None PiperOrigin-RevId: 157703951
* Restructure site/ directory into docs/ which only contains Bazel documentation.Gravatar dzc2017-06-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The new docs/ directory in the bazel source tree will only contain the Bazel docs site, which is hosted at docs.bazel.build. This change deletes the marketing site and blog, which have been migrated to the bazel-website and bazel-blog GitHub repositories respectively. This change also updates the serve-docs.sh and ci/build.sh under scripts/ in preparation for publishing the docs site. Note that to help make reviews more manageable, this change is limited to moving files to their new locations. Here are the follow-up changes: * Update all links in docs to remove versions/master in paths and to add correct bazel.build subdomain when linking to pages on the marketing site or the blog. * Set up versioned directories on GCS bucket and add tooling for versioning docs This change is also coordinated with https://bazel-review.googlesource.com/c/11568/ to have the PublishSite job publish to docs.bazel.build rather than www.bazel.build. Issue #2397 RELNOTES: None PiperOrigin-RevId: 157612651
* Blog post about Google Summer of Code.Gravatar laurentlb2017-05-31
| | | | | RELNOTES: None. PiperOrigin-RevId: 157583300
* Polish the documentation addressing #3063Gravatar hlopko2017-05-30
| | | | | RELNOTES: None. PiperOrigin-RevId: 157401168
* Update documentation to address #3063Gravatar hlopko2017-05-29
| | | | | RELNOTES: None PiperOrigin-RevId: 157393208
* Replace list of changes in 0.5 announcement by a link to GitHub release page.Gravatar steren2017-05-29
| | | | | | | | In previous annoucenment, we did not copy the full list of changes in the blog post: https://bazel.build/blog/2016/11/02/0.4.0-release.html Here they were copies because they were temporary added to the blog post draft, but should have ultimately be removed. RELNOTES: None PiperOrigin-RevId: 157378942
* Add bazel 0.5.0 release blog postGravatar hlopko2017-05-26
| | | | | RELNOTES: None. PiperOrigin-RevId: 157219345
* Blog post announcing deprecation of the JDK 7 installerGravatar dmarting2017-04-26
| | | | PiperOrigin-RevId: 154292299
* Remove the dash moduleGravatar dmarting2017-04-20
| | | | | | | | | | This module rely on an un-maintained codepath and is hardly used by anyone. We should also archive the code from dash until we can revive it with BEP RELNOTES[INC]: --use_dash, --dash_url and --dash_secret are removed. PiperOrigin-RevId: 153701824
* Put my name on the proto_library blog post.Gravatar carmi2017-04-12
| | | | | RELNOTES=None PiperOrigin-RevId: 152854488
* Blog post about the design of Skylark.Gravatar Laurent Le Brun2017-03-21
| | | | | | -- PiperOrigin-RevId: 150738983 MOS_MIGRATED_REVID=150738983
* Fix formatting error in Java sandwich blog post.Gravatar Irina Iancu2017-03-20
| | | | | | -- PiperOrigin-RevId: 150602553 MOS_MIGRATED_REVID=150602553
* Blog post about Bazel Java sandwich and Java compilation in Skylark.Gravatar Irina Iancu2017-03-10
| | | | | | | | Fixes #2570. -- PiperOrigin-RevId: 149756052 MOS_MIGRATED_REVID=149756052
* Bash completion blog post: fix the command nameGravatar Damien Martin-Guillerez2017-03-06
| | | | | | -- PiperOrigin-RevId: 149281177 MOS_MIGRATED_REVID=149281177
* Blog post announcing Google Summer of Code.Gravatar Laurent Le Brun2017-02-28
| | | | | | -- PiperOrigin-RevId: 148795506 MOS_MIGRATED_REVID=148795506
* Fix display issues in blog post about proto rules.Gravatar Carmi Grushko2017-02-28
| | | | | | -- PiperOrigin-RevId: 148788906 MOS_MIGRATED_REVID=148788906
* A blog post about proto_library et al.Gravatar Carmi Grushko2017-02-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | proto_library-dep-graph.png was generated from: digraph mygraph { node [shape=box]; "//src:zip_code.proto" [style="dashed"] "//src:address.proto" [style="dashed"] "//src:person.proto" [style="dashed"] "//src:person_java_proto" [shape="ellipse"] "//src:person_cc_proto" [shape="ellipse"] "//src:person_java_proto" "//src:person_java_proto" -> "//src:person_proto" "//src:person_cc_proto" "//src:person_cc_proto" -> "//src:person_proto" "//src:person_proto" "//src:person_proto" -> "//src:address_proto" "//src:person_proto" -> "//src:person.proto" "//src:person.proto" "//src:address_proto" "//src:address_proto" -> "//src:address.proto" "//src:address_proto" -> "//src:zip_code_proto" "//src:zip_code_proto" "//src:zip_code_proto" -> "//src:zip_code.proto" "//src:zip_code.proto" "//src:address.proto" } -- PiperOrigin-RevId: 148664921 MOS_MIGRATED_REVID=148664921
* Fix name of --javacopt in the configuration file blog postGravatar Damien Martin-Guillerez2017-02-24
| | | | | | | | -- Change-Id: I95f9c9605d04b2142a2b295618301337fc7b3b79 Reviewed-on: https://cr.bazel.build/9058 PiperOrigin-RevId: 148332784 MOS_MIGRATED_REVID=148332784
* Document skylark repositories invalidation Gravatar Damien Martin-Guillerez2017-02-23
| | | | | | | | | | | | And blog about it :) Fixes #1390. -- Change-Id: I138f1df0d18ab61bfa01c5bf3a3c483d33da1464 Reviewed-on: https://cr.bazel.build/8222 PiperOrigin-RevId: 148217151 MOS_MIGRATED_REVID=148217151
* Blog post about our new domainGravatar Damien Martin-Guillerez2016-11-04
| | | | | -- MOS_MIGRATED_REVID=138184866
* Renamed the file to Nov 2 instead of Nov 1 for accuracyGravatar Googler2016-11-03
| | | | | -- MOS_MIGRATED_REVID=138003998
* Created release notes for Nov 1 Bazel 0.4.0 releaseGravatar Googler2016-11-03
| | | | | -- MOS_MIGRATED_REVID=137981481
* Change our URL to bazel.buildGravatar Damien Martin-Guillerez2016-10-28
| | | | | -- MOS_MIGRATED_REVID=137500893
* Global cleanup change.Gravatar Damien Martin-Guillerez2016-10-28
| | | | | -- MOS_MIGRATED_REVID=137494506
* Fix the windows blogpost date.Gravatar Dmitry Lomov2016-10-25
| | | | | -- MOS_MIGRATED_REVID=137128701
* Bazel IntelliJ plugin blog post.Gravatar Googler2016-10-21
| | | | | -- MOS_MIGRATED_REVID=136666421
* Blog post on Windows status and new installation instructions.Gravatar Dmitry Lomov2016-10-07
| | | | | -- MOS_MIGRATED_REVID=135474033
* Correct links to windows-support issues listGravatar Peter Mounce2016-08-25
| | | | | | | | | | I elected to update the old blog posts too, since finding bazel via those is quite likely. Closes #1657. -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/1657 MOS_MIGRATED_REVID=131288540
* Typo fixes in markdown and javadoc as suggested by intellij typo inspection.Gravatar Googler2016-07-27
| | | | | -- MOS_MIGRATED_REVID=128476121
* Make java_classpath flag non-experimentalGravatar Liam Miller-Cushon2016-07-01
| | | | | -- MOS_MIGRATED_REVID=126310706
* Replace --aspect with --aspects.Gravatar Yue Gan2016-06-13
| | | | | | | Fixes #1375. -- MOS_MIGRATED_REVID=124706979
* Fix formatting and move images so that they actually load.Gravatar Dmitry Lomov2016-06-10
| | | | | -- MOS_MIGRATED_REVID=124571562
* Fix blog post layoutGravatar Dmitry Lomov2016-06-10
| | | | | -- MOS_MIGRATED_REVID=124556005
* Blog: 0.3.0 AnnouncementGravatar Damien Martin-Guillerez2016-06-10
| | | | | -- MOS_MIGRATED_REVID=124551962
* IDE support blog post.Gravatar Dmitry Lomov2016-06-10
| | | | | | | Fixes #31. -- MOS_MIGRATED_REVID=124545704
* Adds a blog post about C++ autoconf with Skylark remote repositoryGravatar Damien Martin-Guillerez2016-03-31
| | | | | | | | Also a bit of best practices (for issue #1081) that should be integrated into the main documentation later when everything gets more stable. -- MOS_MIGRATED_REVID=118706269
* Add blog post: Easier Debugging of Sandbox FailuresGravatar Yue Gan2016-03-21
| | | | | | | RELNOTES: -- MOS_MIGRATED_REVID=117724855
* Adds a link to the release 0.2.0 in the blog post announcing it.Gravatar Damien Martin-Guillerez2016-02-23
| | | | | -- MOS_MIGRATED_REVID=115380951
* Blog post for 0.2.0 releaseGravatar Kristina Chodorow2016-02-23
| | | | | -- MOS_MIGRATED_REVID=115328967
* Minor formatting fixes in code listings in Bazel CI blog post.Gravatar David Chen2016-01-28
| | | | | | | Removes extraneous '\' characters before shell script comments. -- MOS_MIGRATED_REVID=113239711
* Fix a couple of broken linksGravatar Liam Miller-Cushon2016-01-28
| | | | | -- MOS_MIGRATED_REVID=113236916
* Blog post: Bazel and continuous integrationGravatar Damien Martin-Guillerez2016-01-27
| | | | | -- MOS_MIGRATED_REVID=113137648
* Add titles to Bazel documentation pages.Gravatar David Chen2016-01-20
| | | | | | | Fixes #790 -- MOS_MIGRATED_REVID=112563137
* Escape RSS feed contentGravatar Kristina Chodorow2015-12-30
| | | | | | | Fixes #743. -- MOS_MIGRATED_REVID=111028988
* Add Java workers blog postGravatar Kristina Chodorow2015-12-10
| | | | | | | (Written by Philipp Wollermann.) -- MOS_MIGRATED_REVID=109919187
* Update links to dashboardGravatar Kristina Chodorow2015-11-11
| | | | | -- MOS_MIGRATED_REVID=107489711
* Replaced smart quotes with plain quotes.Gravatar Misha Brukman2015-11-11
| | | | | | | | | Also added missing blank line before code region to fix Dockerfile formatting on the web site. -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/570 MOS_MIGRATED_REVID=107470895
* Update links in Bazel docs to point to new BE pages.Gravatar David Chen2015-11-02
| | | | | | | Fixes #529 -- MOS_MIGRATED_REVID=106883457